Category: Uncategorized
-
How to prevent driver from attaching to hardware in FreeBSD
Add something along the lines hint.hdac.0.disabled=1 to the /boot/loader.conf hdac being hardware you want to prevent driver from attaching to, 0 being its unit.
-
Where GNOME 2 stores mouse configuration
In directory ~/.gconf/desktop/gnome/peripherals/mouse
-
How to make Compiz play nice with Nvidia
After you update your OS and you forgot about this little quirk edit /usr/local/bin/compiz-manager and change line sayingINDIRECT=”no”toINDIRECT=”yes” UPDATE (2014-11-15):Apparently this also depends on nvidia driver, so I am trying to keep the list of those I know work correctly, and those I know don’t work correctly. Working: 331.67, 331.113Not working: 340.46, 343.22 (works most…
-
How to create proxy using ssh
You can create SOCKS proxy using ssh by runningssh -D port login@serverreplace port with port number you want proxy to appear on your local machine, in web browser choose SOCKS for proxy type, localhost for proxy server and same port as port in command above.
-
How to create user and grant privileges on MySQL
grant all privileges on db.* to ‘user’@’host’ identified by ‘password’;
-
How to flush DNS cache on windows
Execute ipconfig /flushdns on command prompt