cyberciti.biz

VN:F [1.9.22_1171]
Rating: 6.0/10 (2 votes cast)

online community of new and seasoned Linux / Unix sysadmins.

How to install BTRFS on a Debian Linux 12/11

14 February 2024 @ 6:10 am

See all Debian/Ubuntu Linux related FAQ Btrfs, which stands for "Butter FS" or "B-tree FS," is a modern Linux file system. It was developed to overcome the limitations of older file systems like ext4 or ext3. Btrfs is an excellent choice for efficient storage management on multiple Hard Disk Drivers. It supports Linux file systems with snapshots, subvolumes, and built-in RAID-like capabilities that provide robust data protection. It is designed to handle huge file systems and file sizes. Btrfs incorporates checksumming and COW (Copy-on-write), making it more resilient to data corruption. The COW feature means changes are written to new loc

How to install GPG (gnupg2) on a Debian Linux to fix gpg command not found error

13 February 2024 @ 9:38 am

See all Debian/Ubuntu Linux related FAQ GnuPG2 (or GPG2) is an open-source and free tool that implements the OpenPGP standard. Its primary purpose is to encrypt your sensitive information to protect it from unauthorized access. It also allows you to create digital signatures, guaranteeing that the data hasn't been tampered with while in transit. Many newly created Debian 11/12 cloud VMs and images may not have the gpg/gpg2 command installed. Thus, you will get an error that reads "-bash: gpg: command not found." Here is how to fix this error and install gnupg2 on a Debian Linux 11 or 12. Further, you will learn how to use

How to enable contrib repo on Debian Linux 10/11/12

24 December 2023 @ 9:18 am

See all Debian/Ubuntu Linux related FAQ Sometimes, when you try to install specific Debian Linux packages, you might encounter an error message that reads: Unable to locate package pkg-name-here In many cases, the required package might already be present in the remote download repos. It would be best to have an additional repository, such as contrib, which adds extra packages to the core Debian Linux system. To enable and use the contrib repository in Debian Linux version 10/11/12 or newer versions, follow the instructions below. Love this? sudo share_on:

SSH WARNING: UNPROTECTED PRIVATE KEY FILE! Error and Solution

17 November 2023 @ 10:31 am

{Updated} Are you getting, ' WARNING: UNPROTECTED PRIVATE KEY FILE!' when try to use the ssh command under Linux, macOS or BSD? Let us see how I fixed this problem and log in using the ssh command.The post SSH WARNING: UNPROTECTED PRIVATE KEY FILE! Error and Solution appeared first on nixCraft.

How to open DHCP port using UFW in Linux

25 October 2023 @ 10:52 am

See all Ubuntu Linux related FAQ The Uncomplicated Firewall (UFW) needs to be configured to allow traffic on UDP ports 67 and 68, regardless of whether the Dynamic Host Configuration Protocol (DHCP) server is local or remote. Additionally, it may be necessary to open both TCP and UDP port 53, which are used for Domain Name Service (DNS). In small business and home environments, typically, both DNS and DHCP services come from a single device. Hence, it would be best if you opened both DHCP and DNS ports using the ufw comman

How to merge all PDF files into one PDF in Linux

24 October 2023 @ 8:31 pm

See all GNU/Linux related FAQ I recently had to submit multiple PDF files for government work, but the web form only allowed for the uploading of a single file. This meant that I had to merge the PDF files into one on Linux. To do this, I used a command-line tool called pdfunite, which is a Portable Document Format (PDF) page merger. Let us see how to install and use the pdfunite in Linux. Love this? sudo share_on: Twitter -

How to list package files with dnf in Linux (RHEL, CentOS, Rocky, Fedora, and Alma Linux)

23 October 2023 @ 11:03 am

If you’re using RHEL, CentOS, Rocky, Fedora, or Alma Linux, you may encounter situations where you must list files in a package before installing it. Similarly, there might be instances where you need to locate a specific configuration file after installing the package. In this guide, I’ll provide a quick tip for developers and sysadmins […] Love this? sudo share_on: Twitter - Facebook -

How to install Perl in Fedora Linux

22 October 2023 @ 4:25 pm

See all Fedora Linux related FAQ I am migrating an old Perl project from an unsupported OS to Fedora Linux 38. However, I discovered that Perl is not installed by default, while Python 3 is. This seems ridiculous. Anyway, here is how to install Perl in Fedora Linux including latest version of mod_perl with Apache (HTTPD) and get on with your life. Love this? sudo share_on: Twitter -

How to fix “Error: Can’t open display: (null)” with ssh and xclip command in headless mode

8 October 2023 @ 8:01 pm

See all GNU/Linux related FAQ When you try to use the xclip command over the ssh-based session to copy and paste data, you will get the following message on screen: Error: Can't open display: (null) Here is how to fix this error by editing the ssh client and OpenSSH (SSHD server) configuration file. Love this? sudo share_on: Twitter -

How to block AI Crawler Bots using robots.txt file

29 September 2023 @ 8:40 pm

Are you a content creator or a blog author who generates unique, high-quality content for a living? Have you noticed that generative AI platforms like OpenAI or CCBot use your content to train their algorithms without your consent? Don't worry! You can block these AI crawlers from accessing your website or blog by using the robots.txt file. Love this? sudo share_on: Twitter - Facebook -