Using kubuntu 13.10 on a 64 bit system, 8G memory
Drive Partitions changed from original setup in Dec:
Results of sudo fdisk -l at Jan 6
Current fstab: Jan 6
Obviously I messed up on original partition creation – re /dev/sdb1!!
Can I remove /dev/sdb1 partition (since it is booting from /dev/sdb2), without causing problems?
Sure would like to get out of this mess without having to reinstall!!
Your suggestions would be very welcome!
Drive Partitions changed from original setup in Dec:
Results of sudo fdisk -l at Jan 6
Code:
Disk /dev/sda: 120.0 GB, 120034123776 bytes 255 heads, 63 sectors/track, 14593 cylinders, total 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 Disk identifier: 0x3bd6013d Device Boot Start End Blocks Id System /dev/sda1 * 63 130521087 65260512+ 7 HPFS/NTFS/exFAT Disk /dev/sdb: 320.1 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders, total 625142448 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 Disk identifier: 0x0004a04a Device Boot Start End Blocks Id System /dev/sdb1 2046 10000383 4999169 5 Extended /dev/sdb2 * 10000384 209999871 99999744 83 Linux /dev/sdb3 209999872 409999359 99999744 83 Linux /dev/sdb4 409999360 410998783 499712 82 Linux swap / Solaris /dev/sdb5 2048 10000383 4999168 83 Linux Disk /dev/sdd: 2000.4 GB, 2000396746752 bytes 255 heads, 63 sectors/track, 243201 cylinders, total 3907024896 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 Disk identifier: 0x0003990f Device Boot Start End Blocks Id System /dev/sdd1 * 63 1851025364 925512651 7 HPFS/NTFS/exFAT /dev/sdd2 1851025365 3907007999 1027991317+ f W95 Ext'd (LBA) /dev/sdd5 1851025428 3907007999 1027991286 7 HPFS/NTFS/exFAT bumpy@bumpyputer:~$ blkid /dev/sda1: UUID="38DC9DBDDC9D75BA" TYPE="ntfs" /dev/sdb2: UUID="0110cb19-48b1-49b1-95fa-a3cfeed1edf7" TYPE="ext2" /dev/sdb3: UUID="1a76da42-45d6-4662-9870-1c759cc6c039" TYPE="ext2" /dev/sdb4: UUID="b32b0388-d9c7-4b97-9de5-5794758b9071" TYPE="swap" /dev/sdb5: UUID="3cc8acfc-f516-4946-91a7-1e079719ab00" TYPE="ext4" /dev/sdd1: LABEL="Local Disk" UUID="185C5BAF5C5B8682" TYPE="ntfs" /dev/sdd5: LABEL="Data Storeage" UUID="14FC9FECFC9FC700" TYPE="ntfs"
Code:
# /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/sdb2 during installation UUID=0110cb19-48b1-49b1-95fa-a3cfeed1edf7 / ext2 errors=remount-ro 0 1 # /boot was on /dev/sdb5 during installation #UUID=3cc8acfc-f516-4946-91a7-1e079719ab00 /boot ext4 defaults 0 2 # /home was on /dev/sdb3 during installation UUID=1a76da42-45d6-4662-9870-1c759cc6c039 /home ext2 defaults 0 2 # swap was on /dev/sdb4 during installation UUID=b32b0388-d9c7-4b97-9de5-5794758b9071 none swap sw 0 0 UUID=3cc8acfc-f516-4946-91a7-1e079719ab00 /boot ext4 defaults 0 2
Can I remove /dev/sdb1 partition (since it is booting from /dev/sdb2), without causing problems?
Sure would like to get out of this mess without having to reinstall!!
Your suggestions would be very welcome!
Comment