“人生苦短,我用Manjaro?!?/p>
安裝后配置:http://www.itdecent.cn/p/8761912a1b01
下載Manjaro-architect 版
使用賬號manjaro和密碼manjaro登錄
連接Wifi
#查看wifi設備
nmcli
#連接Wifi
nmcli dev wifi connect <SSID name> password <your password>
切換國內鏡像
sudo pacman-mirrors -c China -b testing
安裝
setup
Prepare Installation
分區(qū)
選擇Partition Disk進行分區(qū),我使用的是cfdisk,用起來比較方便。
電腦配1個256G的SSD和1個1.8T的機械硬盤,我的分區(qū)如下:
| 掛載點 | 大小 | 格式 |
|---|---|---|
| /boot | 1G | FAT32 |
| / | 200G | Ext4 |
| swap | 37.5G | Swap |
| /home | 1.8T | Ext4 |
分區(qū)之后選擇Mount Partitions,告訴你要在哪個分區(qū)上掛載目錄。
在Mount Partitions時第一次Mount的是/路徑(root路徑)的分區(qū),第二次Mount的是swap的分區(qū),然后可以安裝自己的需要Mount分區(qū)
選擇Install Manjaro Desktop進行安裝,選擇Deepin桌面環(huán)境,回車到底即可。
然后選擇Install Bootloader進入Grub安裝
在Configure Base中填入基本信息,完成安裝
目錄樹如下
Main Menu
|
├── Prepare Installation
| ├── Set Virtual Console
| ├── List Devices
| ├── Partition Disk #硬盤分區(qū),使用cfdisk比較方便最后一點要選Write后輸入yes
| ├── LUKS Encryption
| ├── Logical Volume Management
| ├── Mount Partitions #掛載分區(qū),第一次是選擇/掛載分區(qū),第二次是選擇swap掛載分區(qū),其他根據自己需求
| ├── Configure Installer Mirrorlist #在進入setup前選國內的鏡像,不需要這個選項
│ └── Refresh Pacman Keys
|
├── Install Desktop System
│ ├── Install Manjaro Desktop #安裝桌面,首先選擇base和內核,然后選擇桌面
│ ├── Install Bootloader #安裝grub
│ ├── Configure Base #填入基本信息
| │ ├── Generate FSTAB #建議使用UUID
| │ ├── Set Hostname
| │ ├── Set System Locale
| │ ├── Set Desktop Keyboard Layout
| │ ├── Set Timezone and Clock #選擇Asia/Shanghai
| │ ├── Set Root Password
| │ └── Add New User(s)
| │
│ ├── Security and systemd Tweaks
| │ ├── Amend journald Logging
| │ ├── Disable coredump Logging
| │ └── Restrict Access to Kernel Logs
| │
│ ├── Review Configuration Files
│ └── Chroot into Installation
|
├── Install CLI System
│ ├── Install Base Packages
│ ├── Install Bootloader
│ ├── Configure Base
| │ ├── Generate FSTAB
| │ ├── Set Hostname
| │ ├── Set System Locale
| │ ├── Set Desktop Keyboard Layout
| │ ├── Set Timezone and Clock
| │ ├── Set Root Password
| │ └── Add New User(s)
| │
│ ├── Install Custom Packages
│ ├── Security and systemd Tweaks
| │ ├── Amend journald Logging
| │ ├── Disable coredump Logging
| │ └── Restrict Access to Kernel Logs
| │
│ ├── Review Configuration Files
│ └── Chroot into Installation
|
├── Install Custom System
│ ├── Install Base Packages
│ ├── Install Unconfigured Desktop Environments
| │ ├── Install Display Server
| │ ├── Install Desktop Environment
| │ ├── Install Display Manager
| │ ├── Install Networking Capabilities
| │ ├── Install Multimedia Support
| │ └── Install Custom Packages
│ ├── Install Bootloader
│ ├── Configure Base
| │ ├── Generate FSTAB
| │ ├── Set Hostname
| │ ├── Set System Locale
| │ ├── Set Desktop Keyboard Layout
| │ ├── Set Timezone and Clock
| │ ├── Set Root Password
| │ └── Add New User(s)
| │
│ ├── Install Custom Packages
│ ├── Security and systemd Tweaks
| │ ├── Amend journald Logging
| │ ├── Disable coredump Logging
| │ └── Restrict Access to Kernel Logs
| │
│ ├── Review Configuration Files
│ └── Chroot into Installation
|
└── System Rescue
├── Install Hardware Drivers
│ ├── Install Display Drivers
│ └── Install Network Drivers
|
├── Install Bootloader
├── Configure Base
│ ├── Generate FSTAB
│ ├── Set Hostname
│ ├── Set System Locale
│ ├── Set Desktop Keyboard Layout
│ ├── Set Timezone and Clock
│ ├── Set Root Password
│ └── Add New User(s)
│
├── Install Custom Packages
├── Remove Packages
├── Review Configuration Files
└── Chroot into Installation
引用:https://forum.manjaro.org/t/installation-with-manjaro-architect-iso/20429