Objective
The following article provides some useful tips on how to find all files within any specific directory or entire file-system containing any specific word or string.
Difficulty
EASY
The following article provides some useful tips on how to find all files within any specific directory or entire file-system containing any specific word or string.
EASY
Create and use puppet environments to test new configuration before updating a live production system.
Privileged access to the puppet master server and the puppet client node.
sudo
commandMost Puppet installations begin life as a master server running a single branch. The master contains all the manifests and other configuration for all the Puppet agents that are synced to it. This is a fine place to begin but there will rapidly arrive a time when an update needs pushing that has the potential to break a production server. Hoping for the best is not the best way to proceed.
Puppet provides the tools to separate entire branches of configuration. These are called environments. A Puppet environment is a way to supply an isolated group of agent nodes with their own dedicated configuration. Each environment contains an entire Puppet configuration tree and can be considered as a separate Puppet master server.
Debian Linux comes with Firefox ESR (Extended Support Release) version, which in some rare scenarios may not adequately fit your needs. The objective is to replace the Debian’s default Firefox ESR with the latest bleeding edge Firefox.
Privileged access to your Debian Linux system will be required.
EASY
Getting to know how special permissions works, how to identify and set them.
EASY
sudo
commandNormally, on a unix-like operating system, the ownership of files and directories is based on the default uid
(user-id) and gid
(group-id) of the user who created them. The same thing happens when a process is launched: it runs with the effective user-id and group-id of the user who started it, and with the corresponding privileges. This behavior can be modified by using special permissions.
Ubuntu and Debian are two of the most popular Linux distributions in history. Aside from that, they’re very closely related, making it hard for new Linux users to sort out the differences between the two. Let’s explore Debian vs Ubuntu comparisons.
Thus, is Ubuntu the same as Debian? While, many things may appear to be similar, or even the same, with these powerhouse distributions, there are some sizable differences between them.
The following guide describes simple to follow steps on how to install the latest version of the open-source automation engine Ansible.
Privileged access to you Debian Linux system will be required.
EASY
Learning how to use the partclone utility to backup a partition
EASY
sudo
commandIf you ever used Clonezilla
to create a backup of your operating system, you have already experienced the power of the partclone
. Unlike other tools like dd
, partclone knows how to interact with specific filesystems, therefore it can create much smaller backups, cloning only the used space in the partition. In this tutorial we will learn how to use partclone
from command line.
Install and configure Dunst for desktop notifications.
Dunst is only distributed as source, so it can be built on any current distribution.
A working Linux install with root privileges.
Medium
sudo
commandNo one wants to spend hours configuring and customizing their tiling window manager only for an ugly, poorly rendered notification window from GNOME to keep popping up and ruining the overall feel of their desktop.
If you’re looking for a more minimal and configurable notification daemon, look no further than Dunst. It provides a basic notification daemon that you can style and configure to match any tiling window manager setup. Plus, it’s super light weight, so there’s no need to worry about it hogging resources.
The objective is to create an offline digital and paper bitcoin wallet using Linux operating system, VirtualBox and Electrum Bitcoin wallet. The outcome of this tutorial will be a paper with written keywords which can be used to access your bitcoins. We will also create an encrypted version of virtual machine as a digital backup to be stored digitally on a secure medium which will provide a convenient access to your bitcoins if necessary.
Privileged access to your host operating system will be required to install Virtual Box virtualization software.
MEDIUM
The following guide will provide you with simple to follow steps on how to reset your administrative root password on Linux.
First, stop MySQL server:
# service mysql stop * Stopping MySQL database server mysqld [ OK ]
Start your MySQL server, but skip all grand privileges and networking:
# mkdir -p /var/run/mysqld # chown mysql:mysql /var/run/mysqld # /usr/sbin/mysqld --skip-grant-tables --skip-networking & [1] 8142
Install SimpleScreenRecorder and use it to record video of your desktop.
SimpleScreenRecorder is available on just about every distribution.
A working Linux install with root privileges.
Easy
sudo
commandRecording your Linux desktop is… well, simple. With SimpleScreenRecorder, you can easily record your whole desktop or a portion of the screen with very little overhead. To make things even better, SimpleScreenRecorder is a generic X program, so it’s not tied to one specific desktop environment or another.
Learn to organize your passwords using the “pass” password manager on linux
EASY
sudo
commandIf you have the good habit to never use the same password for more than one purpose, you have probably already felt the need for a password manager. There are many alternatives to choose from on linux, both proprietary (if you dare) and open source. If you, like me, think that simplicity it’s the way to go, you may be interested in knowing however to use the pass
utility.