Advertisement
Guest User

ubuntu

a guest
Apr 1st, 2014
1,059
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 22.07 KB | None | 0 0
  1. Boot Info Script e7fc706 + Boot-Repair extra info      [Boot-Info 23Dec2013]
  2.  
  3.  
  4. ============================= Boot Info Summary: ===============================
  5.  
  6.  => Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector 1 of
  7.     the same hard drive for core.img. core.img is at this location and looks
  8.     in partition 94 for .
  9.  
  10. sda1: __________________________________________________________________________
  11.  
  12.     File system:       ext4
  13.     Boot sector type:  -
  14.     Boot sector info:
  15.     Operating System:  
  16.     Boot files:        /boot/grub/grub.cfg /boot/grub/i386-pc/core.img
  17.  
  18. sda2: __________________________________________________________________________
  19.  
  20.     File system:       Extended Partition
  21.     Boot sector type:  -
  22.     Boot sector info:
  23.  
  24. sda5: __________________________________________________________________________
  25.  
  26.     File system:       swap
  27.     Boot sector type:  -
  28.     Boot sector info:
  29.  
  30. ============================ Drive/Partition Info: =============================
  31.  
  32. Drive: sda _____________________________________________________________________
  33.  
  34. Disk /dev/sda: 251.0 GB, 251000193024 bytes
  35. 255 heads, 63 sectors/track, 30515 cylinders, total 490234752 sectors
  36. Units = sectors of 1 * 512 = 512 bytes
  37. Sector size (logical/physical): 512 bytes / 512 bytes
  38.  
  39. Partition  Boot  Start Sector    End Sector  # of Sectors  Id System
  40.  
  41. /dev/sda1    *          2,048   483,944,447   483,942,400  83 Linux
  42. /dev/sda2         483,946,494   490,233,855     6,287,362   5 Extended
  43. /dev/sda5         483,946,496   490,233,855     6,287,360  82 Linux swap / Solaris
  44.  
  45.  
  46. "blkid" output: ________________________________________________________________
  47.  
  48. Device           UUID                                   TYPE       LABEL
  49.  
  50. /dev/loop0                                              squashfs  
  51. /dev/sda1        d4eca24c-7d4c-48ab-845f-447599a55486   ext4      
  52. /dev/sda5        3ea14362-8583-4564-9dae-bb1a5629f78f   swap      
  53. /dev/sr0                                                iso9660    Ubuntu 13.10 i386
  54.  
  55. ================================ Mount points: =================================
  56.  
  57. Device           Mount_Point              Type       Options
  58.  
  59. /dev/loop0       /rofs                    squashfs   (ro,noatime)
  60. /dev/sr0         /cdrom                   iso9660    (ro,noatime)
  61.  
  62.  
  63. =========================== sda1/boot/grub/grub.cfg: ===========================
  64.  
  65. --------------------------------------------------------------------------------
  66. #
  67. # DO NOT EDIT THIS FILE
  68. #
  69. # It is automatically generated by grub-mkconfig using templates
  70. # from /etc/grub.d and settings from /etc/default/grub
  71. #
  72.  
  73. ### BEGIN /etc/grub.d/00_header ###
  74. if [ -s $prefix/grubenv ]; then
  75.   set have_grubenv=true
  76.   load_env
  77. fi
  78. set default="0"
  79.  
  80. if [ x"${feature_menuentry_id}" = xy ]; then
  81.   menuentry_id_option="--id"
  82. else
  83.   menuentry_id_option=""
  84. fi
  85.  
  86. export menuentry_id_option
  87.  
  88. if [ "${prev_saved_entry}" ]; then
  89.   set saved_entry="${prev_saved_entry}"
  90.   save_env saved_entry
  91.   set prev_saved_entry=
  92.   save_env prev_saved_entry
  93.   set boot_once=true
  94. fi
  95.  
  96. function savedefault {
  97.   if [ -z "${boot_once}" ]; then
  98.     saved_entry="${chosen}"
  99.     save_env saved_entry
  100.   fi
  101. }
  102.  
  103. function recordfail {
  104.   set recordfail=1
  105.   if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  106. }
  107.  
  108. function load_video {
  109.   if [ x$feature_all_video_module = xy ]; then
  110.     insmod all_video
  111.   else
  112.     insmod efi_gop
  113.     insmod efi_uga
  114.     insmod ieee1275_fb
  115.     insmod vbe
  116.     insmod vga
  117.     insmod video_bochs
  118.     insmod video_cirrus
  119.   fi
  120. }
  121.  
  122. if [ x$feature_default_font_path = xy ] ; then
  123.    font=unicode
  124. else
  125. insmod part_msdos
  126. insmod ext2
  127. set root='hd0,msdos1'
  128. if [ x$feature_platform_search_hint = xy ]; then
  129.   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  130. else
  131.   search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  132. fi
  133.     font="/usr/share/grub/unicode.pf2"
  134. fi
  135.  
  136. if loadfont $font ; then
  137.   set gfxmode=auto
  138.   load_video
  139.   insmod gfxterm
  140.   set locale_dir=$prefix/locale
  141.   set lang=en_CA
  142.   insmod gettext
  143. fi
  144. terminal_output gfxterm
  145. if [ "${recordfail}" = 1 ]; then
  146.   set timeout=10
  147. else
  148.   set timeout=10
  149. fi
  150. ### END /etc/grub.d/00_header ###
  151.  
  152. ### BEGIN /etc/grub.d/05_debian_theme ###
  153. set menu_color_normal=white/black
  154. set menu_color_highlight=black/light-gray
  155. ### END /etc/grub.d/05_debian_theme ###
  156.  
  157. ### BEGIN /etc/grub.d/10_linux ###
  158. function gfxmode {
  159.     set gfxpayload="${1}"
  160.     if [ "${1}" = "keep" ]; then
  161.         set vt_handoff=vt.handoff=7
  162.     else
  163.         set vt_handoff=
  164.     fi
  165. }
  166. if [ "${recordfail}" != 1 ]; then
  167.   if [ -e ${prefix}/gfxblacklist.txt ]; then
  168.     if hwmatch ${prefix}/gfxblacklist.txt 3; then
  169.       if [ ${match} = 0 ]; then
  170.         set linux_gfx_mode=keep
  171.       else
  172.         set linux_gfx_mode=text
  173.       fi
  174.     else
  175.       set linux_gfx_mode=text
  176.     fi
  177.   else
  178.     set linux_gfx_mode=keep
  179.   fi
  180. else
  181.   set linux_gfx_mode=text
  182. fi
  183. export linux_gfx_mode
  184. menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-d4eca24c-7d4c-48ab-845f-447599a55486' {
  185. recordfail
  186.     load_video
  187.     gfxmode $linux_gfx_mode
  188.     insmod gzio
  189.     insmod part_msdos
  190.     insmod ext2
  191.     set root='hd0,msdos1'
  192.     if [ x$feature_platform_search_hint = xy ]; then
  193.       search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  194.     else
  195.       search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  196.     fi
  197.     linux   /boot/vmlinuz-3.11.0-18-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro   quiet splash $vt_handoff
  198.     initrd  /boot/initrd.img-3.11.0-18-generic
  199. }
  200. submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-d4eca24c-7d4c-48ab-845f-447599a55486' {
  201.     menuentry 'Ubuntu, with Linux 3.11.0-18-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-18-generic-advanced-d4eca24c-7d4c-48ab-845f-447599a55486' {
  202.     recordfail
  203.         load_video
  204.         gfxmode $linux_gfx_mode
  205.         insmod gzio
  206.         insmod part_msdos
  207.         insmod ext2
  208.         set root='hd0,msdos1'
  209.         if [ x$feature_platform_search_hint = xy ]; then
  210.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  211.         else
  212.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  213.         fi
  214.         echo    'Loading Linux 3.11.0-18-generic ...'
  215.         linux   /boot/vmlinuz-3.11.0-18-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro   quiet splash $vt_handoff
  216.         echo    'Loading initial ramdisk ...'
  217.         initrd  /boot/initrd.img-3.11.0-18-generic
  218.     }
  219.     menuentry 'Ubuntu, with Linux 3.11.0-18-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-18-generic-recovery-d4eca24c-7d4c-48ab-845f-447599a55486' {
  220.     recordfail
  221.         load_video
  222.         insmod gzio
  223.         insmod part_msdos
  224.         insmod ext2
  225.         set root='hd0,msdos1'
  226.         if [ x$feature_platform_search_hint = xy ]; then
  227.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  228.         else
  229.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  230.         fi
  231.         echo    'Loading Linux 3.11.0-18-generic ...'
  232.         linux   /boot/vmlinuz-3.11.0-18-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro recovery nomodeset
  233.         echo    'Loading initial ramdisk ...'
  234.         initrd  /boot/initrd.img-3.11.0-18-generic
  235.     }
  236.     menuentry 'Ubuntu, with Linux 3.11.0-17-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-17-generic-advanced-d4eca24c-7d4c-48ab-845f-447599a55486' {
  237.     recordfail
  238.         load_video
  239.         gfxmode $linux_gfx_mode
  240.         insmod gzio
  241.         insmod part_msdos
  242.         insmod ext2
  243.         set root='hd0,msdos1'
  244.         if [ x$feature_platform_search_hint = xy ]; then
  245.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  246.         else
  247.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  248.         fi
  249.         echo    'Loading Linux 3.11.0-17-generic ...'
  250.         linux   /boot/vmlinuz-3.11.0-17-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro   quiet splash $vt_handoff
  251.         echo    'Loading initial ramdisk ...'
  252.         initrd  /boot/initrd.img-3.11.0-17-generic
  253.     }
  254.     menuentry 'Ubuntu, with Linux 3.11.0-17-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-17-generic-recovery-d4eca24c-7d4c-48ab-845f-447599a55486' {
  255.     recordfail
  256.         load_video
  257.         insmod gzio
  258.         insmod part_msdos
  259.         insmod ext2
  260.         set root='hd0,msdos1'
  261.         if [ x$feature_platform_search_hint = xy ]; then
  262.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  263.         else
  264.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  265.         fi
  266.         echo    'Loading Linux 3.11.0-17-generic ...'
  267.         linux   /boot/vmlinuz-3.11.0-17-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro recovery nomodeset
  268.         echo    'Loading initial ramdisk ...'
  269.         initrd  /boot/initrd.img-3.11.0-17-generic
  270.     }
  271.     menuentry 'Ubuntu, with Linux 3.11.0-15-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-15-generic-advanced-d4eca24c-7d4c-48ab-845f-447599a55486' {
  272.     recordfail
  273.         load_video
  274.         gfxmode $linux_gfx_mode
  275.         insmod gzio
  276.         insmod part_msdos
  277.         insmod ext2
  278.         set root='hd0,msdos1'
  279.         if [ x$feature_platform_search_hint = xy ]; then
  280.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  281.         else
  282.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  283.         fi
  284.         echo    'Loading Linux 3.11.0-15-generic ...'
  285.         linux   /boot/vmlinuz-3.11.0-15-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro   quiet splash $vt_handoff
  286.         echo    'Loading initial ramdisk ...'
  287.         initrd  /boot/initrd.img-3.11.0-15-generic
  288.     }
  289.     menuentry 'Ubuntu, with Linux 3.11.0-15-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-15-generic-recovery-d4eca24c-7d4c-48ab-845f-447599a55486' {
  290.     recordfail
  291.         load_video
  292.         insmod gzio
  293.         insmod part_msdos
  294.         insmod ext2
  295.         set root='hd0,msdos1'
  296.         if [ x$feature_platform_search_hint = xy ]; then
  297.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  298.         else
  299.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  300.         fi
  301.         echo    'Loading Linux 3.11.0-15-generic ...'
  302.         linux   /boot/vmlinuz-3.11.0-15-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro recovery nomodeset
  303.         echo    'Loading initial ramdisk ...'
  304.         initrd  /boot/initrd.img-3.11.0-15-generic
  305.     }
  306.     menuentry 'Ubuntu, with Linux 3.11.0-12-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-12-generic-advanced-d4eca24c-7d4c-48ab-845f-447599a55486' {
  307.     recordfail
  308.         load_video
  309.         gfxmode $linux_gfx_mode
  310.         insmod gzio
  311.         insmod part_msdos
  312.         insmod ext2
  313.         set root='hd0,msdos1'
  314.         if [ x$feature_platform_search_hint = xy ]; then
  315.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  316.         else
  317.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  318.         fi
  319.         echo    'Loading Linux 3.11.0-12-generic ...'
  320.         linux   /boot/vmlinuz-3.11.0-12-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro   quiet splash $vt_handoff
  321.         echo    'Loading initial ramdisk ...'
  322.         initrd  /boot/initrd.img-3.11.0-12-generic
  323.     }
  324.     menuentry 'Ubuntu, with Linux 3.11.0-12-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-12-generic-recovery-d4eca24c-7d4c-48ab-845f-447599a55486' {
  325.     recordfail
  326.         load_video
  327.         insmod gzio
  328.         insmod part_msdos
  329.         insmod ext2
  330.         set root='hd0,msdos1'
  331.         if [ x$feature_platform_search_hint = xy ]; then
  332.           search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  333.         else
  334.           search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  335.         fi
  336.         echo    'Loading Linux 3.11.0-12-generic ...'
  337.         linux   /boot/vmlinuz-3.11.0-12-generic root=UUID=d4eca24c-7d4c-48ab-845f-447599a55486 ro recovery nomodeset
  338.         echo    'Loading initial ramdisk ...'
  339.         initrd  /boot/initrd.img-3.11.0-12-generic
  340.     }
  341. }
  342.  
  343. ### END /etc/grub.d/10_linux ###
  344.  
  345. ### BEGIN /etc/grub.d/20_linux_xen ###
  346.  
  347. ### END /etc/grub.d/20_linux_xen ###
  348.  
  349. ### BEGIN /etc/grub.d/20_memtest86+ ###
  350. menuentry 'Memory test (memtest86+)' {
  351.     insmod part_msdos
  352.     insmod ext2
  353.     set root='hd0,msdos1'
  354.     if [ x$feature_platform_search_hint = xy ]; then
  355.       search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  356.     else
  357.       search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  358.     fi
  359.     linux16 /boot/memtest86+.bin
  360. }
  361. menuentry 'Memory test (memtest86+, serial console 115200)' {
  362.     insmod part_msdos
  363.     insmod ext2
  364.     set root='hd0,msdos1'
  365.     if [ x$feature_platform_search_hint = xy ]; then
  366.       search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  d4eca24c-7d4c-48ab-845f-447599a55486
  367.     else
  368.       search --no-floppy --fs-uuid --set=root d4eca24c-7d4c-48ab-845f-447599a55486
  369.     fi
  370.     linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  371. }
  372. ### END /etc/grub.d/20_memtest86+ ###
  373.  
  374. ### BEGIN /etc/grub.d/30_os-prober ###
  375. if [ "x${timeout}" != "x-1" ]; then
  376.   if keystatus; then
  377.     if keystatus --shift; then
  378.       set timeout=10
  379.     else
  380.       set timeout=10
  381.     fi
  382.   else
  383.     if sleep --interruptible 3 ; then
  384.       set timeout=10
  385.     fi
  386.   fi
  387. fi
  388. ### END /etc/grub.d/30_os-prober ###
  389.  
  390. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  391. ### END /etc/grub.d/30_uefi-firmware ###
  392.  
  393. ### BEGIN /etc/grub.d/40_custom ###
  394. # This file provides an easy way to add custom menu entries.  Simply type the
  395. # menu entries you want to add after this comment.  Be careful not to change
  396. # the 'exec tail' line above.
  397. ### END /etc/grub.d/40_custom ###
  398.  
  399. ### BEGIN /etc/grub.d/41_custom ###
  400. if [ -f  ${config_directory}/custom.cfg ]; then
  401.   source ${config_directory}/custom.cfg
  402. elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  403.   source $prefix/custom.cfg;
  404. fi
  405. ### END /etc/grub.d/41_custom ###
  406. --------------------------------------------------------------------------------
  407.  
  408. =================== sda1: Location of files loaded by Grub: ====================
  409.  
  410.            GiB - GB             File                                 Fragment(s)
  411.  
  412.  
  413. =============================== StdErr Messages: ===============================
  414.  
  415. cat: /tmp/BootInfo-UecvkO2y/Tmp_Log: No such file or directory
  416. File descriptor 10 (/proc/6200/mounts) leaked on lvscan invocation. Parent PID 11686: bash
  417.   No volume groups found
  418.  
  419. ADDITIONAL INFORMATION :
  420. =================== log of boot-repair 2014-04-01__22h57 ===================
  421. boot-repair version : 3.199~ppa40~saucy
  422. boot-sav version : 3.199~ppa40~saucy
  423. glade2script version : 3.2.2~ppa47~saucy
  424. boot-sav-extra version : 3.199~ppa40~saucy
  425. boot-repair is executed in live-session (Ubuntu 13.10, saucy, Ubuntu, i686)
  426. ls: cannot access /home/usr/.config: No such file or directory
  427. CPU op-mode(s):        32-bit
  428. file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
  429.  
  430. =================== os-prober:
  431.  
  432.  
  433. =================== blkid:
  434. /dev/loop0: TYPE="squashfs"
  435. /dev/sda1: UUID="d4eca24c-7d4c-48ab-845f-447599a55486" TYPE="ext4"
  436. /dev/sda5: UUID="3ea14362-8583-4564-9dae-bb1a5629f78f" TYPE="swap"
  437. /dev/sr0: LABEL="Ubuntu 13.10 i386" TYPE="iso9660"
  438.  
  439. Linux not detected by os-prober on sda1. Please report this message to boot.repair@gmail.com
  440. Warning: extended partition does not start at a cylinder boundary.
  441. DOS and Linux will interpret the contents differently.
  442.  
  443. =================== sda1recordfail=1/grub/grubenv :
  444. recordfail=1
  445.  
  446.  
  447.  
  448. =================== UEFI/Legacy mode:
  449. This live-session is not EFI-compatible.
  450. SecureBoot maybe enabled.
  451.  
  452.  
  453. =================== PARTITIONS & DISKS:
  454. sda1    : sda,  not-sepboot,    grubenv-ng  nogrub, no-docgrub, no-update-grub, 32, with-boot,  is-os,  not--efi--part, part-has-no-fstab,  part-has-no-fstab,  no-nt,  no-winload, no-recov-nor-hid,   no-bmgr,    notwinboot, nopakmgr,   nogrubinstall,  with--usr,  part-has-no-fstab,  not-sep-usr,    standard,   farbios,    /mnt/boot-sav/sda1.
  455.  
  456. sda : not-GPT,  BIOSboot-not-needed,    has-no-EFIpart,     not-usb,    has-os, 2048 sectors * 512 bytes
  457.  
  458.  
  459. =================== parted -l:
  460.  
  461. Model: ATA Maxtor 6L250R0 (scsi)
  462. Disk /dev/sda: 251GB
  463. Sector size (logical/physical): 512B/512B
  464. Partition Table: msdos
  465.  
  466. Number  Start   End    Size    Type      File system     Flags
  467. 1      1049kB  248GB  248GB   primary   ext4            boot
  468. 2      248GB   251GB  3219MB  extended
  469. 5      248GB   251GB  3219MB  logical   linux-swap(v1)
  470.  
  471.  
  472.  
  473.                                                                          
  474. Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0
  475. has been opened read-only.
  476.  
  477.                                                                          
  478. Error: Can't have a partition outside the disk!
  479.  
  480. =================== parted -lm:
  481.  
  482. BYT;
  483. /dev/sda:251GB:scsi:512:512:msdos:ATA Maxtor 6L250R0;
  484. 1:1049kB:248GB:248GB:ext4::boot;
  485. 2:248GB:251GB:3219MB:::;
  486. 5:248GB:251GB:3219MB:linux-swap(v1)::;
  487.  
  488.  
  489.                                                                          
  490. Warning: Unable to open /dev/sr0 read-write (Read-only file system).  /dev/sr0
  491. has been opened read-only.
  492.  
  493.                                                                          
  494. Error: Can't have a partition outside the disk!
  495.  
  496.  
  497. =================== mount:
  498. /cow on / type overlayfs (rw)
  499. proc on /proc type proc (rw,noexec,nosuid,nodev)
  500. sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
  501. udev on /dev type devtmpfs (rw,mode=0755)
  502. devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
  503. tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
  504. /dev/sr0 on /cdrom type iso9660 (ro,noatime)
  505. /dev/loop0 on /rofs type squashfs (ro,noatime)
  506. none on /sys/fs/cgroup type tmpfs (rw)
  507. none on /sys/fs/fuse/connections type fusectl (rw)
  508. none on /sys/kernel/debug type debugfs (rw)
  509. none on /sys/kernel/security type securityfs (rw)
  510. tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
  511. none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
  512. none on /run/shm type tmpfs (rw,nosuid,nodev)
  513. none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
  514. none on /sys/fs/pstore type pstore (rw)
  515. systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
  516. gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=ubuntu)
  517. /dev/sda1 on /mnt/boot-sav/sda1 type ext4 (rw)
  518.  
  519.  
  520. =================== ls:
  521. /sys/block/fd0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
  522. /sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 sda2 sda5 size slaves stat subsystem trace uevent
  523. /sys/block/sr0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
  524. /dev (filtered):  agpgart autofs block bsg btrfs-control bus cdrom char console core cpu cpu_dma_latency disk dri ecryptfs fb0 fd fd0 full fuse hidraw0 hpet input kmsg log lp0 mapper mcelog mem net network_latency network_throughput null parport0 port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda5 sg0 sg1 shm snapshot snd sr0 stderr stdin stdout uinput urandom v4l vga_arbiter vhost-net video0 zero
  525. ls /dev/mapper:  control
  526.  
  527. =================== df -Th:
  528.  
  529. Filesystem     Type       Size  Used Avail Use% Mounted on
  530. /cow           overlayfs  1.5G  111M  1.4G   8% /
  531. udev           devtmpfs   1.5G   12K  1.5G   1% /dev
  532. tmpfs          tmpfs      304M  1.1M  302M   1% /run
  533. /dev/sr0       iso9660    895M  895M     0 100% /cdrom
  534. /dev/loop0     squashfs   862M  862M     0 100% /rofs
  535. none           tmpfs      4.0K     0  4.0K   0% /sys/fs/cgroup
  536. tmpfs          tmpfs      1.5G  1.1M  1.5G   1% /tmp
  537. none           tmpfs      5.0M  4.0K  5.0M   1% /run/lock
  538. none           tmpfs      1.5G   80K  1.5G   1% /run/shm
  539. none           tmpfs      100M   64K  100M   1% /run/user
  540. /dev/sda1      ext4       228G   28G  188G  13% /mnt/boot-sav/sda1
  541.  
  542. =================== fdisk -l:
  543.  
  544. Disk /dev/sda: 251.0 GB, 251000193024 bytes
  545. 255 heads, 63 sectors/track, 30515 cylinders, total 490234752 sectors
  546. Units = sectors of 1 * 512 = 512 bytes
  547. Sector size (logical/physical): 512 bytes / 512 bytes
  548. I/O size (minimum/optimal): 512 bytes / 512 bytes
  549. Disk identifier: 0x00035b92
  550.  
  551. Device Boot      Start         End      Blocks   Id  System
  552. /dev/sda1   *        2048   483944447   241971200   83  Linux
  553. /dev/sda2       483946494   490233855     3143681    5  Extended
  554. /dev/sda5       483946496   490233855     3143680   82  Linux swap / Solaris
  555.  
  556.  
  557. Partition outside the disk detected.
  558.  
  559. =================== Default settings
  560. Recommended-Repair
  561. This setting would restore the [(generic mbr)] MBR in sda, and make it boot on sda1.
  562. Additional repair would be performed: unhide-bootmenu-10s
  563.  
  564. =================== Settings chosen by the user
  565. Boot-Info
  566. This setting will not act on the MBR.
  567.  
  568.  
  569.  
  570. No change has been performed on your computer.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement