minfaox3
記事52
タグ17
カテゴリ0

アクセス数

  • 集計期間:24/03/29~

記事のアーカイブ

ArchLinux GUI環境構築

ArchLinux GUI環境構築

ArchLinux GUI環境構築 新年あけましておめでとうございます。
ということでこの前の記事で言ったArchLinuxのGUI環境を構築します。
私は下記リンクで学びました。

How to Install Cinnamon Desktop ( GUI ) in Arch Linux | LinuxHelp Tutorials
Cinnamon is a desktop environment with modern graphical effects. It supports most of the GUI like wallpapers, icons, toolbars and desktop widgets. Its desktop environments includes a set of integrated applications and utilities. Installation of GUI (Cinnamon Desktop) is discussed in this article.

英語がわからない人はたくさんのゴミアプリケーションを入れることになるので気をつけましょう。 その人たちのためにそのページを日本語訳と注釈をいれながら書きます。 システムその他の更新をします。

1
pacman -Syu

X環境のインストールです。(これがGUI環境の始まりです)

1
2
3
pacman -S xorg-server xorg-xinit mesa
pacman -S xorg-twm xterm xorg-xclock
pacman -S xf86-video-vmware

では起動しましょう。

1
startx

なんかいっぱい出てきましたね。(出てきてない人はもっかいコマンドを見直しましょう) 出てきた白い画面の数だけ下のコマンドを使用します。(多分3回)

1
exit

ではまぁここはわかりやすい(と私は思う)CinnamonというWindowManagerを入れましょう。

1
pacman -S cinnamon

ファイルマネージャーも一緒に入れましょう。(Windowsでいうエクスプローラー)

1
pacman -S nemo-fileroller

ディスプレイマネージャーもいれます。

1
pacman -S gdm

有効にします。

1
systemctl enable gdm

起動です。

1
systemctl start gdm

パスワード画面のSignInの左の歯車をクリックしてCinnamonを選びましょう。 ではサインインしてターミナルを開けましょう。 Ctrl+Alt+Tで開きます。 次にネットワーク環境です。

1
pacman -S net-tools network-manager-applet

有効にします。

1
systemctl enable NetworkManager

起動です。

1
systemctl start NetworkManager

さぁさぁ便利なアプリケーションをインストールです。(自分がほしいものだけ入れましょう) オーディオ,ビデオ関係です。

1
pacman -S pulseaudio pulseaudio-alsa pavucontrol a52dec faac faad2 flac jasper lame libdca libdv libmad libmpeg2 libtheora libvorbis libxv wavpack x264 gstreamer gst-editing-services gst-plugins-bad gst-plugins-base gst-plugins-base-libs gst-plugins-good gst-transcoder phonon-qt5-gstreamer gst-python xvidcore

好きなオーディオアプリケーションを入れましょう。 おすすめは有名なVLCです。

1
pacman -S vlc

ターミナルです。

1
pacman -S gnome-terminal

インターネットブラウザ関係です。

1
pacman -S firefox flashplugin

メーラーです。

1
pacman -S thunderbird

メモ帳です。

1
pacman -S gedit

システムモニター。

1
pacman -S gnome-system-monitor

DVD,CDに焼くやつ。

1
pacman -S xfburn

PDFも編集できちゃうオフィスです。

1
pacman -S libreoffice

テーマです。

1
pacman -S numix-themes

グラフィカルなモニタリングツール。

1
pacman -S libgtop

プログラミングできちゃう。(CとC++オンリー)

1
pacman -S qtcreator

Windowsのexeが実行できる素晴らしいものですよー。

1
pacman -S wine wine-gecko wine_mono

yaourtを入れましょう(AURにあるパッケージがインストールできます) 下記リンクのMethod 1を行いましょう。 How to install and Use Yaourt In Arch Linux – Mozilla Firefox yaourtは開発が終了しました。 yayを使用してください. 以下はyayを入れないとできません。 インストールメディアなどの作成がとってもよくできるものです。

1
yay -S etcher

有名所のgoogle-chromeです。

1
yay -S google-chrome

学生の皆さんは無料で使える便利なWeb開発できるものです。

1
yay -S intellij-idea-ultimate-edition
投稿日:2019年01月01日
更新日:2020年03月02日
投稿者: minfaox3
本文リンク: https://minfaox3.net/2019/01/01/20190101/

×