- 1. 概要
- 2. Mageia
- 3. NomaBSD
- 4. Ubuntu
- 5. 参考サイト
1. 概要
「Mageia」では、「VirtualBox」上で動作していて「Guest Additions」も動作しているのに、ホストの仮想スクリーンのリサイズが効かない。
仕方ないので、「autostart」で設定します。
あらかじめ、グラフィックログインして、端末を開いて
xrandr
で、設定可能な、解像度と「VGA」の名称を確認しておく必要があります。
2. Mageia
sh
cat << 'EOF' >> ~/.config/openbox/autostart
xrandr --output Virtual1 --mode 1360x768
EOF
exit
3. NomaBSD
sh
cat << 'EOF' >> ~/.config/openbox/autostart
xrandr --output VGA-0 --mode 1366x768
EOF
exit
4. Ubuntu
「Lubuntu」上の「Openbox」では。
cat << 'EOF' >> ~/.config/openbox/autostart
xrandr --output default --mode 1366x768
EOF
5. 参考サイト
本ページは、「Google」大先生を参考にさせていただきました。
|
|