hogyan alakítsunk át egy ISO fromátumban mentett fájlt UTF8-ra:
iconv --from-code=ISO-8859-2 --to-code=UTF-8 iso.txt > utf-8 txt

fájékeresés
find / -mount -name fileneve

fájlok tartalmában keresés
grep -r "tartalom amit keressek" .

windows megosztás felcsatolása:

Egy kis samba, avagy windows felcsatolása, és mivel néha megszűnnek a linkek…
Mégegy leirás a megosztások felcsatolásáról, illetve a parám :-)

sudo apt-get install samba
sudo apt-get install smbfs
sudo apt-get install smbclient
First, edit your /etc/hosts file and give the Windows machine a name:
192.168.1.2 pootie
Next, install the samba and smbfs packages using your method of choice.
Create a directory where the share will appear on your local filesystem.
$ sudo mkdir /mnt/music
Edit /etc/fstab and add a line for the mount. Here “pootie” is the name of the machine and “music” is the name of the share.
//pootie/music /mnt/music cifs exec,credentials=/etc/cifspw 0 0
Create a password file /etc/cifspw with the login credentials for your Windows account.
username=Jason
password=ImNotGonnaTellYouThat
And secure the file:
$ sudo chmod 600 /etc/cifspw
Giddyup.
$ sudo mount -a

debug, ha gond van:
dmesg | tail

Még egy kis segítség