I'm not new to *nix systems, rather I'm tired of Ubuntu and keep hearing great things about Mint so I decided to check it out. I'm installing it on my Lenovo X61 laptop which has no optical drives and I don't have an external. I have a 1 gig USB drive, so I grabbed the 32-bit cd iso.
Neither usb-creator-gtk nor imagewriter would write the image properly, but setting up the drive via command line appears to have created a bootable drive.
Code: Select all
$ sudo dd if=linuxmint-12-gnome-cd-nocodecs-32bit.iso of=/dev/sdb oflag=direct bs=1048576
620+1 records in
620+1 records out
650299392 bytes (650 MB) copied, 92.3129 s, 7.0 MB/s
Code: Select all
sudo fdisk -l
Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf3db4fd2
Device Boot Start End Blocks Id System
/dev/sda1 * 1 14228 114286378+ 83 Linux
/dev/sda2 14229 14593 2931862+ 5 Extended
/dev/sda5 14229 14593 2931831 82 Linux swap / Solaris
Disk /dev/sdb: 1001 MB, 1001390080 bytes
31 heads, 62 sectors/track, 1017 cylinders
Units = cylinders of 1922 * 512 = 984064 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Disk /dev/sdb doesn't contain a valid partition table
I figured that not having a partition table was because the drive wasn't made persistent with the command line dd.
Suggestions?