preload
Jul 28

There are serveral reports that Firefox (as well as Epiphany) is not able to upload files from a network-share on recent versions of Ubuntu. See Bug #279193 for example.

You can solve this by linking your ~/.gvfs directory to the bookmarks in nautilus.

Continue reading »

May 21

For some reason it may happen in Ubuntu Lucid (10.04) that your USB storage devices aren’t detected anymore.

The indeed _very_ strange solution is to turn off LEGACY FLOPPY SUPPORT in the BIOS setup. If you don’t have such a setting (i.e like my Dell Precision T3400) and don’t have any floppy drive either then try deactivating everything that refers to floppy drives in the BIOS setup.

May 12

A short (one line) script for linux that pings all clients on your network. If using another subnet than 192.168.0 then you have to adjust the numbers.

export i=0;
while [[ $((++i)) -le 254 ]];
do ping -c1 -w1 192.168.0.$i | grep ttl | cut -d " " -f4 | cut -d ":" -f1;
done;

Thanks to snipplr.com

Dec 08

Building VPN Connections from any Windows client against IPCop running Zerina is actually very straightforward. Doing that from a Ubuntu client is a little bit tricky since ubuntu’s network manager cannot handle Zerina’s .p12 (pkcs) files.

  • Install network-manager-openvpn using synaptic
  • I know it’s not linux style – but do a reboot know – just to insure that all services are running. I had no success with the next steps without rebooting. Or I’ve been too lazy searching for the services that needed a restart.
  • Download the .p12 file from IPCop or ask someone to do it for you.
  • Now you have to extract 3 certificate files out of your .p12 file.

    openssl pkcs12 -nocerts -in (filename).p12 -out userkey.pem
    openssl pkcs12 -nokeys -clcerts -in (filename).p12 -out usercert.pem
    openssl pkcs12 -nokeys -cacerts -in (filename).p12 -out userca.pem

    Or download that script and call it with pkcs2certs.sh your-username.p12 and it’ll create the required files for you.
  • Now place the files into your vpn configuration and make the settings match your zerina configuration (cipher, compression etc.)
Nov 20

Caps-Lock is (IMO) the most useless and annoying key. Since there doesn’t seem to be a GUI way for disabling just type the following in a terminal:

xmodmap -e “remove lock = Caps_Lock”

In order to make these changes permanent open your ~/.bashrc using

sudo nano ~/.bashrc

and add the line above