sudo blkid
/dev/sda1: LABEL="Kurtarma" UUID="868831FC8831EB77" TYPE="ntfs"
/dev/sda2: UUID="7C34-3731" TYPE="vfat"
/dev/sda4: UUID="EE726A73726A4087" TYPE="ntfs"
/dev/sda5: LABEL="Yerel Disk" UUID="E4305E0C305DE658" TYPE="ntfs"
/dev/sda6: LABEL="Yeni Birim" UUID="D4A607B1A6079362" TYPE="ntfs"
/dev/sda7: UUID="770d0eb4-c39f-4ea8-9c1c-1df9276c7524" TYPE="ext4"
/dev/sda8: UUID="159ae196-c34f-48bd-8da9-3ddba79a6840" TYPE="swap"
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>
# / was on /dev/sda7 during installation
UUID=770d0eb4-c39f-4ea8-9c1c-1df9276c7524 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda2 during installation
UUID=7C34-3731 /boot/efi vfat defaults 0 1
# swap was on /dev/sda8 during installation
UUID=159ae196-c34f-48bd-8da9-3ddba79a6840 none swap sw 0 0
sudo parted -l
Model: ATA TOSHIBA MQ01ABF0 (scsi)
Disk /dev/sda: 500GB
Sektör boyutu (mantıksal/fiziksel): 512B/4096B
Disk bölümü Tablosu: gpt
Numara Başlangıç Son Boyut Dosya sistemi İsim Bayraklar
1 1049kB 473MB 472MB ntfs Basic data partition gizli, diag
2 473MB 578MB 105MB fat32 EFI system partition önyükleme
3 578MB 595MB 16,8MB Microsoft reserved partition msftres
4 595MB 172GB 171GB ntfs Basic data partition msftdata
7 172GB 227GB 55,0GB ext4
8 227GB 236GB 9426MB linux-swap(v1)
5 236GB 463GB 227GB ntfs Basic data partition msftdata
6 463GB 500GB 36,7GB ntfs Basic data partition msftdata
sudo lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 465,8G 0 disk
├─sda1 8:1 0 450M 0 part
├─sda2 8:2 0 100M 0 part /boot/efi
├─sda3 8:3 0 16M 0 part
├─sda4 8:4 0 159,2G 0 part
├─sda5 8:5 0 211,9G 0 part /media/cros/Yerel Disk
├─sda6 8:6 0 34,2G 0 part
├─sda7 8:7 0 51,2G 0 part /
└─sda8 8:8 0 8,8G 0 part [SWAP]
sr0 11:0 1 1024M 0 rom
cat /etc/initramfs-tools/conf.d/resume
RESUME=UUID=159ae196-c34f-48bd-8da9-3ddba79a6840
cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=/dev/sda8"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"