Cześć jestem początkującym użytkownikiem linuxa.
Padło na najprostszą i ładną wersję Deppin.
Wszystko działa ok oprócz uprawnień dla dysków, wszystkie katalogi mam zablokowane.
Do montowania używam programu “Dyski”
Co w nim wpisać ??
Masz dwa systemy? Z Linuksa zaglądasz na dyski/partycje należące do Windows? Jeśli tak, to w sumie prawidłowy objaw, żebyś sobie krzywdy nie zrobił.
Nie, tylko linuks jest na laptopie.
Zainstalowany na ssd (na plikach systemowych też są kłódki), uruchomienie w trybie administratora też tego nie zmienia. Drugi dysk jest na dane w ntfs i na nim nie mogę zrobić zupełnie nic
Musisz wyłączyć na windowsie hibrenację poleceniem
powercfg.exe /hibernate off
Jak?? skoro nie mam windowsa??
Pokaż wynik komend - z konta użytkownika - każda osobno z użyciem tagów CODE
id
sudo blkid
sudo parted -l
cat /etc/fstab
michal@michal-PC:~$ id
uid=1000(michal) gid=1000(michal) grupy=1000(michal),7(lp),27(sudo),100(users),109(netdev),113(lpadmin),119(scanner),123(sambashare)
michal@michal-PC:~$ sudo blkid
[sudo] hasło użytkownika michal:
/dev/sda1: LABEL="EFI" UUID="E6C5-1CA4" TYPE="vfat" PARTLABEL="primary" PARTUUID="58ebb56e-f9d7-47c9-b7ac-795f4b13bc8b"
/dev/sda2: UUID="5f4b6ee3-5d44-45e0-aba1-2d7a072c498d" TYPE="swap" PARTLABEL="primary" PARTUUID="25d872b6-401c-4997-a0d2-7b223e512fb1"
/dev/sda3: LABEL="Root" UUID="fe11f5f2-81fe-4153-8543-bf8d76ee6c4e" TYPE="ext4" PARTLABEL="primary" PARTUUID="001adf98-cff9-4c7a-99c9-06c226e7c0e1"
/dev/sda4: LABEL="Home" UUID="77ba6cf6-7148-4cd1-9f81-77cecd2dcacc" TYPE="ext4" PARTLABEL="primary" PARTUUID="215f05e9-92a7-4985-9a80-034ae438e896"
/dev/sda5: LABEL="_dde_data" UUID="ba4e5884-a95d-41e0-92f1-72a37542e5fb" TYPE="ext4" PARTLABEL="primary" PARTUUID="48130559-8405-492f-b5e7-b89f06965d12"
/dev/sdb1: LABEL="MOJE" UUID="09FC195D09FC195D" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="b825bcfc-c036-11e8-abc1-28d2443efddc"
/dev/sdb2: LABEL="MEDIA" UUID="09FC1B1909FC1B19" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="b825bd03-c036-11e8-abc1-28d2443efddc"
michal@michal-PC:~$ sudo parted -l
Model: ATA LITEON IT N3-L21 (scsi)
Disk /dev/sda: 128GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 1049kB 316MB 315MB fat32 primary boot, esp
2 316MB 12,1GB 11,8GB linux-swap(v1) primary
3 12,1GB 35,3GB 23,2GB ext4 primary
4 35,3GB 81,7GB 46,4GB ext4 primary
5 81,7GB 128GB 46,4GB ext4 primary
Model: ATA ST1000LM024 HN-M (scsi)
Disk /dev/sdb: 1000GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 1049kB 323GB 323GB ntfs Basic data partition msftdata
2 323GB 1000GB 677GB ntfs Basic data partition msftdata
michal@michal-PC:~$ cat /etc/fstab
# /dev/sda3 LABEL=primary
UUID=fe11f5f2-81fe-4153-8543-bf8d76ee6c4e / ext4 rw,relatime,data=ordered 0 1
# /dev/sda4 LABEL=primary
UUID=77ba6cf6-7148-4cd1-9f81-77cecd2dcacc /home ext4 rw,relatime,data=ordered 0 2
# /dev/sda1 LABEL=primary
UUID=E6C5-1CA4 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
# /dev/sda2 LABEL=primary
UUID=5f4b6ee3-5d44-45e0-aba1-2d7a072c498d none swap defaults,pri=-2 0 0
Nie mam takiej opcji w “Disks”
Ma to związek w hibernacją pod windows.
Ale jak to wyłączyć skoro nie mam już windy?
No niestety nie ma kurcze,
Czy jak sformatuje dyski to pomoże?
Kiedyś na mint miałem podobnie, wystarczyło dodać jakiś parametr w programie disk, lecz było to dawno i nie pamietam
Spróbuj zamontować tę partycję z opcją recover
sudo mount -o recover /dev/sdb1 /mnt/
Poniżej cytat ze strony: https://wiki.deepin.org/wiki/Mount
Cytat
Why not mount Windows partition automatically during boot
Though many deepin users are also Windows users, deepin does not mount Windows partition automatically during boot, for the reason that:
- Since Windows 8, the quick start function are enabled by default, making “shutdown” similar to “hibernate”. Any changes written to Windows partition by Linux during hibernation will be lost when Windows is waked up
- The startup process will get stuck If any of the Windows partitions has error
- System may malfunction if Windows partitions are damaged or protected by encryption
If you really want to mount Windows partition during startup, then take your own risk and follow the instructions:
The first way:
- Disable “hybrid boot” in Windows, and make sure the partition you want to mount automatically has no error (please check it with chkdsk frequently);
- Open software “disks”, click that partition, then click the gear symbol below to launch “Edit Mount Options”;
- Uncheck the “Automatic mount options”, then check “Mount at startup” and “Show in user interface”, then click “OK”
Note: If partitions are not easy to recognized by their name, you can customize their names in “Display Name” field.
The second way:
We can use configuration tools for NTFS writing to automatically mount Windows partition. Execute in terminal:
sudo apt-get install ntfs-config
Configuration:
Launch “NTFS Configuration Tool”, then click the item you would like to enable or disable.
Caanot mount certain Windows partition
Please check for following causes:
- “Hybrid boot” functions should be disabled, and computer should be restart once
- Check if any data protection software exists
If the problem continues to exist, there might be something wrong with your partition table.
Cytat
Ja bym poszedł po bandzie i zmieniłbym właściciela plików i katalogów.
Jak to zrobić? Żeby przyniosło efekt?
Teraz kooiuje wszystko na dysk przenośny i sformatuje ten dysk pod linuxem