nixCraft Linux Sys Admin Blog |
| Free / Open-source Television Software for Linux Desktop Systems Posted: 10 Apr 2008 04:44 PM CDT Personally, I use tvtime - a high quality television application. Most apps allows you scheduling a TV program for recording with a TV tuner, and burn to DVDs. Some program also support rss feed for TV program schedule. Jun Auza has published a nice list of open-source television software:
Related Posts:
© Free / Open-source Television Software for Linux Desktop Systems - nixCraft - Support nixCraft when you shop at amazon. Thanks! |
| nsupdate Dynamic DNS Update Utility for Linux / UNIX Posted: 10 Apr 2008 04:23 PM CDT nsupdate is really cool tool. nsupdate is used to submit Dynamic DNS Update requests as defined in RFC2136 to a name server. This allows resource records to be added or removed from a zone without manually editing the zone file. A single update request can contain requests to add or remove more than one resource recored. => Using the dynamic DNS editor: nsupdate Related Posts:
© nsupdate Dynamic DNS Update Utility for Linux / UNIX - nixCraft - Support nixCraft when you shop at amazon. Thanks! |
| Posted: 10 Apr 2008 06:59 AM CDT The technology behind the World Wide Web, the Hypertext Transfer Protocol (HTTP), does not make any distinction of types of links -- all links are functionally equal. Resources may be located on any server at any location. Linking to an image stored on another site increases the bandwidth use of that site even though the site is not being viewed as intended. The complaint may be the loss of ad revenue or changing the perceived meaning through an unapproved context. Here is easy and simple way to stop hotlinking : #### stop image hijacking (anti-hotlinking) $HTTP["referer"] =~ ".*BADDOMIN\.com.*" { url.access-deny = ( "" ) # url.access-deny = ( "jpg", "png", "js", "jpeg", "gif" ) } You can also enforce password protection: $HTTP["referer"] =~ ".*BADDOMIN\.com.*" { auth.require = ( "/" => ( "method" => "digest", "realm" => "Authorized users only", "require" => "valid-user" ) ) } Restart lighttpd: Related Posts:
© Stop Hotlinking with Lighttpd - nixCraft - Support nixCraft when you shop at amazon. Thanks! |
| Debugging Tip: Trace the Process and See What It is Doing with strace Posted: 10 Apr 2008 06:22 AM CDT strace is a useful diagnostic, instructional, and debugging tool. It can save lots of headache. System administrators, diagnosticians and trouble-shooters will find it invaluable for solving problems with programs for which the source is not readily available since they do not need to be recompiled in order to trace them. This is also useful to submit bug reports to open source developers. Each line in the trace contains the system call name, followed by its arguments in parentheses and its return value. Run strace against /bin/foo and capture its output to a text file in output.txt:
Refer to strace man page for more information: Related Posts:
© Debugging Tip: Trace the Process and See What It is Doing with strace - nixCraft - Support nixCraft when you shop at amazon. Thanks! |
| You are subscribed to email updates from nixCraft Linux Sys Admin Blog To stop receiving these emails, you may unsubscribe now. | Email Delivery powered by FeedBurner |
| Inbox too full? | |
| If you prefer to unsubscribe via postal mail, write to: nixCraft Linux Sys Admin Blog, c/o FeedBurner, 20 W Kinzie, 9th Floor, Chicago IL USA 60610 | |
No comments:
Post a Comment