Found 398 bookmarks
Newest
How To Perform SSD Health Check (6 Effective Ways)
How To Perform SSD Health Check (6 Effective Ways)
Well, an SSD health check simply means determining the solid state drive's status, transfer speed, optimization, and performance. Thus, this gives you an idea
·technewstoday.com·
How To Perform SSD Health Check (6 Effective Ways)
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