“人生苦短,我用Manjaro。”
安装后配置:https://www.jianshu.com/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
分区
选择Partition Disk进行分区,我使用的是cfdisk,用起来比较方便。
电脑配1个256G的SSD和1个1.8T的机械硬盘,我的分区如下:
挂载点 | 大小 | 格式 |
---|---|---|
/boot | 1G | FAT32 |
/ | 200G | Ext4 |
swap | 37.5G | Swap |
/home | 1.8T | Ext4 |
分区之后选择Mount Partitions,告诉你要在哪个分区上挂载目录。
在Mount Partitions时第一次Mount的是/路径(root路径)的分区,第二次Mount的是swap的分区,然后可以安装自己的需要Mount分区
选择Install Manjaro Desktop进行安装,选择Deepin桌面环境,回车到底即可。
然后选择Install Bootloader进入Grub安装
在Configure Base中填入基本信息,完成安装
目录树如下
Main Menu
|
├── Prepare Installation
| ├── Set Virtual Console
| ├── List Devices
| ├── Partition Disk #硬盘分区,使用cfdisk比较方便最后一点要选Write后输入yes
| ├── LUKS Encryption
| ├── Logical Volume Management
| ├── Mount Partitions #挂载分区,第一次是选择/挂载分区,第二次是选择swap挂载分区,其他根据自己需求
| ├── 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