Guys from RapidShare changes login screen frequently and together with different nonsense APIs, make difficult to get AUTH cookie needed to download via wget and other cmd line stuff. Specialized download script have to be modified in accordance with this modifications. On the other hand it seems that this simple method isn’t affected by these changes at all:
wget -c --auth-no-challenge --user=$USER --password=$PASS -i $FILE
I have found some of the following command very handy when worked with splitted archives:
- lxsplit – command-line file splitter/joiner. Good for splitted files with 000, 001, … suffixes.
- cksfv - command-line SFV checksum utility (aka. Simple File Verification). Lot of archives from the Windows world has this type of the checksum included.
- udpcast – tool for multi-casting files over the network.
Elf binary header can be printed by:
readelf -d /opt/googleearth/googleearth-bin | grep NEEDED
where in NEEDED are shown requested libraries.
Sometimes it’s useful to change access mode for all files or directories. This command will chmod all directories recursively:
find . -type d -exec chmod 755 {} \;
And this one all files:
find . -type f -exec chmod 644 {} \;
The way to mark more items, for example sms messages or emails which I want delete at once, is painful if you have to go to menu for each single item and choose Mark. You can do this quickly by holding # and pressing down/up cursor key.
For some stupid commercial reason Nokia has removed “Internet phone settings” menu from it’s last E-series models, allowing user only to download only setting for the Gizzmo service. To get access to setting in full scale it’s needy to install package name: SIP_VoIP_3_x_Settings_v2_0_en.sis
Than it’s possible to setup VoIP as you wish.
The Midnight Commander is a very handy file manager in the Unix-like system. For effective usage is useful to know some shortcuts. Read more…