One of the ways to transfer Hive OS to SDD/HDD is to copy it from the flash-drive.
To do this, follow these steps:
fdisk -l
and check the results.
For example:
Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x244b7fbe
Device Boot Start End Sectors Size Id Type
/dev/sda1 2048 43007 40960 20M e W95 FAT16 (LBA)
/dev/sda2 43008 188786687 188743680 90G 83 Linux
/dev/sda3 188786688 234441647 45654960 21.8G 82 Linux swap / Solaris
Disk /dev/sdb: 14.4 GiB, 15489564672 bytes, 30253056 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x244b7fbe
Device Boot Start End Sectors Size Id Type
/dev/sdb1 2048 43007 40960 20M e W95 FAT16 (LBA)
/dev/sdb2 * 43008 14690303 14647296 7G 83 Linux
Disk /dev/sda: 111.8 GiB - judging by the size, it's SSD/HDD, and Disk /dev/sdb: 14.4 GiB is a flash-drive. Actually, in most cases /dev/sda is SSD/HDD, and /dev/sdb is a flash-drive.
dd if=/dev/sdb of=/dev/sda bs=10M count=800 status=progress
shutdown -r now
Don't forget to remove the flash-drive when rebooting, or simply change the boot device in BIOS.
Quick Nav