Linux articles

172 bookmarks
Newest
How to Move Your Linux home Directory to Another Drive
How to Move Your Linux home Directory to Another Drive
Want to move your Linux home folder to another drive? Here’s a straightforward and step by step way to do it that should work on any distribution. Moving your home folder means you can reinstall Linux and not have to worry about your personal files.
·howtogeek.com·
How to Move Your Linux home Directory to Another Drive
How to Create Bootable USB Drive Using dd Command
How to Create Bootable USB Drive Using dd Command
Need to write an ISO file to a bootable USB drive? The command line ‘dd’ tool can do that with minimal effort. ```sh # list devices lsblk # umount and format sudo umount /dev/sda1 sudo mkfs.vfat -F 32 /dev/sda sudo mkfs.exfat /dev/sda # create booteable usb sudo dd bs=4M if=/home/user/downloads/path.iso of=/dev/sda status=progress ```
·linuxiac.com·
How to Create Bootable USB Drive Using dd Command
How to Create Bootable Linux USB Drive - Linuxsize
How to Create Bootable Linux USB Drive - Linuxsize
This tutorial will take you through the steps necessary to create a bootable Linux USB stick on Windows, macOS and Linux machines.
·linuxize.com·
How to Create Bootable Linux USB Drive - Linuxsize
How to Setup Cron Jobs in Linux
How to Setup Cron Jobs in Linux
Automating and scheduling repeated tasks on desktops and servers improves productivity and cuts down manual intervention and monitoring. Numerous such tools are available for Linux and one of the most widely used among them is “cron”. This article will explain scheduling tasks and running scripts at regular intervals using cron jobs.
·linuxhint.com·
How to Setup Cron Jobs in Linux
How to Schedule a Task in Linux?
How to Schedule a Task in Linux?
Whenever using a UNIX-based operating system, certain tasks are to be performed repeatedly. UNIX comes with its built-in task schedulers. In the case of Linux, it comes with two basic but powerful tools: Cron daemon (default task scheduler) and at (more suitable for one-time task scheduling). How to Schedule a Task in Linux are explained in this article.
·linuxhint.com·
How to Schedule a Task in Linux?
How to Format USB Drives in Linux {3 Methods Explained}
How to Format USB Drives in Linux {3 Methods Explained}
Want to learn how to format a USB drive in Linux? This tutorial will show you three simple and quick methods for formatting a USB drive.
·phoenixnap.com·
How to Format USB Drives in Linux {3 Methods Explained}
How to Exclude Files and Directories with Rsync
How to Exclude Files and Directories with Rsync
With Rsync you can mirror data, create incremental backups and copy files between systems. When copying data, you may want to exclude one or more files or directories based on their name or location. In this tutorial, we will show you how to exclude files and directories with rsync.
·linuxize.com·
How to Exclude Files and Directories with Rsync
Schedule backup in Linux (rsync + cron) | Average Linux User
Schedule backup in Linux (rsync + cron) | Average Linux User
Configure automatic backup in Linux now and you will thank yourself in the future. I will show how to schedule rsync with cron to run daily, weekly, and monthly.
·averagelinuxuser.com·
Schedule backup in Linux (rsync + cron) | Average Linux User
How to Repair and Defragment Linux System Partitions and Directories
How to Repair and Defragment Linux System Partitions and Directories
People who use Linux often think that it doesn’t require defragmentation. This is a common misunderstanding across Linux users. Actually, the Linux operating system does support defragmentation.
·tecmint.com·
How to Repair and Defragment Linux System Partitions and Directories
Unix Vs Linux: What is Difference Between UNIX and Linux
Unix Vs Linux: What is Difference Between UNIX and Linux
Learn Unix Vs Linux difference. Linux is nothing but a UNIX clone written by Linus Torvalds from scratch with the help of some hackers across the globe.
·softwaretestinghelp.com·
Unix Vs Linux: What is Difference Between UNIX and Linux
Understanding Linux configuration files
Understanding Linux configuration files
This article explains configuration files on a Linux system that control user permissions, system applications, daemons, services, and other administrative tasks in a multi-user, multi-tasking environment. These tasks include managing user accounts, allocating disk quotas, managing e-mails and newsgroups, and configuring kernel parameters. This article also classifies the config files present on a Red Hat Linux system based on their usage and the services they affect.
·developer.ibm.com·
Understanding Linux configuration files
The Missing Linux Commands Cheatsheet for Noob DevOps
The Missing Linux Commands Cheatsheet for Noob DevOps
Before we start I want to mention that this is not a tutorial. Treat the article as a reference. Ok, you just ssh into a remote pc or VPS. Now what? Where do you even start 🤔? In fact, where are you? Here comes to rescue this following command... $...
·blog.ahayder.me·
The Missing Linux Commands Cheatsheet for Noob DevOps
docker daemon error - Linux HandBook
docker daemon error - Linux HandBook
This detailed troubleshooting article helps you fix the permission denied error with Docker on Ubuntu and other Ubuntu-based Linux distributions.
·linuxhandbook.com·
docker daemon error - Linux HandBook