Linux PowerPC Server Software

AmigaOne X5000 platform specific issues related to Linux only.
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

legacy-ssh-enabler

Allow your newer OpenSSH client and server to talk with older SSH clients and servers, system-wide.

legacy-ssh-enabler
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

IP Virtual Server IPVS (Load Balancer for a cluster of two or more real servers)

Download kernel: github.com

Image
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

IPVS part2 with modules-load/ip_vs.conf and sysctl.conf:

Image
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

IPVS part3 with runit service:

Image
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

bash-5. 1# cat /etc/sv/ipvs/run

Code: Select all

#!/bin/sh
exec /bin/bash -c  "/sbin/ipvsadm-restore < /root/ipvsadm.conf && /sbin/iptables-restore < /root/iptables.conf"
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

Runit and Systemd service file:

Image
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

xeno74 wrote: Fri Dec 04, 2020 3:02 pm XRDP:

Code: Select all

sudo apt-get install xrdp

Code: Select all

sudo vi /etc/xrdp/startwm.sh
/etc/xrdp/startwm.sh:

Code: Select all

#!/bin/sh

if [ -r /etc/default/locale ]; then
  . /etc/default/locale
  export LANG LANGUAGE
fi
#xrdp multiple users configuration 
 xfce4-session


. /etc/X11/Xsession
Image
The XRDP remote session can be disconnected without closing the programs. After logging in again, the programs are still running. :-)

systemctl status xrdp.service

vim /etc/xrdp/startwm.sh:

fvwm2
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

xeno74 wrote: Fri Jan 24, 2020 12:44 pm openSUSE Tumbleweed PPC64 with the Squid caching proxy server 5.0.1:

Image
Minimal squid.conf:

Code: Select all

http_access allow all
http_port 3128
cache_dir ufs /usr/local/var/cache/squid 1024 16 256
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

Settings for proxy server in a shell and pc direct connection with auto MDI-X (ethtool):

Image
User avatar
xeno74
Posts: 10701
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Re: Linux PowerPC Server Software

Post by xeno74 »

Proxy server settings for installing packages on Ubuntu:

Code: Select all

root@Ubuntu:~# export http_proxy='http://192.168.178.20:3128'

Code: Select all

root@Ubuntu:~# export https_proxy='https://192.168.178.20:3128'
Post Reply