0 Mitglieder und 1 Gast betrachten dieses Thema.
sudo fdisk -l
mint@mint ~ $ sudo fdisk -lDisk /dev/sda: 1000.2 GB, 1000204886016 bytes255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x6e6181ed Device Boot Start End Blocks Id System/dev/sda1 2048 1953521663 976759808 7 HPFS/NTFS/exFATDisk /dev/sdb: 64.0 GB, 64023257088 bytes255 heads, 63 sectors/track, 7783 cylinders, total 125045424 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x5db86d89 Device Boot Start End Blocks Id System/dev/sdb1 * 63 125045423 62522680+ 83 LinuxDisk /dev/sdc: 1000.2 GB, 1000204886016 bytes255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0xcb8508e2 Device Boot Start End Blocks Id System/dev/sdc1 * 2048 1953519615 976758784 7 HPFS/NTFS/exFATDisk /dev/sdd: 128.0 GB, 128035676160 bytes255 heads, 63 sectors/track, 15566 cylinders, total 250069680 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0xb05ac6ff Device Boot Start End Blocks Id System/dev/sdd1 * 2048 206847 102400 7 HPFS/NTFS/exFAT/dev/sdd2 206848 245872639 122832896 7 HPFS/NTFS/exFAT/dev/sdd3 245872640 250066943 2097152 84 OS/2 hidden C: driveDisk /dev/sde: 8036 MB, 8036285952 bytes255 heads, 63 sectors/track, 977 cylinders, total 15695871 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0xcad4ebea Device Boot Start End Blocks Id System/dev/sde1 * 0 0 0 0 Empty/dev/sde4 63 15695870 7847904 c W95 FAT32 (LBA)mint@mint ~ $
find /boot/efi -iname "*efi"
sudo fdisk -l 2>/dev/null | egrep "Disk /|/dev/" | sed "s#^/dev/#Part /dev/#" | awk '{print $2}' | sed 's/://' | xargs -n1 -IX sudo sh -c "hexdump -v -s 0x80 -n 2 -e '2/1 \"%x\" \"\\n\"' X | xargs -n1 -IY sh -c \"case \"Y\" in '48b4') echo X: GRUB 2 v1.96 ;; 'aa75' | '5272') echo X: GRUB Legacy ;; '7c3c') echo X: GRUB 2 v1.97 oder v1.98 ;; '020') echo X: GRUB 2 v1.99 ;; *) echo X: Kein GRUB Y ;; esac\""
mint@mint ~ $ find /boot/efi -iname "*efi" find: `/boot/efi': No such file or directorymint@mint ~ $ sudo fdisk -l 2>/dev/null | egrep "Disk /|/dev/" | sed "s#^/dev/#Part /dev/#" | awk '{print $2}' | sed 's/://' | xargs -n1 -IX sudo sh -c "hexdump -v -s 0x80 -n 2 -e '2/1 \"%x\" \"\\n\"' X | xargs -n1 -IY sh -c \"case \"Y\" in '48b4') echo X: GRUB 2 v1.96 ;; 'aa75' | '5272') echo X: GRUB Legacy ;; '7c3c') echo X: GRUB 2 v1.97 oder v1.98 ;; '020') echo X: GRUB 2 v1.99 ;; *) echo X: Kein GRUB Y ;; esac\"" /dev/sda: Kein GRUB 00hexdump: /dev/sda1: No such file or directory/dev/sdb: Kein GRUB 00/dev/sdb1: Kein GRUB 00/dev/sdc: Kein GRUB 9f83/dev/sdc1: Kein GRUB 55aa/dev/sdd: Kein GRUB 9f83/dev/sdd1: Kein GRUB 55aa/dev/sdd2: Kein GRUB 55aa/dev/sdd3: Kein GRUB 00/dev/sde: Kein GRUB 7c66/dev/sde1: Kein GRUB 31c0/dev/sdf: Kein GRUB 7c66hexdump: /dev/sdf1: No such file or directory/dev/sdf4: Kein GRUB 31c0mint@mint ~ $