This shows you the differences between two versions of the page.
— |
software:switch:opensuse [2019/06/13 15:27] (current) chris created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== openSUSE Tumbleweed ===== | ||
+ | * https://nowardev.wordpress.com/2017/03/06/rotate-virtual-terminal-desktopmanager-xdisplay/ | ||
+ | * http://download.opensuse.org/ports/aarch64/factory/images/ SuSE images | ||
+ | <code> | ||
+ | # suse has by default no symlink to default.target in /etc/systemd/system . | ||
+ | # It runs the graphical target by default, you need to create the | ||
+ | # link for the plain multiuser target | ||
+ | ln -s /usr/lib/systemd/system/multi-user.target \ | ||
+ | /etc/systemd/system/default.target | ||
+ | | ||
+ | # We also need to setup rc-local compat | ||
+ | ln -s /usr/lib/systemd/system/rc-local.service \ | ||
+ | /etc/systemd/system/multi-user.target.wants/rc-local.service | ||
+ | | ||
+ | # Also, no /etc/rc.local, but: | ||
+ | mv /etc/rc.local /etc/init.d/boot.init | ||
+ | # We can use the same rc.local/boot.init code as for Fedora. | ||
+ | # By default, Suse tries to start wicked and NetworkManager. | ||
+ | # So if you copy your wlan file to | ||
+ | # /etc/NetworkManager/system-connections/ , you are fine. | ||
+ | |||
+ | # then, start the image, login and.. | ||
+ | |||
+ | hostnamectl set-hostname switch.local | ||
+ | zypper update | ||
+ | zypper install xvkbd qsynergy rss-glx | ||
+ | |||
+ | # X can be started, but pointer detection and screen are not aligned. | ||
+ | # Be sure to _not_ use kernel option fbcon=rotate:X to have them aligned. | ||
+ | |||
+ | rpm -ql rss-glx|grep bin | ||
+ | # these screensavers are usable for me | ||
+ | </code> |