本体構成
型番:GM2070C701B-J-W2B
OS : Windows 10 Home 64bit
CPU: インテル®Core™️ i7-8700 processor(6コア 3.2GHz、最大4.6GHz)
GPU: NVIDIA® GeForce RTX™️ 2070 GDDR6 8GB 256-bit
映像端子: DisplayPort 1.4×2 HDMI 2.0b×1 DVI-D×1
メモリ: 16GB DDR4-2666 (8GB×2)
ストレージ: 240GB NVMe M.2 SSD 2TB 2.5インチ SATA HDD
ネットワーク: Gigabit LAN×2 802.11ac Wi-Fi Bluetooth 5
入出力端子: USB 3.1×4、USB 3.0×1、USB Type-C 3.0×1 マイク端子
ヘッドフォン端子 SDカードリーダ×1
本体寸法(幅×奥行き×高さ): 136mm×260.8mm×258.8mm
本体重量: 4.05Kg (ACアダプタ除く)
電源: 460W / (230W ACアダプタ DC 19.5V-11.8A)×2
Device系
無線LAN Intel Wireless AC 9260有効化
フルインストールを選択してインストールしてやれば、
特に何もしなくてもOKだった。
便利設定
プライベートLAN内をhost名でアクセスする
これを実施すると、.localでアクセスできる。
apt-get install avahi-daemon
自分のホスト名の変更
vi /etc/hostname
/etc/hosts
127.0.0.1 localhost
127.0.1.1 ninjaslayer
xrdp導入
aptでxrdpだけインストールするとxorgxrdpが入っていなかった。
なので下記でインストール。
sudo apt install xserver-xorg-core xorgxrdp xrdp
color managerの認証をキャンセル
これをやらないと認証画面でパスワードを何度入れても接続できなかった。
/etc/polkit-1/localauthority.conf.d/02-allow-colord.confの削除
もし、/etc/polkit-1/localauthority.conf.d/02-allow-colord.confが存在していれば削除
以下のファイルを作成します。
sudo vi /etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla
内容
[Allow Colord all Users]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile
ResultAny=no
ResultInactive=no
ResultActive=yes
サービス再起動
sudo systemctl restart polkit.service
XRDPを使うとアイコンとDockが消える
GNOME Tweak toolをインストールし適切な設定を行うことでアイコンとDockを復活させることが可能
sudo apt update
sudo apt install gnome-tweak-tool
GUI POWEROFF RESTART時のAuthentication無効化
下記polkit-1内に設定ファイルを追加。
Permissionでcdできなくなっているため、su -等で侵入。
/etc/polkit-1/localauthority/50-local.d/allow_all_users_to_shutdown_reboot_suspend.pkla
[Allow all users to shutdown]
Identity=unix-user:*
Action=org.freedesktop.login1.power-off-multiple-sessions
ResultAny=yes
[Allow all users to reboot]
Identity=unix-user:*
Action=org.freedesktop.login1.reboot-multiple-sessions
ResultAny=yes
[Allow all users to suspend]
Identity=unix-user:*
Action=org.freedesktop.login1.suspend-multiple-sessions
ResultAny=yes
[Allow all users to ignore inhibit of shutdown]
Identity=unix-user:*
Action=org.freedesktop.login1.power-off-ignore-inhibit
ResultAny=yes
[Allow all users to ignore inhibit of reboot]
Identity=unix-user:*
Action=org.freedesktop.login1.reboot-ignore-inhibit
ResultAny=yes
[Allow all users to ignore inhibit of suspend]
Identity=unix-user:*
Action=org.freedesktop.login1.suspend-ignore-inhibit
ResultAny=yes