Page 36 of 38

Re: Linux PowerPC Server Software

Posted: Sun Mar 24, 2024 3:26 pm
by xeno74
Old Puppet agent installed via the RubyGems package manager on openSUSE Tumbleweed 20170924 PPC64:

Image

Re: Linux PowerPC Server Software

Posted: Wed Mar 27, 2024 12:36 pm
by xeno74
Simple Puppet manifest for installing the new Arctic Fox 44.0 64-bit on Linux PPC64 (including facter and notify):

Image

Re: Linux PowerPC Server Software

Posted: Tue Apr 16, 2024 9:37 pm
by xeno74
Kernel 6.9-rc4 with LVM:

Image

Re: Linux PowerPC Server Software

Posted: Wed Apr 17, 2024 8:32 pm
by xeno74
Kernel 6.9-rc4 with LVM part2:

Image

Re: Linux PowerPC Server Software

Posted: Thu Apr 25, 2024 6:52 pm
by xeno74
Kernel 6.9-rc5 with LVM:

Image

Re: Linux PowerPC Server Software

Posted: Wed May 01, 2024 8:54 am
by xeno74
Hostname and FQDN configuration (openSUSE Tumbleweed 20230628-3 PPC64 with kernel 6.9-rc6):

Image

Re: Linux PowerPC Server Software

Posted: Sun May 12, 2024 9:06 am
by xeno74
If you use Visual Studio Code for Git then you can configure the GUI via the following file.

~/.config/Code/User/settings.json

or for VSCodium: ~/.config/VSCodium/User/settings.json

Code: Select all

{
    "editor.fontSize": 13,
    "scm.inputFontSize": 13,
    "terminal.integrated.fontSize": 13,
    "debug.console.fontSize": 13,
    "editor.minimap.sectionHeaderFontSize": 13,
    "window.zoomLevel": 2.5
}
You can zoom the GUI with CTRL+.

For Windows: %APPDATA%\Code\User\settings.json

Re: Linux PowerPC Server Software

Posted: Fri May 17, 2024 2:06 pm
by xeno74
xeno74 wrote: Sun May 12, 2024 9:06 am If you use Visual Studio Code for Git then you can configure the GUI via the following file.

~/.config/Code/User/settings.json

or for VSCodium: ~/.config/VSCodium/User/settings.json

Code: Select all

{
    "editor.fontSize": 13,
    "scm.inputFontSize": 13,
    "terminal.integrated.fontSize": 13,
    "debug.console.fontSize": 13,
    "editor.minimap.sectionHeaderFontSize": 13,
    "window.zoomLevel": 2.5
}
You can zoom the GUI with CTRL+.

For Windows: %APPDATA%\Code\User\settings.json

Image

Re: Linux PowerPC Server Software

Posted: Sun May 26, 2024 6:42 pm
by xeno74
Case statement for server lists:

Code: Select all

#!/bin/bash
for i in $(cat $server)
do
ssh -o ConnectTimeout=2 -o StrictHostKeyChecking=accept-new root@$i ' \
case $HOSTNAME in *zig*) echo "Zigotzky" ; case $HOSTNAME in d*) let zig_d=$zig_d+1 ;; t*) let zig_t=$zig_t+1 ;; r*) let zig_r=$zig_r+1 ;; p*) let zig_p=$zig_p+1 ;; esac ;; esac
echo "Zigotzky Tst: $zig_t / Dev: $zig_d / Ref: $zig_r / Prod: $zig_p" >> server_results.txt';
done

Re: Linux PowerPC Server Software

Posted: Wed Aug 28, 2024 9:05 pm
by xeno74
VirtIO-net: ethtool and iperf:

Image