Add serial console boot for Opensuse 15.5

While it works with UEFI boot using “legacy BIOS” the serial console works after grub has prompted the boot menu. But this might be too late e.g. in special cases like encrypted disk where grub needs to request the password.

KVM Guest has already been changed for serial support as outlined below in /etc/default/grub:

change to:

GRUB_TERMINAL="gfxterm serial"

add following line after theme definition:

GRUB_SERIAL_COMMAND="serial --unit=0 --speed=9600 --parity=no"
add console=ttyS0 to GRUB_CMDLINE_LINUX_DEFAULT

To apply changes run:

update-bootloader --refresh

Accessing console works:

virsh console --safe --force <guest_name>;
Share

Install qemu-guest-agent on Opensuse 15.5

Add repository and install manually

For openSUSE Tumbleweed run the following as root:

zypper addrepo https://download.opensuse.org/repositories/Virtualization/openSUSE_Tumbleweed/Virtualization.repo
zypper refresh
zypper install qemu-guest-agent

For 15.6 run the following as root:

zypper addrepo https://download.opensuse.org/repositories/Virtualization/15.6/Virtualization.repo
zypper refresh
zypper install qemu-guest-agent

For 15.5 run the following as root:

zypper addrepo https://download.opensuse.org/repositories/Virtualization/15.5/Virtualization.repo
zypper refresh
zypper install qemu-guest-agent
Share

Suse Repository for CAS

Adding up OSS repository for CAS med and app server-

Oss

The main repository, open source software only.

Version: 12.2http://download.opensuse.org/distribution/12.2/repo/oss/

Version: 12.1http://download.opensuse.org/distribution/12.1/repo/oss/

Version: 11.4http://download.opensuse.org/distribution/11.4/repo/oss/

Version: 11.3http://download.opensuse.org/distribution/11.3/repo/oss/

Version: 11.2http://download.opensuse.org/distribution/11.2/repo/oss/

Version: 11.1http://download.opensuse.org/distribution/11.1/repo/oss/

Version: 11.0http://download.opensuse.org/distribution/11.0/repo/oss/

Read more

Share

XRDP in OpenSuse 11.0/11.2/11.3

This tutorial is for advanced users who prefer to skate all the detail that attaches to a "new user" Tutorial. The details (wherein lies the devil) are here: Windows Linux RDP Remote Desktop Connections using openSUSE as Client or Server (terminal server) FWIW there's also an 11.1 version there.

Tested in openSUSE 11.2 KDE & Gnome 32 & 64 bit. In 11.3 I tested KDE & Gnome 64 bit and KDE 32 bit.
There are 4 simple steps

Step 1: Download and install the software

This link contains the RPMs. They work for openSUSE 11.2 and 11.3. Drill down to either the 32 bit i586 RPMs or the 64 bit x86_64 RPMs and download one each of these RPMs: xorg-x11-server-dmx, xorg-x11-server-rdp and xrdp. There are dependency issues to cater for so put the three in a folder anywhere and add that folder as a "local directory" in Yast's –> Software –> Repositories module. Install all three. That's for the server. If you need the client, you also install the RPM for rdesktop from your standard media.

Step 2: Open the firewall

GoTo Yast's firewall module –> Allowed Services –> Select –> Remote Desktop Protocol –> Add.

Step 3: Start the service

If you want the service on permanently goto Yast –> System –> Services / Runlevels –> xrdp –> Enable
If you want the service occasionslly, enable it with "sudo /usr/sbin/rcxrdp start" and turn it off with "sudo /usr/sbin/rcxrdp stop".

Step 4: Port Forwarding

Go to your router by http:// and forward port TCP 3389 to the server IP address.
 

Share