7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ArchLinuxで色々インストールしてみた

Last updated at Posted at 2014-10-13
好みのパッケージをインストール
pacman -S \
  xorg-server xorg-xinit xorg-xrdb xf86-video-intel xterm rxvt-unicode ttf-sazanami \
  slim awesome \
  ntp vlc ranger \
  w3m tig w3m \
  unzip unrar \
  zsh screen \
  docker lxc \
  xf86-video-vesa xf86-input-vmmouse xf86-video-vmware

Xの設定

~/.Xresources
XTerm*utf8              : 1
XTerm*locale            : true
XTerm*selectToClipboard : true
XTerm*faceName          : 'Sazanami Gothic'
XTerm*faceSize          : 13
XTerm*cjkWidth          : true
XTerm*background        : black
XTerm*foreground        : white
XTerm*saveLines         : 2000
XTerm*geometry          : 100x30+500+200
~/.xinitrc
if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
  done
  unset f
fi

xrdb ~/.Xresources
xterm &
exec awesome
awesome
mkdir ~/.config/
cp -a /etc/xdg/awesome/ ~/.config/

sed -ie 's/"Mod4"/"Mod1"/' ~/.config/awesome/rc.lua
# Mod4(Windowsキー)がない場合、Mod1(Altキー)に置換。
/etc/X11/xorg.conf.d/10-keyboard.conf
Section "InputClass"
    Identifier       "Keyboard Defaults"
    MatchIsKeyboard  "yes"
    Option           "XkbLayout" "jp"
EndSection
/etc/slim.conf
default_user vagrant
auto_login yes
  • systemctl enable slim
/etc/inputrc
set bell-style none
  • ログインしなおすと端末のbeep音無効が確認できる。

色々インストールしてみた

Gnome3

pacman -Sy xf86-video-intel gdm gnome-extra freerdp gnome-terminal gnome-tweak-tool
systemctl start gdm

docker

docker
systemctl start docker
systemctl enable docker
docker pull ubuntu

kvm

pacman -Sy virt-manager qemu libvirt dnsmasq dmidecode ebtables
pacman -Sy tigervnc

virtualbox

pacman -Sy packer
pacman -Sy virtualbox{,-guest-iso,-ext-vnc,-host-dkms} net-tools linux-headers qt4
sudo dkms autoinstall

packer-io

yaourt packer-io

vagrant

pacman -Sy vagrant

cinnamon

  • cinnamonはgnome3のフォーク。
  • -geometry 1366x768ではなく-geometry 1360x768というところがミソ
pacman -Sy cinnamon cinnamon-desktop tigervnc ttf-sazanami gnome-terminal
vncserver :1 -geometry 1360x768
export DISPLAY=:1
cinnamon-session-cinnamon2d

google-chrome

packer google-chrome ttf-google-fonts-git

その他

不要なキャッシュのクリア

pacman -Scc

カーネルが認識しているハードウェア一覧

lspci -k
7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?