Found 739 bookmarks
Newest
Multi-Layer SSDs: What Are SLC, MLC, TLC, QLC, and PLC?
Multi-Layer SSDs: What Are SLC, MLC, TLC, QLC, and PLC?
Solid-state drives improve the performance of aging computers and turn newer PCs into speed machines. But, when you shop for one, you’re bombarded with terms, like SLC, SATA III, NVMe, and M.2. What does it all mean? Let’s take a look!
·howtogeek.com·
Multi-Layer SSDs: What Are SLC, MLC, TLC, QLC, and PLC?
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
A comprehensive guide to iso building | ArcoLinuxIso
A comprehensive guide to iso building | ArcoLinuxIso
Until now you have used our Calamares and our archiso folder and its building scripts. At some time you want more control. Archiso is delivered and updated by the Arch Linux team. Calamares is delivered and updated by the Calamares team.
·arcolinuxiso.com·
A comprehensive guide to iso building | ArcoLinuxIso
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?