LoginSignup
0
0

Lubuntu 24.04 LTS (Noble Numbat) セットアップメモ

Posted at

SSH サーバー起動

ココだけコンソールログイン。

sudo apt update
sudo apt -y install openssh-server
sudo systemctl status ssh -l
sudo systemctl enable ssh
sudo systemctl start ssh
sudo systemctl status ssh -l

sudo 実行時パスワード入力無効化

以降, SSH 接続で。

cd /etc; pwd
echo "%$(id -ng) ALL=(ALL) NOPASSWD: ALL" | sudo tee sudoers.d/$(id -ng)

一旦, 再ログインする。

パッケージインストール

途中の Postfix 設定は "設定なし" で OK.

sudo apt -y install xrdp fcitx-mozc git emacs screen

Firefox ESR インストール

↓ で 302 Found の Location を curl -LO する。

curl -I "https://download.mozilla.org/?product=firefox-esr-latest-ssl&os=linux64&lang=ja"
bunzip2 -c firefox-*esr.tar.bz2 | tar -xvf -
rm -iv firefox-*esr.tar.bz2
sudo mv -iv firefox /opt
cd /usr/local/bin; pwd
sudo ln -sv /opt/firefox/firefox .
cd; pwd

Nanum Gothic はダウンロード元 URL が分からなかったのでターミナル完結は面倒そう。

curl -LO "https://github.com/adobe-fonts/source-code-pro/releases/download/2.042R-u%2F1.062R-i%2F1.026R-vf/TTF-source-code-pro-2.042R-u_1.062R-i.zip"

unzip TTF-source-code-pro-2.042R-u_1.062R-i.zip
unzip Nanum_Gothic.zip -d Nanum_Gothic

rm -iv *.zip
sudo mv -iv TTF Nanum_Gothic /usr/local/share/fonts

sudo fc-cache -fv

git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d

どっとはらい。

0
0
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
0
0