Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Peter Cooperx http://www.petercooper.co.uk/

« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS 

Mount an SMB / Samba share from the OS X command line

   1  mount_smbfs -W workgroup //user@SERVER/folder ./mntpoint

Installing libjpeg on OS X

Get http://www.ijg.org/files/jpegsrc.v6b.tar.gz, and then:

   1  tar zxvf jpegsrc.v6b.tar.gz
   2  cd jpeg-6b
   3  cp /usr/share/libtool/config.sub .
   4  cp /usr/share/libtool/config.guess .
   5  ./configure --enable-shared --enable-static
   6  make
   7  sudo make install
   8  sudo ranlib /usr/local/lib/libjpeg.a

Check your Mac notebook's battery statistics

   1  /usr/sbin/ioreg -p IODeviceTree -n battery -w 0 | grep IOBatteryInfo

or

   1  ioreg -l -w0 | grep -i IOBatteryInfo
« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS