Ubuntu/Debian/Mint news and tutorials | Linux gaming
facebook.png
twitter.png
feed.png
Quick Tip
Disable Overlay Scrollbars in GNOME
gsettings set com.canonical.desktop.interface scrollbar-mode normal
Quick Tip
Find Files Containing a Text Pattern
find . -iname "*.txt" -exec grep -l "hello" {} +
Categories
Online Readers
Advertise on TuxArena
Linux Cheat Sheet

Have a look at our Linux Cheat Sheet for quick one-liners, commands and tips.

Find Files Containing a Text Pattern

find . -iname “*.txt” -exec grep -l “hello” {} +

Create a Bootable USB from an ISO Image

sudo dd if=/path/to/image.iso of=/dev/sdX bs=4096k

Replace /dev/sdX with your USB device, for example, /dev/sdb.

Disable Overlay Scrollbars in GNOME

gsettings set com.canonical.desktop.interface scrollbar-mode normal

Changes should occur instantly. The overlay scrollbars should now be replaced with normal scrollbars. This method works for Ubuntu 12.10 and above.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.