
Linux PowerPC Server Software
Re: Linux PowerPC Server Software
Simple Puppet manifest for installing the new Arctic Fox 44.0 64-bit on Linux PPC64 (including facter and notify):


Re: Linux PowerPC Server Software
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
You can zoom the GUI with CTRL+.
For Windows: %APPDATA%\Code\User\settings.json
~/.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
}
For Windows: %APPDATA%\Code\User\settings.json
Re: Linux PowerPC Server Software
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
You can zoom the GUI with CTRL+.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 }
For Windows: %APPDATA%\Code\User\settings.json

Re: Linux PowerPC Server Software
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