top of page
Search
How to Restart Network Manager
Restart Network Manager sudo service network-manager restart

Chris Speed
Jul 14, 20171 min read
1
0
How to Check Disk Space
Check Disk Storage df -h

Chris Speed
Jul 14, 20171 min read
8
0
How to remove a directory and all its contents
rm -rf directoryname

Chris Speed
Jun 6, 20171 min read
8
0


Allow Plex to read USB Drive
sudo nano /etc/default/plexmediaserver PLEX_MEDIA_SERVER_USER = [username] sudo mount -a sudo service plexmediaserver restart

Chris Speed
Jun 6, 20171 min read
4
0


Grub Boot from Command Line
grub> set pager=1 grub> ls grub> ls (hd0,1)/ grub> cat (hd0,1)/etc/issue grub> set root=(hd0,1) grub> linux /boot/vmlinuz-3.13.0-29-gener...
g
Jun 5, 20171 min read
11
0


Linux - Boot Repair
sudo apt-add-repository ppa:yannubuntu/boot-repair sudo apt-get update sudo apt-get install -y boot-repair boot-repair How To

Chris Speed
Jun 5, 20171 min read
10
0
read/write mount issues
guest,uid=myuser,iocharset=utf8,file_mode=0777,dir_mode=0777,noperm The previous line was need in fstab to allow a samba drive write...

Chris Speed
May 14, 20171 min read
21
0
Force Unmount drive in Linux/Kubuntu
Using umount I was able to force the drive to unmount, I passed the -l and that keep me from getting the "device is busy" error. sudo...

Chris Speed
May 14, 20171 min read
12
0
Install x11 VNC ubuntu/kubuntu
Install the required x11vnc package in ubuntu. sudo apt-get install -y x11vnc If headless server (EC2 aws Instance) install gnome...

Chris Speed
May 1, 20171 min read
24
0
bottom of page