Arch-Linux

在 Arch 中安裝 X

  • November 14, 2017

這應該是一個足夠普遍的任務。我剛剛安裝了 Archlinux。接下來,我安裝了openbox,令人驚訝地發現 X 不在它的依賴項中。所以我xorg-server按照wiki中的開頭行安裝。然而,

# startx
bash: startx: command not found

在我的 Debian 盒子上,

$ dpkg -S /usr/bin/startx
xinit: /usr/bin/startx

然而在拱形盒子上

pacman -S xinit
error: target not found: xinit

後來維基再次提到了/usr/bin/startx對我來說不存在的。我錯過了什麼?

來自Arch 維基

安裝xorg-xinit包,它同時提供xinitstartx和預設xinitrc配置文件

pacman -S xorg-xinit

過去,您必須使用pgkfile來搜尋失去的文件,現在您可以使用 pacman:

pacman -Fs startx

的等價物dpkg -S /path/to/filepacman -Qo /path/to/file。(pacman -S pkg安裝一個包)

引用自:https://unix.stackexchange.com/questions/404219