How to copy text from the terminal to the clipboard.

To copy text to the clipboard from the Linux command line in Xorg, we need to install a nice utility called xclip. This will allow us to copy text from the terminal to the clipboard. Install xclip. jason@jason-desktop:~$ sudo apt install xclipjason@jason-desktop:~$ sudo apt install xclip Then create the bash alias we need for this … Read more

How to pipe the output of a Windows command to the clipboard.

Pipe text to the clipboard from Windows CMD Apparently, there is an obscure feature in the Windows CMD prompt that allows users to pipe the output of a Windows CMD command on STDOUT to the Windows clipboard. The clip command allows this. For example. C:\Users\johnc>ipconfig | clipC:\Users\johnc>ipconfig | clip This will pipe the IP addressing … Read more

Amazing new KDE 4.0 themes for Linux Mint.

KDE 4.0 themes Oxygen transparent: http://linuxmint-art.org/content/show.php/oxygen-transparent?content=127752. An amazing transparent version of the Oxygen KDE 4.0 theme. Oxygen GTK: http://linuxmint-art.org/content/show.php/Oxygen+Gtk?content=136216. A port of the Oxygen KDE theme to GTK. Soft metal: http://linuxmint-art.org/content/show.php/Soft+Metal?content=120867. A soft metallic theme for KDE. Uniq 1.11: http://linuxmint-art.org/content/show.php/uniq?content=112688. Another very nice KDE 4.0 theme. More nice themes, these are for Gnome Awesome elegance … Read more

Debian Linux FAQ.

This is the FAQ containg all the answers to your Debian Linux questions. The Debian Linux FAQ contains a great amount of information pertaining to the Debian GNU/Linux distribution. https://drive.google.com/open?id=1XoEX7hJRkDbGYBHigWkd9TJE66bNILxuFvByFO9cbieufOPTcYQL0n7U_Hhr. Have a read of this and you will learn a great deal about setting up and using your new Debian system. Securing Debian HOWTO. https://www.debian.org/doc/manuals/securing-debian-howto/. … Read more

Mastering Linux PDF series.

Mastering Linux Pt1.pdf Mastering Linux Part 01. Mastering Linux Pt2.pdf Mastering Linux Part 02. Mastering Linux Pt3.pdf Mastering Linux Part 03. Mastering Linux Pt4.pdf Mastering Linux Part 04. Mastering Linux Pt5.pdf Mastering Linux Part 05. Mastering Linux Pt6.pdf Mastering Linux Part 06. Mastering Linux Pt7.pdf Mastering Linux Part 07. Mastering Linux Pt8.pdf Mastering Linux Part … Read more

Tweak your Linux Mint MATE desktop with this useful app.

The MATE tweak tool allows a Linux Mint MATE user to tweak their desktop. There are a few cool things you can do. Firstly, install this cool application. jason@jason-desktop:~$ sudo apt install mate-tweakjason@jason-desktop:~$ sudo apt install mate-tweak Now that it is installed, we can begin to tweak our desktop. Turn off desktop icons in Linux … Read more

How to list all non-free Linux packages installed on Linux Mint 18.

To list all non-free Linux packages that are installed on your Linux Mint system, use this one-liner. This prints out a list of all non-free packages that are installed on a system. jason@jason-virtual-machine ~ $ dpkg-query -W -f ‘${Section}/${Package}\n’ | grep -E ‘^(contrib|multiverse|non-free|partner|restricted)/’ | sort contrib/kernel/virtualbox-guest-dkms contrib/misc/virtualbox-guest-utils contrib/x11/virtualbox-guest-x11jason@jason-virtual-machine ~ $ dpkg-query -W -f ‘${Section}/${Package}\n’ | … Read more

Linux Mint 18 tricks and tips for setting up your new desktop.

Setting up your new Linux Mint 18 MATE desktop is a lot of fun, this post will help out new users to get the distribution set up after installation and update packages. As well as getting some awesome new wallpapers and MATE themes. After installation, updating the package repositories is very important. This allows software … Read more

Get a listing of all the urls on a website with this simple Linux command.

This command will return a huge listing of all the visitable url`s on the http://www.google.com.au website. Give this a shot on other websites and see how you go. jason@jason-desktop:~$ wget –spider –force-html -r -l2 http://www.google.com.au 2>&1 | grep ‘^–‘ | awk ‘{ print $3 }’jason@jason-desktop:~$ wget –spider –force-html -r -l2 http://www.google.com.au 2>&1 | grep ‘^–‘ … Read more

Easy way to make a webm for Firefox playback with ffmpeg.

This is how to create a nice webm using FFmpeg on Linux. Firstly, capture the section of the video you wish to be encoded as a webm. This command will strip out a section of video from 00:09:23 to 00:09:33 and save it in the same format as the existing file. jason@jason-desktop:~/Videos$ ffmpeg -i total.mkv … Read more