Linux – tech-junky.com http://tech-junky.com Just another WordPress site Tue, 04 Jun 2019 16:30:42 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 Fedora 10 now available http://tech-junky.com/linux/fedora-10-now-available/?utm_source=rss&utm_medium=rss&utm_campaign=fedora-10-now-available Wed, 26 Nov 2008 16:30:41 +0000 http://tech-junky.com/linux/fedora-10-now-available/ Continue reading Fedora 10 now available]]>

It’s been six months since we saw the release of Fedora 9 and now it’s time to welcome the latest in the series – Fedora 10. The new version of this Linux-based OS packs in OpenOffice 3.0 and comes with an array of improvements in areas like networking, security, boot time and virtualization management.

If you are currently using Fedora, then it’s time for an update.

Download Fedora 10 | Release notes

Share It:
]]>
Monitor your CPU temperatures in Ubuntu http://tech-junky.com/tips-tricks/monitor-your-cpu-temperatures-in-ubuntu/?utm_source=rss&utm_medium=rss&utm_campaign=monitor-your-cpu-temperatures-in-ubuntu Fri, 10 Oct 2008 15:05:21 +0000 http://tech-junky.com/tips-tricks/monitor-your-cpu-temperatures-in-ubuntu/ Continue reading Monitor your CPU temperatures in Ubuntu]]>

One of the main things that concern power users are whether their PC components are running at appropriate temperatures or not. Since high temperatures can result in hardware failures or vice-versa, you need to keep a check. If you are running a Linux distro like Ubuntu , you can add CPU temperature displays to your Gnome desktop panel.

To do so, follow these steps:

1. Make sure you have the ‘universe’ repository enabled. To enable it, go to System > Administration > Software Sources and check the option for ‘universe’.

2. Install the lm-sensors and sensors-applet packages. You can either install them from the Synaptics Package Manager or through the terminal:

sudo apt-get install lm-sensors sensors-applet


3. Once you are over with the installation process, add the sensors applet to your desktop panel. To add it, right click on the panel and select ‘Add to Panel’. From the list, choose Hardware Sensors Monitor and click on ‘Add’.

If you do not see any temperatures being displayed, then it may be possible that lm-sensors does not support the sensors present in your machine. You can verify it by running the ‘sensors ‘ command in the terminal. It will tell you about the supported sensors available.

If you wish, you can download the source package from their site.

You may also like:

]]>
Download videos from YouTube in Ubuntu http://tech-junky.com/tips-tricks/download-videos-from-youtube-in-ubuntu/?utm_source=rss&utm_medium=rss&utm_campaign=download-videos-from-youtube-in-ubuntu Sun, 03 Aug 2008 15:05:08 +0000 http://tech-junky.com/tips-tricks/download-videos-from-youtube-in-ubuntu/ Continue reading Download videos from YouTube in Ubuntu]]>

Watching videos on YouTube is great fun. Loads of videos are uploaded everyday including music videos, movie trailers, T.V. shows etc. But what about saving your favorite videos on your hard drive? It’s easy if you use Windows as you can extract the videos from your web browser’s temporary internet files folder. But doing this work on a Linux distro like Ubuntu can be difficult for some people, especially for people who are new to Linux. It may seem uneasy but it’s not that hard.

You can make use of the commands in Ubuntu to save your videos. ‘youtube-dl‘ is a small command-line program to download videos from YouTube. Firstly, you will need to install ‘youtube-dl’ in Ubuntu.

To do so, give the following command at the terminal:

sudo aptitude install youtube-dl

Using youtube-dl is easy. Use youtube-dl followed by a YouTube video URL to download the video.

For example: youtube-dl “http://www.youtube.com/watch?v=xyz”

Here the video be saved to the file xyz.flv. Since YouTube videos are encoded in Flash Video format, their extension is .flv.


You can change the file name of a video using the -o option.

For example: youtube-dl -o myvideo.flv “http://www.youtube.com/watch?v=xyz”

In this case the video will be saved as myvideo.flv.

You may have noticed that some videos require you to login before playing them. It’s so because these videos have been flagged as containing mature content. To download such videos, you can pass the program the username and password for your YouTube account with the -u and -p parameters.

For example: youtube-dl -u yourusername -p yourpassword “http://www.youtube.com/watch?v=xyz”

Here you username is ‘yourusername’ and password is ‘yourpassword’.

Now you can download your favourite videos and save them on your hard drive on Ubuntu too. Keep them and play them whenever you want.

You may also like:

]]>