X のインストール

# pacman -S xorg-server xorg-xinit xorg-xclock xterm
ドライバのインストール

何をインストールするか決めて、例えば

# lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
# pacman -S xf86-video-intel

gnome のインストール

# pacman -S gnome gnome-extra
.xinitrc
#! /bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)

if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
  done
  unset f
fi

#
exec gnome-session
#
# ...or the Window Manager of your choice
#
# exec cinnamon
# exec awesome
# exec startkde
# exec startxfce4

Return

Aug/02/2017 AM 08:15