Nach dem erfolgten Umzug von /home auf meine 2. Festplatte wollte ich das alte /home mit rm -rf /home* löschen.
Fehlermeldung: entfernen nicht Möglich: Verzeichnis ist nicht leer.
Ich habe also noch /home auf /dev/nvme0n1p6 und /dev/sda7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | # /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/nvme0n1p4 during installation UUID=cc495194-164a-4fd2-b526-2a1a2977e6d4 / ext4 errors=remount-ro 0 1 # /boot/efi was on /dev/sda1 during installation UUID=70B3-2B76 /boot/efi vfat umask=0077 0 1 # /home was on /dev/nvme0n1p6 during installation UUID=a7cc8010-fa4a-4639-a9a8-d3f47801c04f /home ext4 defaults 0 2 # swap was on /dev/nvme0n1p5 during installation UUID=29ac3545-90e4-47be-b128-371f56aa6a92 none swap sw 0 0 # /dev/sda7 UUID=a4047d42-0538-4231-a974-efbc1aaa0681 /home ext4 defaults 0 2 ~ ~ (END) Code {{{#!Code bakarl@karl-Lenovo-IdeaCentre-510s-07ICK:~$ sudo parted -l [sudo] Passwort für karl: Modell: ATA ST1000DM003-1SB1 (scsi) Festplatte /dev/sda: 1000GB Sektorgröße (logisch/physisch): 512B/4096B Partitionstabelle: gpt Disk-Flags: Nummer Anfang Ende Größe Dateisystem Name Flags 1 1049kB 106MB 105MB fat32 EFI system partition boot, esp 2 123MB 8230MB 8108MB Basic data partition msftdata 7 743GB 803GB 59,5GB ext4 Modell: SAMSUNG MZVLB256HBHQ-000L7 (nvme) Festplatte /dev/nvme0n1: 256GB Sektorgröße (logisch/physisch): 512B/512B Partitionstabelle: gpt Disk-Flags: Nummer Anfang Ende Größe Dateisystem Name Flags 1 1049kB 17,8MB 16,8MB Microsoft reserved partition msftres 2 17,8MB 154GB 154GB ntfs Basic data partition msftdata 3 191GB 192GB 659MB ntfs versteckt, diag 4 192GB 213GB 20,8GB ext4 5 213GB 231GB 18,4GB linux-swap(v1) swap 6 231GB 256GB 24,8GB ext4 Warnung: /dev/sr0 kann nicht zum Schreiben geöffnet werden (Das Dateisystem ist nur lesbar). /dev/sr0 wurde nur lesbar geöffnet. Modell: PLDS DVD-RW DA8AESH (scsi) Festplatte /dev/sr0: 275MB Sektorgröße (logisch/physisch): 2048B/2048B Partitionstabelle: loop Disk-Flags: Nummer Anfang Ende Größe Dateisystem Flags 1 0,00B 275MB 275MB udf karl@karl-Lenovo-IdeaCentre-510s-07ICK:~$ sh Code |