Advertisement
Guest User

Untitled

a guest
Aug 24th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. ubuntu@ubuntu:~$ sudo fdisk -l
  2.  
  3. Disk /dev/sda: 640.1 GB, 640135028736 bytes
  4. 255 heads, 63 sectors/track, 77825 cylinders, total 1250263728 sectors
  5. Units = sectors of 1 * 512 = 512 bytes
  6. Sector size (logical/physical): 512 bytes / 512 bytes
  7. I/O size (minimum/optimal): 512 bytes / 512 bytes
  8. Disk identifier: 0x5dd7c42c
  9.  
  10. Device Boot Start End Blocks Id System
  11. /dev/sda1 2048 31459327 15728640 27 Hidden NTFS WinRE
  12. /dev/sda2 * 31459328 31664127 102400 7 HPFS/NTFS/exFAT
  13. /dev/sda3 31664128 694585343 331460608 7 HPFS/NTFS/exFAT
  14. /dev/sda4 694587390 1250263039 277837825 5 Extended
  15. /dev/sda5 1238355968 1250263039 5953536 82 Linux swap / Solaris
  16. /dev/sda6 694587392 1226446847 265929728 83 Linux
  17. /dev/sda7 1226448896 1238353919 5952512 82 Linux swap / Solaris
  18.  
  19. Partition table entries are not in disk order
  20.  
  21. Disk /dev/sdb: 8053 MB, 8053063680 bytes
  22. 255 heads, 63 sectors/track, 979 cylinders, total 15728640 sectors
  23. Units = sectors of 1 * 512 = 512 bytes
  24. Sector size (logical/physical): 512 bytes / 512 bytes
  25. I/O size (minimum/optimal): 512 bytes / 512 bytes
  26. Disk identifier: 0x00000000
  27.  
  28. Device Boot Start End Blocks Id System
  29. /dev/sdb1 * 2048 15728639 7863296 b W95 FAT32
  30.  
  31. Disk /dev/sdc: 32.0 GB, 32015679488 bytes
  32. 255 heads, 63 sectors/track, 3892 cylinders, total 62530624 sectors
  33. Units = sectors of 1 * 512 = 512 bytes
  34. Sector size (logical/physical): 512 bytes / 512 bytes
  35. I/O size (minimum/optimal): 512 bytes / 512 bytes
  36. Disk identifier: 0x00000000
  37.  
  38. Device Boot Start End Blocks Id System
  39. /dev/sdc1 32 62530623 31265296 c W95 FAT32 (LBA)
  40. ubuntu@ubuntu:~$ sudo mount /dev/sda6
  41. mount: can't find /dev/sda6 in /etc/fstab or /etc/mtab
  42. ubuntu@ubuntu:~$ sudo mount/dev/sda6
  43. sudo: mount/dev/sda6: command not found
  44. ubuntu@ubuntu:~$ sudo mount /dev/sda6
  45. mount: can't find /dev/sda6 in /etc/fstab or /etc/mtab
  46. ubuntu@ubuntu:~$ sudo mount /dev/sda6/mnt/boot
  47. mount: can't find /dev/sda6/mnt/boot in /etc/fstab or /etc/mtab
  48. ubuntu@ubuntu:~$ sudo mount /dev/sda6/ mnt/boot
  49. mount: mount point mnt/boot does not exist
  50. ubuntu@ubuntu:~$ cd mnt/boot
  51. bash: cd: mnt/boot: No such file or directory
  52. ubuntu@ubuntu:~$ cd mnt
  53. bash: cd: mnt: No such file or directory
  54. ubuntu@ubuntu:~$ sudo mount /dev/sda6
  55. mount: /dev/sda6 already mounted or /media/ubuntu/aa9a8b40-8489-4309-992e-5ffe0533bc41 busy
  56. mount: according to mtab, /dev/sda6 is already mounted on /media/ubuntu/aa9a8b40-8489-4309-992e-5ffe0533bc41
  57. ubuntu@ubuntu:~$ sudo grub-install --root-directory=/mnt/ /dev/sda
  58. Path `/mnt/boot/grub' is not readable by GRUB on boot. Installation is impossible. Aborting.
  59. ubuntu@ubuntu:~$ sudo grub-install --root-directory=/mnt/ /dev/sda
  60. Path `/mnt/boot/grub' is not readable by GRUB on boot. Installation is impossible. Aborting.
  61. ubuntu@ubuntu:~$ sudo grub-install --root-directory=/mnt/ /dev/sda
  62. Path `/mnt/boot/grub' is not readable by GRUB on boot. Installation is impossible. Aborting.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement