[Ubuntu Natty] Transfer files to Transformer TF101

Thursday, May 26, 2011
4 意見
Currently, the TF101 has been treated as MTP instead of UMS when connects to PC.
And there're two ways I found to transfer files into to its internal storage.

Reference: [Guide] Mount Internal Storage in Ubuntu

By gmtp
$ sudo apt-get install gmtp
By mtpfs
1. $ lsusb (find out vendorId of your device)
Bus 001 Device 007: ID 0b05:xxxx ASUSTek Computer, Inc.
2. add 'SUBSYSTEM=="usb", ATTR{idVendor}=="0b05", MODE="0666"' to
/etc/udev/rules.d/95-android.rules

3. $ sudo apt-get install mtpfs
4. $ sudo mkdir /media/TF101
5. $ sudo chown user.user /media/TF101
6. add 'mtpfs /media/TF101 fuse user,noauto,allow_other 0 0' to /etc/fstab
7. uncomment 'user_allow_other' in /etc/fuse.conf

Reboot and have fun.

[Ubuntu Natty] Make active tab in GNOME terminal more prominent

Thursday, May 19, 2011
0 意見
The active tab in newly Ubuntu Natty was hard to distinguish from each others.
Let's try to make it more prominent!

Steps:
1. create ~/.gtkrc-2.0
2. copy&paste the following content into ~/.gtkrc-2.0
style "gnome_terminal_notebook"
{
fg[NORMAL] = "#00ff00"
bg[NORMAL] = shade (1.25, "#3c3b37")
}

widget "*TerminalWindow.*.GtkNotebook*" style "gnome_terminal_notebook"


And remember to logout/login to make new settings take effect.

References: http://askubuntu.com/questions/40332/how-to-make-selected-tab-in-terminal-more-prominent

[Ubuntu Natty] Disable Overlay Scrollbars

0 意見
This article was originally posted at "http://ubuntu4beginners.blogspot.com/2011/04/disable-overlay-scrollbars-in-ubuntu.html"

If you don't like the new overlay scrollbars, try the following steps

$ sudo apt-get remove overlay-scrollbar
$ sudo su
$ echo "export LIBOVERLAY_SCROLLBAR=0" > /etc/X11/Xsession.d/80overlayscrollbars


and reboot. You're all set!