LoginSignup
1
3

More than 5 years have passed since last update.

Ubuntuの初期設定

Posted at
ifconfigのインストール
apt-get install net-tools
pingのインストール
apt-get install iputils-ping
manのインストール
apt-get install manpages-ja
apt-getの使い方
# パッケージの検索
apt-cache search <パッケージ名>
# パッケージの削除
apt-get --purge remove
beep音の停止
vi  /etc/modprobe.d/pcspkr.conf
# 以下のテキストを追記
blacklist pcspkr
ディレクトリ名の文字化け対策
export LANG='ja_JP.UTF-8'
文字コードUTF-8固定化
vi ~/.bashrc
# 以下を追記
export LANG=ja_JP.UTF-8
export LANG
wgetのインストール
apt-get install wget
Noto Sans CJKのインストール
wget https://ja.osdn.net/downloads/users/9/9930/NSCJKaR.tar.xz
tar xavf NSCJKaR.tar.xz
rm NSCJKaR.tar.xz
wget https://ja.osdn.net/downloads/users/10/10745/fonts.conf
mkdir -p ~/.local/share/fonts/ ~/.config/fontconfig/
mv fonts.conf ~/.config/fontconfig/
mv NSCJKaR/ ~/.local/share/fonts/
wineのインストール
apt-get install apt-file
apt-file update
apt-file search add-apt-repository
apt-get install software-properties-common

add-apt-repository ppa:wine/wine-builds
dpkg --add-architecture i386
apt-get update

apt-get install wine
ウィルスバスターのインストール
apt install clamav
Google Chromeのインストール
sudo wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
apt-get install libpango1.0-0

sudo vim google.list
# 1行だけ記載されているので、それをコメントアウトする
1
3
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
1
3