Ubuntu: Trash can support on NTFS volumes
As Wyatt Smith said on https://answers.launchpad.net/ubuntu/+question/52985 :
To enable a trash can on a NTFS partition you will have to make an entry in your /etc/fstab file. You must specify the drive by UUID and assign a userid.
To discovery the UUID of the external drive. Please plug the drive in and then type
sudo blkidTo edit your fstab file with root permission
gksu gedit /etc/fstabHere is an example of how the entry should look. Please replace the UUID and mountpoint with the appropriate values from your system
# NTFS Partitions
UUID=19031A6158945892 /media/DATA ntfs-3g defaults,uid=1000,locale=en_US.UTF-8 0 0Save and exit.
To remount (unmount then mount) all drives listed in /etc/fstab
sudo umount -a
sudo mount -aYou should then see a hidden trash folder on your ntfs drive.
After this deletes are not permanent and they should be visible in the trash.
Annoying nonbreakable space character by accident
Have you noticed that when you press alt gr + space in terminal window, a non-breakable space character is outputted? It looks just like normal space but it prevents commands from working.
From example ‘[alt gr + space] ls’ cannot be interpreted but ‘[space] ls’.
Solution is to change keyboard behaviour:
From here
This feature can be configured in:
System
->Preferences
->Keyboard
->Layouts
->Layout options…
->Using space key to input non-breakable…
Change the setting to ‘usual space at any level’ setting.
Please note that this problem may not occur in some keyboard layouts.
Default terminal size in ubuntu
PPTP VPN connection from ubuntu
Connecting to windows pptp (VPN) server can be done from Ubuntu too! All you need is pptp-linux and network-manager-pptp packages.
After installing the packages, PPTP support is integrated nicely in the ubuntu UI. To see the VPN settings, click on the network icon in the tray bar and choose VPN Connections -> Configure VPN…
Gateway should be the ip address (or host name) of the vpn server. User name doesn’t have to contain the doman. I don’t like to use the password remember feature because then it is so easy to find out the password using the ’show password’ checkbox.
I found out that advanced settings need some adjustment for optimal performance. I disabled PAP and EAP authentication methods by unchecking them. I use Point-to-point encryption (MPPE) with 128bit security and allowing stateful encryption. I’ve also checked BSD, Deflate and TCP header data compression. Send PPP echo packets is also enabled.
Now we still need to configure routing settings for the vpn connection. Without configuring routing I found out that the connection was very slow when surfing the internet. Routing settings can be found from the IPv4 Settings tab and click “Routes…” button. I’ve added route with following properties:
address 192.168.1.0
netmask 255.255.255.0
gateway 192.168.1.1