today's howtos
-
How To Install Backports on Debian 11 - idroot
In this tutorial, we will show you how to install Backports on Debian 11. For those of you who didn’t know, Backports have recompiled packages from testing (mostly) and unstable (in a few cases only, e.g. security updates), so they will run without new libraries (wherever it is possible) on a stable Debian distribution. Backports are pinned to priority 100 using apt-pinning, ie they are only installed when explicitly requested. Otherwise, the package from stable takes precedence. A package that has been installed from the backports is updated from the backports.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of the Backports on a Debian 11 (Bullseye).
-
How To Securely Transfer Files With SCP In Linux - OSTechNix
File transfer over a network can be done in various ways and using different protocols. The most commonly used protocols for copying files remotely are Rsync, SCP and SFTP. In this guide, we will look at what is SCP and how to securely transfer files between local and remote computers with SCP in Linux and Unix-like operating systems.
-
How to List Files Recursively in Linux command line
The ls command is the default for viewing the contents of a directory. This is despite the existence of the dedicated dir command.
The ls command list the contents of the present directory, but it doesn't show the contents of the subdirectories by default. You can make it though.
-
Junichi Uekawa: user namespace not enabled when running podman.
user namespace not enabled when running podman. Completely forgot about this but seems like I need to enable user namespace for podman. sudo sysctl -w kernel.unprivileged_userns_clone=1. Not quite sure when this started being required.
-
How To Install OnlyOffice on Ubuntu 22.04 LTS - idroot
In this tutorial, we will show you how to install OnlyOffice on Ubuntu 22.04 LTS. For those of you who didn’t know, OnlyOffice is a free software office suite developed by Ascensio System SIA. It is available for Windows, Linux, macOS, Android, and iOS. Like other office suites such as Microsoft Office and LibreOffice, OnlyOffice comes with documents, spreadsheets, presentation editors, mobile web viewers, and other functionalities.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of the OnlyOffice suite on Ubuntu 22.04 (Jammy Jellyfish). You can follow the same instructions for Ubuntu 22.04 and any other Debian-based distribution like Linux Mint, Elementary OS, Pop!_OS, and more as well.
-
How to Compare Three Files in Linux Using diff3 Tool
In one of our earlier tutorials, we discussed a Linux command line utility - dubbed diff - that allows you to compare two files line by line. But what if the requirement is to compare not two, but three files? Yes, there exists a Linux command line utility for this as well, and it's appropriately called diff3.
-
How to Compare and Merge Text Files on Linux
Comparing text files requires time, effort, a large monitor and a good amount of patience, or simply just the right tools to do it without any of the aforementioned. If you are an editor that has to deal with multiple versions of a text file, or a developer that wants to check the various code revisions of a file, then the following tutorial is for you.
-
How to Compare and Merge Text Files on Linux using Desktop Tools (part 2)
This post is a response to the overwhelming comments about Meld (and other tools) on my previous article on text files comparison and merging tools. While my intention wasn't to focus on code text only but to also present something useful to word editors and writers as well, but the coders community objected for the “shallowness” of the previous post so here we go with part 2.
-
How to Display Login Screen in External Monitor in Ubuntu 22.04 | 22.10 | UbuntuHandbook
Have multiple monitors connected into your Ubuntu machine? Here’s the quick tip shows you how to configure which one to display the login screen.
It’s quite easy to set primary display in Ubuntu with default GNOME desktop. However, the login screen is always sticking to the built-in display in my laptop. In case you use the external monitor for the most time, you may also set it as primary display for the GDM login screen by following this tutorial.
NOTE: This tutorial is tested only in Ubuntu with default GNOME desktop! Though, it may also work in other Linux with GNOME (e.g., Fedora, Debian and Arch) or Linux with GDM display manager.
-
How to Install Synaptic Package Manager in Linux - Make Tech Easier
Synaptic Package Manager was once the default package manager for nearly all Debian-based Linux distributions. To date, it remains one of the most versatile package managers. Although it remains dated, many users still prefer it because of its simplicity.
In this tutorial, we show you how to install and use Synaptic Package Manager on Linux.
-
How to Use FSearch to Quickly Find Files and Folders on Linux
Searching for a specific file or folder on Linux can be overwhelming, especially if you've got a lot of data. Here's where FSearch comes into play.
-
How to do line-by-line comparison of files in Linux using diff command
In Linux, the diff command can be used to compare two files, but the thing is that there's a slight learning curve involved with this utility. If you don't know how diff works, and are looking for quick tutorial to get started, look no further, as in this article, we will discuss the basics of this command along with some easy to understand examples.
-
How to search files from the Terminal on Linux
While there are many ways with which we can search and locate files and directories on Linux, the easiest and quickest is probably through the terminal. However, not many Linux users know about that, which leads to unneeded frustration. Here is a quick guide that will hopefully help you locate what you're looking for in your system.
-
2 ways for Installing FFmpeg on Ubuntu 22.04 LTS - Linux Shout
Learn how to install FFmpeg in Ubuntu 22.04 Jammy JellyFish using the command terminal for playing or converting various media files.
With the command line tool FFmpeg, which is an open-source program, converting from one multimedia format to another is just a piece of cake. FFmpeg contains the libavcodec library, which contains numerous formats and codecs to help with encoding and decoding. It supports FFmpeg Video h.264 (MPEG-4 AVC), h.265 (HEVC), Xvid, VP8, VP9, AVI, MPEG-1, MPEG-2, and WMV. Its Audio supports AAC, MP3, Vorbis, WMA, and other codecs. libavcodec is also used by media suites and players such as VLC media player, Kodi, and MPlayer.
This command line tool not only brings the video codecs to the computer, but also offers conversion commands including as parameters the input file, output file, frame rate, and bit rate. With it, you can record videos directly from the TV card. FFmpeg also comes with helpful tools – the FFprobe included in the FFmpeg package analyzes multimedia streams and libavformat can be used to analyze and create container files for video and audio.
-
Linux Command Line Navigation Tips: The Basics of pushd and popd Command
In this article, we will be discussing how you can have a faster navigation experience on the Linux command line using the pushd and popd commands.
-
Linux sdiff Command Tutorial for Beginners (8 Examples)
Here at HowtoForge, we have already discussed multiple command line utilities that are focused on finding file differences. But there are several more such tools, and in this tutorial, we will discuss on such command dubbed sdiff using some easy to understand examples.