Δημοσιεύτηκε: 18 Μαρ 2014, 10:39
konnn έγραψε:sudo fdisk -l
- Κώδικας: Επιλογή όλων
invisible@invisible-Aspire-7736:~$ sudo fdisk -l
[sudo] password for invisible:
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 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: 0x000ae09b
Device Boot Start End Blocks Id System
/dev/sda1 2048 819044351 409521152 83 Linux
/dev/sda2 * 819044352 894789631 37872640 7 HPFS/NTFS/exFAT
/dev/sda3 894789632 959999999 32605184 83 Linux
/dev/sda4 960000000 976773119 8386560 82 Linux swap / Solaris
invisible@invisible-Aspire-7736:~$
Learner έγραψε:Έχεις στο /etc/fstab την κατάλληλη καταχώρηση ;
Κώδικας: Επιλογή όλων
sudo blkid
cat /etc/fstab
- Κώδικας: Επιλογή όλων
invisible@invisible-Aspire-7736:~$ sudo blkid
[sudo] password for invisible:
/dev/sda1: LABEL="Ubuntu LTS" UUID="68e55305-7c2c-4b48-9485-2c51f695b494" TYPE="ext4"
/dev/sda2: LABEL="Windows 7" UUID="39E537323F59C5DE" TYPE="ntfs"
/dev/sda3: UUID="5b2ee1cd-3eab-43ba-af0e-6a533d4bd906" TYPE="ext4" LABEL="Ubuntu non-LTS"
/dev/sda4: UUID="b7794edc-3bbb-41b2-9482-918092c2f30d" TYPE="swap"
invisible@invisible-Aspire-7736:~$ cat /etc/fstab
# /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>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=68e55305-7c2c-4b48-9485-2c51f695b494 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda2 during installation
UUID=dc841aa7-019b-4ffc-8b97-b570ce8c3ec3 none swap sw 0 0
invisible@invisible-Aspire-7736:~$