Category: Uncategorized

  • Installing monodoc on FreeBSD

    I don’t have any idea if mono-tools is still supported package, but its build is badly broken at least on FreeBSD. Anyway, the only tool I find really useful there is monodoc, which luckily can be installed manually like this: After all this you should be able to start monodoc from command line (or to…

  • Managing user groups on FreeBSD

    Group creationpw groupadd name-of-group To add users to grouppw groupmod name-of-group -m username1,username2,…,usernameNNOTE: usernames in list are separated only by comma, you can’t add space too.

  • 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.