get comprehensive information about a hard disk with the Linux command line.

Getting a lot of useful information about a hard disk drive is easy with Linux. The smartmontools package contains utilities to retrieve a lot of very useful info. Firstly, install this package. jason@Yog-Sothoth:~$ sudo apt install smartmontoolsjason@Yog-Sothoth:~$ sudo apt install smartmontools Then run the command with sudo to get info about a drive. jason@Yog-Sothoth:~$ sudo … Read more

How to get comprehensive information on HDD errors on Debian.

The smartmontools package for Debian allows the user to get comprehensive hard disk information. This is useful if the hard disk drive is behaving strangely. This might mean it is failing. Install the smartmontools package. root@neo:/home/jason# apt install smartmontoolsroot@neo:/home/jason# apt install smartmontools Now you may check your hard disk drive for any errors. root@neo:/home/jason# smartctl … Read more

How to format a new Linux partition with the command line.

This is how to format a hard disk partition that will hold data for your Linux system. The partition must be unmounted before formatting, but this is the ideal way to create a file-system on a new partition that has been created with fdisk. root@jason-desktop:~# mkfs.ext4 mkfs.ext4 mkfs.ext4dev root@jason-desktop:~# mkfs.ext4 /dev/sdd3 mke2fs 1.42.13 (17-May-2015) /dev/sdd3 … Read more

How to boot an Ubuntu ISO without a thumb drive or a CD. Read more to find out.

I was wanting to try out an older version of Ubuntu on my netbook; but I did not want to write the ISO image to a thumb drive to boot it; therefore I copied the ISO image to a subfolder of my /boot folder; /boot/iso and then I added this section to my /etc/grub.d/40_custom file … Read more