The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Prepare Disk/pl"
(Created page with "Przed wykonaniem jakichkolwiek czynności na dyskach upewnij się, że partycjonujesz właściwy. Użyj komendy {{c|lsblk}}, aby wyświetlić listę wszystkich urządzeń blok...") |
(Created page with "{{UWAGA:|Jeżeli nie jesteś pewien który dysk jest który, możesz użyć polecenia {{c|lsblk -o MODEL,NAME,SIZE}} aby wyświetlić modele urządzeń przypisane ich nazw {{c...") |
||
Line 23: | Line 23: | ||
}} | }} | ||
{{ | {{UWAGA:|Jeżeli nie jesteś pewien który dysk jest który, możesz użyć polecenia {{c|lsblk -o MODEL,NAME,SIZE}} aby wyświetlić modele urządzeń przypisane ich nazw {{c|/dev/sd?}} a,b,c...}} | ||
Make sure you will not be overwriting any important data and that you have chosen the correct {{c|/dev/sd?}} device. Above, you can see that SATA disk {{c|sda}} contains three partitions, {{c|sda1}}, {{c|sda2}} and {{c|sda3}}, and that {{c|sda3}} contains LVM volumes. If you are using an NVME disk, then you may see {{c|nvem0n1}} as your disk, and your partitions (if any exist yet) will be named {{c|nvme0n1p1}}, {{c|nvme0n1p2}}, etc. If you are installing on microSD Card for Raspberry Pi, your disk will likely be {{c|mmcblk0}} and partitions will have suffixes {{c|p1}}, {{c|p2}}, etc. | Make sure you will not be overwriting any important data and that you have chosen the correct {{c|/dev/sd?}} device. Above, you can see that SATA disk {{c|sda}} contains three partitions, {{c|sda1}}, {{c|sda2}} and {{c|sda3}}, and that {{c|sda3}} contains LVM volumes. If you are using an NVME disk, then you may see {{c|nvem0n1}} as your disk, and your partitions (if any exist yet) will be named {{c|nvme0n1p1}}, {{c|nvme0n1p2}}, etc. If you are installing on microSD Card for Raspberry Pi, your disk will likely be {{c|mmcblk0}} and partitions will have suffixes {{c|p1}}, {{c|p2}}, etc. |
Revision as of 04:20, May 6, 2020
Przewodnik instalacji: Przygotowanie Dysku
Install Guide, Chapter 2 | < Prev | Next > |
W tej sekcji musisz wybrać format dysku używany do uruchomiania systemu (oraz partycjonowania) - MBR lub UEFI/GPT. Jeżeli nie znasz różnic pomiędzy nimi, przejrzyj naszą stronę Disk Formats, aby zapoznać się z opisem każdej z opcji i możliwych ograniczeń. Zasadniczo zwykle bezpieczniej jest wybrać starszą metodę MBR dla dysków systemowych o rozmiarze mniejszym niż 2 TB. Większość nowoczesnych systemów komputerowych obsługuje zarówno MBR, jak i rozruch z UEFI.
Ale na początku...
Przed wykonaniem jakichkolwiek czynności na dyskach upewnij się, że partycjonujesz właściwy. Użyj komendy lsblk
, aby wyświetlić listę wszystkich urządzeń blokowych w Twoim systemie, jak również partycji na tych urządzeniach blokowych:
root # lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 1.8T 0 disk ├─sda1 8:1 0 512M 0 part ├─sda2 8:2 0 8G 0 part [SWAP] └─sda3 8:3 0 1.8T 0 part ├─main-root 254:0 0 500G 0 lvm / └─main-data 254:1 0 1.3T 0 lvm /home
Make sure you will not be overwriting any important data and that you have chosen the correct /dev/sd?
device. Above, you can see that SATA disk sda
contains three partitions, sda1
, sda2
and sda3
, and that sda3
contains LVM volumes. If you are using an NVME disk, then you may see nvem0n1
as your disk, and your partitions (if any exist yet) will be named nvme0n1p1
, nvme0n1p2
, etc. If you are installing on microSD Card for Raspberry Pi, your disk will likely be mmcblk0
and partitions will have suffixes p1
, p2
, etc.
Once you've double-checked your target block device and made sure you'll be partitioning the correct disk, proceed to the next step.
Install Guide, Chapter 2 | < Prev | Next > |