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

Hulu Desktop is now on Linux!!

This is not great news for most, but for all the linux users out there this is wonderful! Hulu Desktop is now on linux. Check out the lifehacker article or go directly to the download page. I know I've been waiting for this since they stopped supporting Boxee, no more browser viewing now I'm back to the full screen experience! YaY!!!

By the way, If anyone from Hulu reads this, you should really bring back the Boxee support. Thanx


My favorite Linux Commercial(for the moment)

I just had to share this one...



Gnome-Blog is AWESOME!

If you run ubuntu and you blog, you need gnome-blog. It works with other distro's but Im just saying...


This is actually my test run, I just installed it!!!


You can install it via apt (which i recommend or you can just get the source through their site). Once installed gnome-blog can be attached to your panel or any other way you would prefer.



Cron job to run a weekly Update & Upgrade

I've been running my own Linux server for a while and since there is no graphical interface, you don't really get a reminder to upgrade the system. Here is a link to a few methods describing how to get this done:AutoWeeklyUpdateHowto

Let me know if this works for you guys.


Update!!

I modified the script a little. I find that after some updates the server needs to be rebooted, so I just added the command to the script. Mine looks like this:

#!/bin/bash
apt-get update; apt-get upgrade -y; apt-get autoclean; shutdown -r now