formats

Cron Only Email Errors

Cron Only Email Errors | To have your trusty cron job only email errors, simply add this designation to the end of your cron entry: >/dev/null Example: */30 * * * * /usr/local/bin/myscript.pl >/dev/null Optional more geeky details: There are two different kinds of output from any given command. “>” is the same as issuing “1>” which is the non-error

formats

Install Ubuntu Linux on Chrome Cr-48

Published on December 13, 2010, by + in linux.

Install Ubuntu Linux on Chrome Cr-48 | Check out this excellent project which has scripted the process of getting Ubuntu onto your CR-48: http://cr-48-ubuntu.googlecode.com If you are up to more hacking, several have taken a leaked standard bios to then flash the CR-48 into a regular laptop.

formats

Quick Hping How-To

Quick Hping How-To | hping is an excellent networking tool that can be used to send a crafted packet over a specific port to test firewall settings. In this example, I’ll show you how to do quick firewall port testing using hping3. First, install hping! Ubuntu has the latest hping3: sudo apt-get install hping3 Ok, now let’s send a

formats

Watch YouTube Without Ads

Watch YouTube Without Ads | To watch YouTube videos without ads, commercials, and other annoyances, simply use the Chrome browser with this extension. This will enable the playback of videos in HTML5 and ad free. Sweet! PS: There are several other Chrome extensions that work similarly. If this particular one causes any trouble, try others. If you use Safari,

formats

Strip or Remove HTML Tags

Published on November 30, 2010, by + in linux, osx.

Strip or Remove HTML Tags | Here is how to easily strip or remove html tags from a file using sed. (View full post for proper syntax!) sed -e ‘s/]*>//g’ myfile.txt > myfilenew.txt This will strip tags from any sort of text file (html, csv, txt).

formats

Quick Preview of GIMP 2.8

Quick Preview of GIMP 2.8 | GIMP 2.8 is not far away on the horizon. I snatched a recent build from this excellent PPA to give it a spin. For some background, here are the release notes and open bugs. The main answer everyone wants to know: Yes GIMP 2.8 image processing is still 8 bit, though with GEGL 16 or

formats

Roku Open Ports

Published on November 24, 2010, by + in linux, other.

Roku Open Ports | Being the hackery-type that I am, I have been poking at my newly purchased Roku HD. It turns out there are four ports open on the Roku. 8080, 8085, 8086, and 8087. After different attempts, the only fun I could come to is that you can telnet to your Roku on port 8080. The other

formats

Extra Gimp Packages You Should Install

Published on November 23, 2010, by + in linux.

Extra Gimp Packages You Should Install | If you use the GIMP, you should also install these packages which are available in the Ubuntu repositories to provide more plugins and editing features for your gimp-fu. sudo apt-get install gimp-data-extras gimp-dcraw gimp-resynthesizer gimp-plugin-registry gimp-texturize Below are the copy / pasted descriptions with some brief details about each. gimp-data-extras This package contains extra brushes,

formats

Use du command to see file and folder sizes

Use du command to see file and folder sizes | How can I see the size of files and folders from the command line? Use the command du to quickly list sizes! A command I like to use is: du -hsc * This will provide a listing of file and folder sizes from your current working directory, including a total size amount at the bottom.

formats

Fix Drupal Upload Progress

Fix Drupal Upload Progress | Drupal and other software can take advantage of a nice upload progress bar. Here is how to get that working on CentOS. You may have seen this in Drupal. Let’s fix it! First, in CentOS 5 install these packages: yum install php-pear gcc make php-devel Next as root, issue: pecl install uploadprogress Once that completes,

Home Archive for category "linux" (Page 20)