February 24, 2011Tech Getting Brew to Update Outdated I like Brew, It has packages that Macports does not. However the command line is missing a great option from Macports, port […]
February 21, 2011Tech Server Admin 10.6.6 Server and Certs in Dovecot For some reason Server admin from 10.6.6 screws the dovecot config file up. Make sure you Certificate has NO spaces in the […]
February 18, 2011Tech File associations in Mac OS X File associations are stored under the com.apple.LaunchServices domain. From the link above, you can see the list with this command: defaults read […]
February 12, 2011Tech Hackstor repo http://hackstor.blogspot.com/2010/03/hackstore-repo.html http://drachennetz.com/HackStor
February 9, 2011June 2, 2011Tech Using find command to process file names with spaces To process the output of find with a command, try as follows: find . -print0 | while read -d $’\0′ file do echo […]
February 8, 2011February 18, 2011Tech Jailbreak 4.2.1 ios Greenpois0n has been released that jailbrakes all ios 4.2.1 devices. However I tried over 20 time to jailbreak an iPad on a […]
February 6, 2011February 6, 2011Tech Demux .ts into MOV Using FFMpeg ffmpeg -i dw.ts -vcodec copy -sameq -acodec copy -f mov output.mov -threads 4 or for MKV output ffmpeg -i dw.ts […]
February 2, 2011May 12, 2011Tech Reset Kerberos On Clients This is needed when imaged macs are to be bound to AD, as there KDC ID’s will all be the same ! […]
January 31, 2011January 31, 2011Tech Changing the Default User Name for AFP Connections When you use the Connect to Server command in the Finder to connect to an AFP server, the login panel populates your […]
January 17, 2011January 17, 2011Tech Installing AWSTATS on Mac OS X Installing AWSTATS on Mac OS 10.5 Leopard
January 16, 2011January 24, 2011Tech Handbrake Folder Little App that uses the HandbrakeCLI and Cocoadialog to process a folder full of video files into AppleTV 1 format in High […]
January 15, 2011Tech New Builds Of Handbrake Crashing ATV As of this HandBrake svn commit and its corresponding Nightly Build, HandBrake is no longer overriding x264′s default of b-pyramid being on. Previously HandBrake […]
January 11, 2011Tech Remote GUI login via Apple Remote Desktop Using Apple Remote Desktop, send the following UNIX Command to as many machines as you like to log them in. I suggest […]
January 10, 2011January 10, 2011Tech 10.5.8 ASUS servering 10.6 Updates Have a read :- 10.5.8 Server serve 10.6 updates
January 7, 2011January 7, 2011Tech Reset Apple PHD Filesync Remove the .Filesysc folder on BOTH the users home folder on there mac and on there network home folder
January 6, 2011May 12, 2011Tech Mpeg2 .TS with FFMpeg ffmpeg -i rtsp://tributary.rave.ac.uk/splintergrouplive.sdp -acodec libmp3lame -ac 1 -vcodec libx264 -s 320×240 -level 30 -vpre slow -crf 22 -threads 0 -f mpegts – […]
December 14, 2010May 12, 2011Tech Mpeg2 .TS segment #!/bin/sh rm -rf /abc/* /Applications/VLC.app/Contents/MacOS/VLC rtsp://tributary2.rave.ac.uk/floor0.sdp –intf dummy –sout-transcode-audio-sync –sout=’#transcode{vcodec=h264,venc=x264{aud,profile=baseline,level=30,keyint=30,bframes=0,ref=1,nocabac},acodec=mp4a,ab=56,deinterlace}:duplicate{dst=std{access=file,mux=ts,dst=-}}’ | mediastreamsegmenter -O -b http://127.0.0.1/abc/ -f /abc/ -t 10 -s 4 -D