Find your IP address in Linux

Good information found on https://www.linuxtrainingacademy.com/determine-public-ip-address-command-line-curl/ Let’s do the same thing with the ip command. To view IP addresses, use ip addr show. Like ifconfig, you can specify an interface. $ ip addr show 1: lo: <loopback,up,lower_up> mtu 16436 qdisc…

Wake up and Shut Down Linux Automatically

Copied/taken from: https://www.linux.com/learn/intro-to-linux/2017/11/wake-and-shut-down-linux-automatically Don't be a watt-waster. If your computers don't need to be on then shut them down. For convenience and nerd creds, you can configure your Linux computers to wake up and shut down…

The animated wallpaper app Komorebi

Copy from: http://www.omgubuntu.co.uk/2017/09/komorebi-wallpaper-app-new-features or else check the Youtube: https://www.youtube.com/watch?v=pFNdPy1lAe8 Hands up if you recall the animated wallpaper app Komorebi?   Now the app is back with a new release. Komorebi 2 claims to be “faster, smoother, and…

The FIND command

A copy/paste from Source: BinaryTides.com The Linux find command is a very useful and handy command to search for files from the command line. It can be used to find files based on various search criterias like permissions,…

Pack or unpack .tar or tar.gz

=================================================================== Als voorbeeld, om wordpress te compressen met tar en gzip > tar.gz tar -cvf wp_2.0.7_bu.tar wp gzip wp_2.0.7_bu.tar $ ls -l *.gz -rw-r--r-- 1 myhood-nl customers 1551971 2007-02-02 13:56 wp_2.0.7_bu.tar.gz -[to extract WP into…

Compress to BZIP and TAR

For example, the following commands would combine three files named file4, file5 and file6 into a single archive named file7.tar and then compress that archive into a compressed file named file7.tar.bz2: tar -cf file7.tar file4…