Category Archives: Linux

Batch-resize videos on Ubuntu Linux with ffmpeg

So, the case is as follows: I have about 15 videos files that were recorded at 4K and are very large in size. I wanted to keep everything as is, but just reduce the resolution to HD (720p). ffmpeg would … Continue reading

Posted in Linux, Uncategorized | Tagged | Leave a comment

Allow non-root users to capture network packets with Wireshark on Ubuntu

It’s very easy to do, all you need is just add your user to the wireshark group, e.g. sudo adduser hobba wireshark so this makes user hobba able to capture packets without requiring sudo privileges. Enjoy! Tested on LinuxMint 18.1 … Continue reading

Posted in Linux, linuxmint, Uncategorized | Tagged , , , | Leave a comment

How to encrypt a USB Flash Drive in Ubuntu using LUKS

We lose USB Flash drives all the time, so if you hold any sensitive or personal stuff, you’d better have it encrypted, just in case. Important Notes: This works only on Linux, won’t work on Windows or MAC Before you … Continue reading

Posted in Linux, Uncategorized | Tagged , , , | Leave a comment

Compress PDF Files Effectively in Ubuntu

Found a great script that does an amazing job with compressing PDF files whilst maintaining a good quality: Get the script from here: http://www.alfredklomp.com/programming/shrinkpdf/ Just copy the script to a text file and make it executable, then run: ./shrinkpdf infile.pdf outfile.pdf … Continue reading

Posted in Linux, Uncategorized | Tagged , | 1 Comment

How to solve Google Chrome Flickering on Ubuntu 16.04

Just do the following two steps: sudo nano /usr/share/applications/google-chrome.desktop Scroll down to the “Exec” line Add two additional parameters, so that it looks like this: Exec=/usr/bin/google-chrome-stable –disable-gpu-driver-bug-workarounds –enable-native-gpu-memory-buffers %U That’s it, now restart Chrome and it shall work perfectly! I … Continue reading

Posted in Linux, linuxmint, Ubuntu, Uncategorized | Tagged , , | Leave a comment