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
Showing posts with label ubuntu. Show all posts
Showing posts with label ubuntu. Show all posts
Gnome-Blog is AWESOME!
2
comments |
This entry was posted on Monday, July 28, 2008
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
0
comments |
This entry was posted on Sunday, July 13, 2008
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:
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
