Delete files older than x many days Ubuntu Terminal
To delete files older than 'x' many days, you can execute the following command in the terminal: find /path/to/ -type f -mtime +7 -name '*.zip' -execdir rm -- '{}' \; The type -f indicates that you would only like to delete files.
Change timezone Ubuntu terminal
Change the timezone on your machine or docker container with the following: sudo dpkg-reconfigure tzdata If there tzdata package doesn't exist, you can install it with the following commands: sudo apt-get update sudo apt-get install tzdata
Linux - remove files and folders older than x days
When running cleanup scripts and you'd like to delete files and folders older than x days you can use the following commands: For zip files: find /path/to/your/folder/ -mtime +3 -name '*.zip' -execdir rm -- '{}' \; For all files and

How To Install IntelliJ on Ubuntu
IntelliJ, created by JetBrains, is a Java integrated development environment or IDE available in a community and commercial version. both of these versions can be used for professional coding. Assuming
How To Configure GoCD with Let's Encrypt SSL Certificates on Ubuntu 16.04
GoCD is an open source continuous delivery service that helps organizations increase productivity and deliver high quality through automation. It is a flexible tool that can help teams deliver well-tested software to production environments. In this guide, we will configure GoCD to use a
How to Install WordPress with Caddy on Ubuntu 16.04
Caddy is a modern, general-purpose, multi-platform web server which supports Virtual hosting, HTTP/2, IPv6, Markdown, WebSockets, FastCGI, automatic HTTPS via Let’s Encrypt, templates and more. In this tutorial, we will show you how to install Caddy on a Ubuntu 16.04 VPS.
Have A PC In Your Pocket. Here's How To Use It
If you're like me, you probably store all of your documents on the various cloud service that cap storage at a freemium rate. Should you ever need to access those documents for work or school and find that you're nowhere near a desk computer,
Custom Themes To Write Code Faster In Linux Text Editor
Text editors don’t allow users to tinker with text definitively. You can theme your text editor, changing the colors used for the background and special syntax. Doing so may provide the boost you need to write faster and increase how long you’re
Wine 2.10 Released, Here's How To Install It
Wine's official repository offers the latest binaries for Ubuntu 14.04, Ubuntu 16.04, Ubuntu 16.10, and Ubuntu 17.04, released with initial Android Graphics driver. Assuming you require a Debian distribution package download, begin by opening your Terminal with: Ctrl+Alt+T
The Ultimate Debian Apt-Get Command Cheat Sheet
Advanced Package Tool (apt-get) serves as the command -line tool for handling packages for Debian Linux with the intention to: Upgrade packages Keep Debian system up to date Download source .deb files Install/manage individual packages Apply security patch(es) It also has many
The Ultimate Apt-Get Package Management Cheat Sheet for Debian Linux or Ubuntu
There are a number of package management tools available to you if you’re running either Ubuntu Linux or Debian. apt-get Advanced Package Tool (apt) supports the installation of packages over the Internet using HTTP or FTP protocols, scripting and the upgrade of all
How To Patch Sudo on Ubuntu
A bug has been identified in sudo’s get_process_ttyname(). This significant vulnerability in the sudo command on SELinux enabled systems granting root access to anyone with a shell account. Basically, a local user with privileges to execute commands via sudo could potentially
Search for text in file Mac/Linux terminal
A very useful thing to be able to do is to find in which files certain text is contained. Open the terminal and run the following command: grep -r "some text to find" /path/to/searchable/folder The -r flag searches through
Enable Adobe Flash in Chrome
To enable Adobe Flash you need to do so through the Content settings. This can be done through Chrome's settings by clicking on the veritcal 3 dotted line on the top right of the browser window, and then click Settings, click on Show Advanced

WannaCry 2.0?
Boston, Massachussetts based software company Rapid7 has confirmed a vulnerability in their system on over 104 000 computers running the widely used free networking Linux software Samba. This flaw in
Should Linux Users Worry About WannaCry?
It has been a very tumultuous two weeks for the cyber-security community since the WannaCry attack plagued users across the globe. Its clever use of a Windows loophole is unparalleled


How To install Etcher on Ubuntu
Etcher is a cross-platform open software that allows you to burn images to SD cards and USB drives with ease and in a safe manner. Using Etcher you can also

How To Install JHipster on Ubuntu
JHipster is a fully open source, free to download, multi-platform, widely used application generator for SpringBoot and Angular applications. To get started, open your terminal with: Ctrl+Alt+T Then
Find folder/directory size Linux
To find the size of a directory including files and folders therein, run the following command in the terminal: du -h /path/to/your/directory/ The -h flag stands for "human" which gives you disk size in a human readable format (1K,