Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

Wednesday, July 11, 2012

Installing a Laser Printer on Linux

HL2270DW - Brother Laser Printer Installation in few seconds. No drivers to Install

Used the URI I used was: ipp://$IP/pcl_p1 and the driver I chose was "Generic PCL Laser Printer" with the Duplex option checked. And it's worked perfectly since then!! How awesome is that.

Wednesday, February 29, 2012

RhodeCode - Awesome Mercurial Management Tool (Including User Management)

Apache Configuration



    ServerName yourservername
    ErrorLog /var/log/httpd/namedserver-error_log
    CustomLog /var/log/httpd/namedserver-access_log common
    WSGIDaemonProcess pylons user=apache group=root processes=1 \
    threads=4 \
    python-path=/usr/lib/python2.6/site-packages/
    WSGIScriptAlias / /var/www/vhosts/servername/rhodecodewsgi/dispatch.wsgi
    WSGIPassAuthorization On


Ldap Configuration:

User Management:


General Usage Process:

Wednesday, October 14, 2009

Unique BootID in Linux

# cat /proc/sys/kernel/random/boot_id
91cbd9c4-8a68-4d14-8193-8486417410d1

Gives you the random unique boot for every boot. If you application would like to see whether you system has rebooted or not, you can check with this value.

Hope it helps.