today's howtos
-
How to Install Bitwarden Password Manager on Ubuntu 22.04
Bitwarden is a free and open-source password manager that allows you to store all of your logins and passwords and sync them between all of your devices. It is cross-platform and available for Linux and all other major operating systems, like Windows and macOS. It has a lot of useful features, including strong encryption, two-factor authentication (2FA), password security auditing, password breach monitoring, and cloud or local hosting options.
In this post, we will show you how to install Bitwarden Password Manager software on Ubuntu 22.04.
-
Drop man pages for this Linux command | Enable Sysadmin
Every sysadmin has a magical combination of command-line flags and arguments in their toolbox to accomplish a specific task. However, these esoteric command-line combinations are often very difficult to remember. Frequently, this results in a notes.txt file lying somewhere on a workstation, collecting dust, that's never quite available when you need it.
-
Rename all images inside folder with sequential numbers bash scripts, Bash Scripts
he following bash script renames all .jpg images inside a folder with sequential numbers, for example 1.jpg, 2.jpg, 3.jpg......
If you are using a different image format such as .jpeg, .png, .gif just change the code at the start of the for loop, for example for i in *.png if your folder contains .png images.
-
Video Playback on FreeBSD – Quick Guide | FreeBSD Foundation
In this guide, we’ll use the xine video player to set up basic video playback on a fresh FreeBSD install. The xine multimedia player relies on the XWindow system and the XVideo extension to provide a graphical video playback interface.
-
New FreeBSD Quick Guide: Video Playback on FreeBSD | FreeBSD Foundation
Setting up basic video playback on FreeBSD is quick and simple! In this guide, we’ll download and set up the xine video player on a fresh FreeBSD install. The xine multimedia player relies on the XWindow system and the XVideo extension to provide a graphical video playback interface.
-
Running Kubernetes in systemd with Podman, displaying friendlier Linux man pages, and more sysadmin tips | Enable Sysadmin
Today, we are looking back at our top 10 articles of August to give you a chance to catch up on any of the great content you might have missed. In this list, you will see various topics covered, and we are confident that some, if not all, will be of interest to you.
-
Mapping URL to Different Path In Nginx - TecAdmin
Sometimes we need to map a sub URL to a different directory path in the file system. The Nginx users can achieve this by using the “location” block in the configuration file. The location specifies a regular expression for the URL the browser requests. Under the location code block, we can specify the file system path with the ‘root’ or ‘alias’ option.