- copy it with dd, or unetbootin.
- run ./boot/Linux_Wifislax_Boot_Installer.com
- when it fails with "error while loading shared libraries: libdevmapper.so.1.02: cannot open shared object file: No such file or directory".
- ln -s /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 /usr/lib/libdevmapper.so.1.02
- rerun ./boot/Linux_Wifislax_Boot_Installer.com
- Audit!
domingo, 27 de noviembre de 2016
Install Wifislax 4.12
Putting wifislax in a usb stick is a bit unlike most other distros.
martes, 22 de noviembre de 2016
TIL: Oneliner http endpoint
Today I was looking for some 'Taco Bell' way to create an http endpoint in a server that would output very basic stats about the server.
In this stackoverflow thread I found a pretty neat way to do it.
Nice, eh?
In this stackoverflow thread I found a pretty neat way to do it.
while true ; do nc -l -p 1500 -c 'echo -e "HTTP/1.1 200 OK\n\n $(lsof -a -p $(pgrep myprocname) | wc -l)"'; done
Nice, eh?
Suscribirse a:
Entradas (Atom)