jeltsch's blog

Mounting of vfat partitions and accession privilege management mapping (fstab, vfat, umask, fmask, dmask, users)

Old Windows (i.e. fat partitions) are no problem for Linux. advanced installers like Yast automatically recognize them and make them available under Linux. However, sometimes the accession privileges are not as you need them. In order to make a fat partition (un)mountable to all users and make every file/directory +rwx for everybody, the fstab needs to look like this: /dev/hda2 /media/windows/E vfat defaults,users,uid=500,gid=100,umask=000 0 0 Additionally Linux owner 500 and group 100 mapped as an for all files.

Tunneling of remote X11 output to a local machine behind a firewall (ssh, X11, ForwardX11)

If X11 forwarding is globally disallowed in your local machine, you need to override this by editing ~/.ssh/config: Host hostname.domain.org ForwardX11 yes Then you just ssh into the remote machine hostname.domain.org: ssh -X username@hostname.domain.org And execute some program that outputs to X11, e.g.: xclock &

Pages