top of page
Search
How to Create Symbolic Link in Linux
ln -sf /mnt/my_drive/movies ~/my_movies ln -sf my_file.txt my_link.txt unlink symlink_to_remove rm symlink_to_remove Note: To...

Chris Speed
Nov 23, 20201 min read
Piwigo Install & Setup Linux Server
Note: Sync Issues - add the following code to .php files ini_set('memory_limit','1000M'); ini_set('max_execution_time', 10000); Steps for...

Chris Speed
Nov 23, 20201 min read
Surf Shark - Commands
1. Startup: sudo surfshark-vpn 2. Status: sudo surfshark-vpn status 3. Disconnect: sudo surfshark-vpn down 4. Quick-connect: sudo...

Chris Speed
May 25, 20201 min read
How to Add an Existing User Account to a Group in Linux
usermod -a -G examplegroup exampleusername usermod -a -G sudo plex

Chris Speed
Apr 28, 20201 min read
SFTP server with VSFTPD
$ sudo apt install ssh $ sudo nano /etc/ssh/sshd_config and append the following to the end of the file: Match group sftp ...

Chris Speed
Apr 28, 20201 min read
vsftpd - Kubuntu ftp client
------------- On SystemD ------------- # systemctl start vsftpd # systemctl stop vsftpd # systemctl enable vsftpd...

Chris Speed
Apr 24, 20201 min read
How To Find The Process ID Of A Program And Kill It
ps aux | grep -i x11vnc sudo kill -9 process_id Reference: It's FOSS. "How To Find The Process ID Of A Program And Kill It.",...

Chris Speed
Apr 24, 20201 min read
Virtual Box: Install & How to Commands
Update the package lists for upgrades and new package installations: sudo apt update Install necessary dependencies: sudo apt install -y...

Chris Speed
Sep 8, 20191 min read
Virtual Box: Error: Cannot register the hard disk already exists
This fixes the error when a vm won't start and the following message is seen - "Cannot register the hard disk already exists". VBoxManage...

Chris Speed
Aug 9, 20191 min read
bottom of page
