| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
2,251 バイト除去 、 2021年5月22日 (土) 17:48
=====14.4=====
*https://wiki.ubuntu.com/Chromium/Getting-Flash
====リモートデスクトップの導入====
*[https://linux.just4fun.biz/?Ubuntu/Windows%E3%81%8B%E3%82%89Ubuntu%E3%81%AB%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97%E6%8E%A5%E7%B6%9A%E3%81%99%E3%82%8B#e67117b7 参考]
*インストール
<pre>
$ sudo apt install -y xrdp
</pre>
*接続ユーザーでログインし、スクリプト実行(1)
<pre>
cat <<EOF > ~/.xsessionrc
export GNOME_SHELL_SESSION_MODE=ubuntu
export XDG_CURRENT_DESKTOP=ubuntu:GNOME
export XDG_DATA_DIRS=/usr/share/ubuntu:/usr/local/share:/usr/share:/var/lib/snapd/desktop
export XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
EOF
</pre>
*接続ユーザーでログインし、スクリプト実行(2)
<pre>
sudo sed -e 's/^new_cursors=true/new_cursors=false/g' -i /etc/xrdp/xrdp.ini
</pre>
*接続ユーザーでログインし、スクリプト実行(3)
<pre>
cat <<EOF | \
sudo tee /etc/polkit-1/localauthority/50-local.d/xrdp-color-manager.pkla
[Netowrkmanager]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device
ResultAny=no
ResultInactive=no
ResultActive=yes
EOF
</pre>
*接続ユーザーでログインし、スクリプト実行(4)
<pre>
sudo systemctl restart xrdp
sudo systemctl restart polkit
</pre>
 
=====xrdpでリモートデスクトップしたときの「カラープロファイルを作成するには認証が必要です」を消す=====
*https://tarufu.info/ubuntu_xrdp_color_profile/
<pre>
$ sudo vi /etc/polkit-1/localauthority.conf.d/02-allow-colord.conf
</pre>
*subject.isInGroup(“**”))の**にはxRDP からログインするユーザに割り当てているグループから適当なものを設定するようです。
<pre>
polkit.addRule(function(action, subject) {
if ((action.id == "org.freedesktop.color-manager.create-device" ||
action.id == "org.freedesktop.color-manager.create-profile" ||
action.id == "org.freedesktop.color-manager.delete-device" ||
action.id == "org.freedesktop.color-manager.delete-profile" ||
action.id == "org.freedesktop.color-manager.modify-device" ||
action.id == "org.freedesktop.color-manager.modify-profile") &&
subject.isInGroup("**")) {
return polkit.Result.YES;
}
});
<pre>
 
====.bash_profileを使用する====
*.bash_profileは読み込まれない。.profile は読み込まれる。

案内メニュー