Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

70 total results found

Computers

Docker

Linux

Updating container using docker-compose

Linux Docker

docker compose pull docker compose up -d --remove-orphans docker image prune To list all containers: docker ps -a

Linux

Hobbies

Blender

Graphics

Setting up Apache Guacamole using Docker

Linux 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

Graphics

Resyncing ISO location on XCP-NG server

Linux

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

Graphics

Managing Disks and Space

Linux

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

Linux

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

Linux

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.