Advanced Search
Search Results
70 total results found
Computers
Docker
Updating container using docker-compose
docker compose pull docker compose up -d --remove-orphans docker image prune To list all containers: docker ps -a
Linux
Hobbies
Blender
Setting up Apache Guacamole using Docker
The IP of my docker server is 192.168.10.11 Step 1: sudo docker run --name my-guacd -d guacamole/guacd Step 2: sudo docker run --name guacamole-mysql -e MYSQL_ROOT_PASSWORD=sqlpassword -d --restart unless-stopped mysql:latest Step 3: sudo docker exec -it gu...
Graphics
Food
Gimp
Resyncing ISO location on XCP-NG server
List sources: xe sr-list type=iso Resync/scan for ISOs: xe sr-scan uuid=29c2e9f4-6157-17b4-d176-3a87337ae08b List DVDs: xe cd-list
Makerspace
Inkscape
Managing Disks and Space
Disk Info df -h : displays the information of device name, total blocks, total disk space, used disk space, available disk space and mount points on a file system (-h displays output in readable format). sudo du -mxsh * | sort -n : The du command summarises ...
Professional Development
How to batch-resize images using ImageMagick
open terminal and cd into the directory containing your photos and execute below command mkdir photos-Optimized;for photos in *.JPG;do convert -verbose "$photos" -quality 85% -resize 1600x900 ./photos-Optimi Voila! Now you have successfully batch resized/com...
Other
How to find a file containing a particular text string
Search all subfirectories recursively grep -r "redeem reward" /home/tom/ To display only fines names, add -H option, or $ grep -H -R vivek /etc/* | cut -d: -f1 To ignore case, add -i option.