I’ve recently joined the computational effort of Folding@Home for disease research, I want to share some of the modifications I’ve done to run it in Fedora more comfortably.
Continue reading Installing and configuring Folding@Home in Fedora
I’ve recently joined the computational effort of Folding@Home for disease research, I want to share some of the modifications I’ve done to run it in Fedora more comfortably.
Continue reading Installing and configuring Folding@Home in Fedora
I’m experiencing kernel panics in a headless Raspberry Pi with Fedora 29 Server and need a way to capture what is happening.
First I tried to enable kdump, but this doesn’t seem possible. If someone has done it, I’d like to hear.
What I’m using now, is enabling netconsole to log all the kernel messages over the network to a rsyslog server. This is the config in the Pi:
/etc/modules-load.d/netconsole.conf:
netconsole
/etc/modprobe.d/netconsole.conf:
options netconsole netconsole=4444@10.0.0.1/eth0,20514@10.0.0.2/00:11:22:33:44:55
From the netconsole documentation:
netconsole=[+][src-port]@[src-ip]/[],[tgt-port]@/[tgt-macaddr]
where
+ if present, enable extended console support
src-port source for UDP packets (defaults to 6665)
src-ip source IP to use (interface address)
dev network interface (eth0)
tgt-port port for logging agent (6666)
tgt-ip IP address for logging agent
tgt-macaddr ethernet MAC address for logging agent (broadcast)
And in the rsyslog server:
/etc/rsyslog.d/pi-remote.conf:
$ModLoad imudp $RuleSet remote if $fromhost-ip=='10.0.0.1' then /var/log/remote/pi-netconsole.log & stop $InputUDPServerBindRuleset remote $UDPServerRun 20514 $RuleSet RSYSLOG_DefaultRuleset
/etc/logrotate.d/remote-netconsole:
/var/log/remote/*.log
{
copytruncate
rotate 30
daily
missingok
dateext
notifempty
delaycompress
compress
maxage 31
postrotate
/usr/bin/systemctl kill -s HUP rsyslog.service >/dev/null 2>&1 || true
endscript
}
# firewall-cmd --add-port=20514/udp # firewall-cmd --add-port=20514/udp --permanent
I’ve used this documentation:
https://fedoraproject.org/wiki/Netconsole
https://www.kernel.org/doc/Documentation/networking/netconsole.txt
https://michael.stapelberg.de/posts/2013-09-16-remote_syslog/
EDIT 03/02/2019:
I just realized there is a netconsole-service package you can install and provides an easy configuration file and service unit:
/etc/sysconfig/netconsole
# This is the configuration file for the netconsole service. By starting # this service you allow a remote syslog daemon to record console output # from this system. # The local port number that the netconsole module will use # LOCALPORT=6666 # The ethernet device to send console messages out of (only set this if it # can't be automatically determined) # DEV= # The IP address of the remote syslog server to send messages to SYSLOGADDR=10.0.0.2 # The listening port of the remote syslog daemon SYSLOGPORT=20514 # The MAC address of the remote syslog server (only set this if it can't # be automatically determined) SYSLOGMACADDR="00:11:22:33:44:55"
# systemctl enable netconsole # systemctl start netconsole
With this recipe I have installed a VM in Google Compute Engine with an all-in-one OpenStack setup for testing purposes.
To set the window title in tmux or screen to the hostname you are connecting by ssh, add this to your ~/.bashrc:
settitle() {
printf "\033k$1\033\\"
}
ssh() {
local sshargs=("$@")
local do_settitle=1
tty -s || local do_settitle=0
if [ "${TERM:0:6}" != "screen" ]; then
local do_settitle=0
fi
if [ $do_settitle -eq 1 ]; then
if [ "$1" == "-l" ]; then
shift 2
fi
settitle "$*"
fi
command ssh "${sshargs[@]}"
if [ $do_settitle -eq 1 ]; then
settitle "bash"
fi
}
Everyday is harder to manage old hardware or access outdated intranet websites because the browser security is tighter with every release. Many appliances use unsigned Java applets or insecure ciphers and protocols.
My first solution to this problem was to have a Windows VM in my laptop with old versions of everything: Firefox, Java, Flash… but running the VM in my underpowered laptop was too slow and made the system sluggish.
Here I describe how to run an old Firefox instance with an old Java.
Continue reading Configure an instance of old versions of Java and Firefox
With this recipe we will create a wireless access point in our laptop to share our wired Internet connection. This is quite useful where you only have a wired Internet connection (e.g. my work place) for giving access to your phone.
This is done in Fedora 25 Workstation with NetworkManager.
Continue reading Internet connection sharing with NetworkManager
I’ve successfully monitored a Salicru SPS SOHO+ UPS with NUT following these steps.
In this example I have two Fedora servers, a master where the UPS is connected by USB and a client which is also powered by this UPS but monitors its status by network. With the default configuration the clients will be powered down in an outage when the battery reaches critical levels.
To improve my system’s security, I’ve configured Steam to be run as a different Linux account. This guide is inspired in this thread.
Continue reading Sandbox Steam running it under a different account
Voy a describir cómo configurar un router neutro con la conexión a Internet FTTH de Orange en España. El router en cuestión tiene el sistema pfSense basado en FreeBSD.
Continue reading Configuración de router pfSense con Internet de fibra Orange
Hoy me ha llegado el aviso de que me iba a caducar el certificado de la FNMT, y en el proceso de renovación me obligaban a autenticarme con el DNIe, por lo que he tenido que repasar todo este tema.
La última vez que lo usé, tuve que compilar a mano los módulos de OpenDNIe y hacer unos cuantos malabares. Por fortuna, parece que la integración del proyecto con opensc ha dado sus frutos y no he tenido que usar ningún tipo de magia negra esta vez.
Continue reading Hacer funcionar el DNIe (Spanish electronic ID card) en Fedora 23