» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with to + Ubuntu

Switching to OS X, Obstacle 4: Python and friends

Obstacle 4: Python and friends

Posted in linux, mac, plone, python, ubuntu   Tagged: os x, switching to mac   

Zope: Planet Zope

Howto get the rt2870 Wifi 802.11abgn chipset to work with Intrepid Ibex

Install build-essential (This may not be needed so try the next steps without build-essential first).


sudo apt-get install build-essential

Create a directory in for example your home directory to keep all the files.

cd ~/

mkdir rt2870

cd rt2870

Now retrieve the driver

wget http://www.ralinktech.com.tw/data/drivers/2008_0925_RT2870_Linux_STA_v1.4.0.0.tar.bz2

Extract the compressed driver directory and files.

tar xvfj 2008_0925_RT2870_Linux_STA_v1.4.0.0.tar.bz2

Enter the directory and edit the config.mk file so that the driver will support NetworkManager

nano os/linux/config.mk

Change the following part

# Support Wpa_Supplicant

HAS_WPA_SUPPLICANT=n

# Support Native WpaSupplicant for Network Magang

HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n

to this

# Support Wpa_Supplicant

HAS_WPA_SUPPLICANT=y

# Support Native WpaSupplicant for Network Maganger

HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y

Compile and install.

sudo make

sudo make install

Edit the Ralink settings file to your liking.

sudo nano /etc/Wireless/RT2870STA/RT2870STA.dat

This is what mine looks like without the passwords and accesspoint.

#The word of "Default" must not be removed

Default

CountryRegion=5

CountryRegionABand=7

CountryCode=SE

ChannelGeography=1

SSID=*REMOVED*

NetworkType=Infra

WirelessMode=5

Channel=1

BeaconPeriod=100

TxPower=100

BGProtection=0

TxPreamble=0

RTSThreshold=2347

FragThreshold=2346

TxBurst=1

PktAggregate=0

WmmCapable=1

AckPolicy=0;0;0;0

AuthMode=WPA

EncrypType=TKIP

WPAPSK=*REMOVED*

DefaultKeyID=1

Key1Type=0

Key1Str=

Key2Type=0

Key2Str=

Key3Type=0

Key3Str=

Key4Type=0

Key4Str=

PSMode=CAM

FastRoaming=0

RoamThreshold=70

APSDCapable=0

APSDAC=0;0;0;0

HT_RDG=1

HT_EXTCHA=0

HT_OpMode=1

HT_MpduDensity=4

HT_BW=1

HT_BADecline=0

HT_AutoBA=1

HT_BADecline=0

HT_AMSDU=1

HT_BAWinSize=64

HT_GI=1

HT_MCS=33

HT_MIMOPSMode=3

IEEE80211H=0

TGnWifiTest=0

WirelessEvent=0

I think the important part of my changes is this.

AuthMode=WPA

This was what I had to change to make the driver work with NetworkManager.

Now make the driver load at bootup

sudo nano /etc/modules

and add this line to the the file.

alias ra0 rt2870sta

My /etc/modules looks like this.

# /etc/modules: kernel modules to load at boot time.

#

# This file contains the names of kernel modules that should be loaded

# at boot time, one per line. Lines beginning with "#" are ignored.

fuse

lp

sbp2

#ndiswrapper

uinput

alias ra0 rt2870sta

# Added for Nero Linux device access

sg

Add an ugly fix to make the ra0 interface come up during each boot.

sudo nano /etc/init.d/rc.local

and add these lines to the end of the file

ifconfig ra0 inet up

sudo /etc/init.d/NetworkManager restart

Reboot and it should work. It did for me.

Ubuntu: OnlyUbuntu Tutorials

Howto get the rt2870 Wifi 802.11abgn chipset to work with Intrepid Ibex

Install build-essential (This may not be needed so try the next steps without build-essential first).


sudo apt-get install build-essential

Create a directory in for example your home directory to keep all the files.

cd ~/

mkdir rt2870

cd rt2870

Now retrieve the driver

wget http://www.ralinktech.com.tw/data/drivers/2008_0925_RT2870_Linux_STA_v1.4.0.0.tar.bz2

Extract the compressed driver directory and files.

tar xvfj 2008_0925_RT2870_Linux_STA_v1.4.0.0.tar.bz2

Enter the directory and edit the config.mk file so that the driver will support NetworkManager

nano os/linux/config.mk

Change the following part

# Support Wpa_Supplicant

HAS_WPA_SUPPLICANT=n

# Support Native WpaSupplicant for Network Magang

HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n

to this

# Support Wpa_Supplicant

HAS_WPA_SUPPLICANT=y

# Support Native WpaSupplicant for Network Maganger

HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y

Compile and install.

sudo make

sudo make install

Edit the Ralink settings file to your liking.

sudo nano /etc/Wireless/RT2870STA/RT2870STA.dat

This is what mine looks like without the passwords and accesspoint.

#The word of "Default" must not be removed

Default

CountryRegion=5

CountryRegionABand=7

CountryCode=SE

ChannelGeography=1

SSID=*REMOVED*

NetworkType=Infra

WirelessMode=5

Channel=1

BeaconPeriod=100

TxPower=100

BGProtection=0

TxPreamble=0

RTSThreshold=2347

FragThreshold=2346

TxBurst=1

PktAggregate=0

WmmCapable=1

AckPolicy=0;0;0;0

AuthMode=WPA

EncrypType=TKIP

WPAPSK=*REMOVED*

DefaultKeyID=1

Key1Type=0

Key1Str=

Key2Type=0

Key2Str=

Key3Type=0

Key3Str=

Key4Type=0

Key4Str=

PSMode=CAM

FastRoaming=0

RoamThreshold=70

APSDCapable=0

APSDAC=0;0;0;0

HT_RDG=1

HT_EXTCHA=0

HT_OpMode=1

HT_MpduDensity=4

HT_BW=1

HT_BADecline=0

HT_AutoBA=1

HT_BADecline=0

HT_AMSDU=1

HT_BAWinSize=64

HT_GI=1

HT_MCS=33

HT_MIMOPSMode=3

IEEE80211H=0

TGnWifiTest=0

WirelessEvent=0

I think the important part of my changes is this.

AuthMode=WPA

This was what I had to change to make the driver work with NetworkManager.

Now make the driver load at bootup

sudo nano /etc/modules

and add this line to the the file.

alias ra0 rt2870sta

My /etc/modules looks like this.

# /etc/modules: kernel modules to load at boot time.

#

# This file contains the names of kernel modules that should be loaded

# at boot time, one per line. Lines beginning with "#" are ignored.

fuse

lp

sbp2

#ndiswrapper

uinput

alias ra0 rt2870sta

# Added for Nero Linux device access

sg

Add an ugly fix to make the ra0 interface come up during each boot.

sudo nano /etc/init.d/rc.local

and add these lines to the end of the file

ifconfig ra0 inet up

sudo /etc/init.d/NetworkManager restart

Reboot and it should work. It did for me.

Ubuntu: Only Ubuntu

Move WUBI Ubuntu Install to an external USB drive

In the following tutorial, we show you how to move your existing Wubi Ubuntu install to an external USB drive. This enables you to take your Wubi install of Ubuntu with you. Moreover, because Wubi is using loopfiles (files that once mounted, act as partitions), the remaining NTFS partitioned drive space is still completely usable [...]

User:malforme: Pen Drive Linux

Howto Add The Trash to Your Ubuntu Desktop

If you are a new person to linux, just coming from Windows or if you want the trash applet on your desktop, then you will like this tutorial. This is on how to add the trash icon to your Ubuntu desktop:

* Run in terminal: gconf-editor
* enter your password into the "Password For...." area
* Navigate apps \ nautilus \ desktop
* On the right side, you will see an option named "trash_icon_visible"
* Check the box next to the above said option
* exit out of gconf-editor, remember to save your work before you leave

Thats it, you should now see a big bin on your desktop, similar to the gnome-panel applet icon. I am sure this will help anyone transition from Windows to Ubuntu.

Ubuntu: OnlyUbuntu Tutorials

Howto Add The Trash to Your Ubuntu Desktop

If you are a new person to linux, just coming from Windows or if you want the trash applet on your desktop, then you will like this tutorial. This is on how to add the trash icon to your Ubuntu desktop:

* Run in terminal: gconf-editor
* enter your password into the "Password For...." area
* Navigate apps \ nautilus \ desktop
* On the right side, you will see an option named "trash_icon_visible"
* Check the box next to the above said option
* exit out of gconf-editor, remember to save your work before you leave

Thats it, you should now see a big bin on your desktop, similar to the gnome-panel applet icon. I am sure this will help anyone transition from Windows to Ubuntu.

Ubuntu: Only Ubuntu

Howto Schedule Bittorrents to Automatically Download in Ubuntu

Ever wondered if you could schedule your torrent downloads to occur in those times when you are not using you computer, when you know that there will be more people online sharing the file your downloading, or perhaps during the off-peak times of your Internet plan Well this tutorial is for you.


1. We need to make sure that the relevant software is installed on our system. To do this we start up Synaptic Package Manager

System → Administration → Synaptic Package Manager

and search for 'bittorrent'. Select 'bittorrent' from the options and click 'Apply' to install it with all of its dependencies. If you've already got bittorrent installed then it will already be selected in the list and you won't need to perform this step.

2. Next we need to create the directory that we will download our torrents into. You can use any directory that you have permission to use for this this but a sub-directory in your home directory will often make things easier. For this tutorial I will be using a sub-directory in the user's home directory called 'torrents'. To create this directory simply navigate to your home directory

Places → Home Folder

right click on some empty space and select 'Create Folder'. Name this folder 'torrents'.

3. To automate the task of downloading torrents, and stopping the downloads at an appropriate time, we are going to create some very simple bash scripts (For more on bash scripts see here). We will use the familiar graphical text editor gedit for this task.

In your home folder right click some empty space and select

'Create Document' → 'Empty File'

Name this file 'bittorrentstart'. Perform this task again to create another file and call this one 'bittorrentstop'. You can place these files anywhere you like, perhaps in a directory called 'scripts', but this tutorial will assume they are in your Home directory.
Double click the file 'bittorrentstart' to open it and paste in the following information


#!/bin/sh
# Start Downloading Torrent Files!
cd
nohup btlaunchmany /home/Your_User_Name/torrents/ > torrent.log &
tail -f torrent.log

Make sure you change the 'Your_User_Name' to your user-name. Save this file, open 'bittorrentstop' and paste in the following information

#!/bin/bash
# Stop Downloading ALL Torrent Files!
killall btlaunchmany


4. The second part of automating the downloading of torrents is to tell our computer when to execute the start script and execute the stop script. To do this we use a tool called cron . To make the editing of cron entries simple we are going to create a text file that we will edit in gedit (like the bash scripts above) and then append it to our cron entries.

While in your Home directory right click on some empty space and select

'Create Document' → 'Empty File'

Name this file 'cron.txt'. Double click this file to open it and enter in the following information


# Start BitTorrent Download Script
05 02 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh
# Stop ALL BitTorrent Downloads Script
55 11 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstop.sh

Be sure to enter your user-name in the required fields. This setup will start the download start script at 2:05am and start the download stop script at 11:55am. These values will likely not suit you so you need to alter them. To understand the format of cron entries picture five asterisks at the start followed by your command. Something like the following

* * * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh

The first asterisk represents minutes, the second hours, the third days of the month, the fourth is the month, and the fifth the day of the week. The allowed syntax is

minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or the month names)
day of week 0-7 (0 or 7 is Sun, or use the weekday names)

Save this file and start up your terminal emulator

Applications → Accessories → Terminal

Enter in the following command

crontab cron.txt

To verify that this was entered into your cron entries properly enter in the following command

crontab -l

5. Now that we've installed the relevant applications and told the computer to execute the appropriate tasks at the appropriate times all we need to do is save our *.torrent files into the bittorrent directory we created earlier and wait. At the appropriate times they will be downloaded into their own sub-directory without you even being aware.

6. In the bittorrentstart script we created earlier there is a command to create a log file. This file records the activity of the torrent downloads. This file, called 'torrent.log', will be found in your Home directory. You can simply open this file to check on the status of your downloads. A sample line from this log file is

/home/Your_User_Name/torrents/torrent_name: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M [18:10:07 76%]
All: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M

What all of these entries mean is beyond the scope of this tutorial but you can easily recognise your connection speed and the percentage finished of your torrent downloads.

Ubuntu: OnlyUbuntu Tutorials

Howto Schedule Bittorrents to Automatically Download in Ubuntu

Ever wondered if you could schedule your torrent downloads to occur in those times when you are not using you computer, when you know that there will be more people online sharing the file your downloading, or perhaps during the off-peak times of your Internet plan Well this tutorial is for you.


1. We need to make sure that the relevant software is installed on our system. To do this we start up Synaptic Package Manager

System → Administration → Synaptic Package Manager

and search for 'bittorrent'. Select 'bittorrent' from the options and click 'Apply' to install it with all of its dependencies. If you've already got bittorrent installed then it will already be selected in the list and you won't need to perform this step.

2. Next we need to create the directory that we will download our torrents into. You can use any directory that you have permission to use for this this but a sub-directory in your home directory will often make things easier. For this tutorial I will be using a sub-directory in the user's home directory called 'torrents'. To create this directory simply navigate to your home directory

Places → Home Folder

right click on some empty space and select 'Create Folder'. Name this folder 'torrents'.

3. To automate the task of downloading torrents, and stopping the downloads at an appropriate time, we are going to create some very simple bash scripts (For more on bash scripts see here). We will use the familiar graphical text editor gedit for this task.

In your home folder right click some empty space and select

'Create Document' → 'Empty File'

Name this file 'bittorrentstart'. Perform this task again to create another file and call this one 'bittorrentstop'. You can place these files anywhere you like, perhaps in a directory called 'scripts', but this tutorial will assume they are in your Home directory.
Double click the file 'bittorrentstart' to open it and paste in the following information


#!/bin/sh
# Start Downloading Torrent Files!
cd
nohup btlaunchmany /home/Your_User_Name/torrents/ > torrent.log &
tail -f torrent.log

Make sure you change the 'Your_User_Name' to your user-name. Save this file, open 'bittorrentstop' and paste in the following information

#!/bin/bash
# Stop Downloading ALL Torrent Files!
killall btlaunchmany


4. The second part of automating the downloading of torrents is to tell our computer when to execute the start script and execute the stop script. To do this we use a tool called cron . To make the editing of cron entries simple we are going to create a text file that we will edit in gedit (like the bash scripts above) and then append it to our cron entries.

While in your Home directory right click on some empty space and select

'Create Document' → 'Empty File'

Name this file 'cron.txt'. Double click this file to open it and enter in the following information


# Start BitTorrent Download Script
05 02 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh
# Stop ALL BitTorrent Downloads Script
55 11 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstop.sh

Be sure to enter your user-name in the required fields. This setup will start the download start script at 2:05am and start the download stop script at 11:55am. These values will likely not suit you so you need to alter them. To understand the format of cron entries picture five asterisks at the start followed by your command. Something like the following

* * * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh

The first asterisk represents minutes, the second hours, the third days of the month, the fourth is the month, and the fifth the day of the week. The allowed syntax is

minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or the month names)
day of week 0-7 (0 or 7 is Sun, or use the weekday names)

Save this file and start up your terminal emulator

Applications → Accessories → Terminal

Enter in the following command

crontab cron.txt

To verify that this was entered into your cron entries properly enter in the following command

crontab -l

5. Now that we've installed the relevant applications and told the computer to execute the appropriate tasks at the appropriate times all we need to do is save our *.torrent files into the bittorrent directory we created earlier and wait. At the appropriate times they will be downloaded into their own sub-directory without you even being aware.

6. In the bittorrentstart script we created earlier there is a command to create a log file. This file records the activity of the torrent downloads. This file, called 'torrent.log', will be found in your Home directory. You can simply open this file to check on the status of your downloads. A sample line from this log file is

/home/Your_User_Name/torrents/torrent_name: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M [18:10:07 76%]
All: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M

What all of these entries mean is beyond the scope of this tutorial but you can easily recognise your connection speed and the percentage finished of your torrent downloads.

Ubuntu: Only Ubuntu

ISO Master - The Ultimate CD/DVD image (iso,nrg) Editor

ISO Master is a graphical editor for ISO images with support for ISO9660, RockRidge, and Joliet file names. It is useful for extracting, deleting, or adding files and directories to or from an ISO image. It is based on the bkisofs and GTK2 libraries.

(...)
Read the rest of ISO Master - The Ultimate CD/DVD image (iso,nrg) Editor (147 words)


© admin for Ubuntu Geek, 2008. | Permalink | One comment | Add to del.icio.us digg
Who's linking ? Technorati BlogPulse Google
Want more on these topics ? Browse the archive of posts filed under General.

Related Articles

Ubuntu: Ubuntu Geek - Ubuntu Tutorials,Howto's,Tips and Tricks

Howto install JS3tream and backup to Amazons S3

JS3tream was written to provide easy streaming of data to and from Amazons S3 data storage service. JS3tream is NOT a backup solution by itself. But, coupled with tar or zip, JS3tream provides a very powerful backup solution.

Install the Sun JVM using the following command

sudo apt-get install sun-java5-bin

You will need the zip/unzip utility to extract the JS3tream utility

sudo apt-get install unzip

Go to the JS3tream web site, and download the latest zip file. Extract this file to a directory of your choice. Eg /usr/local/bin

cd /usr/local/bin

unzip js3tream-0.6.2.zip

Test to make sure both java and JS3tream are correctly setup. Start by going to the directory you put JS3tream.

cd /usr/local/bin

Make sure java is correctly installed. I happen to have 1.5.0.11

sudo java -version

java version "1.5.0_11"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode)

Test that JS3tream can be executed.

sudo java -jar js3tream.jar --help

JS3tream v0.6 - December 17, 2007
Protected under the LGPL
Copyright (c) Shane Powell 2007
http://js3tream.sourceforge.net

At this point JS3tream should be correctly installed. Now, it's simply a matter of following the examples and howtos on the JS3tream web site.

Ubuntu: OnlyUbuntu Tutorials

How to Upgrade Ubuntu Server from Feisty (7.04) to Hardy (8.04)

This tutorial will explain how to upgrade Ubuntu Server from Feisty to Hardy

Step 1: Feisty to Gusty Upgrade

first be sure your feisty up-to-date

sudo apt-get update

sudo apt-get upgrade

sudo apt-get dist-upgrade


if everything ok, ready for upgrade to gusty.

nano /etc/apt/source.list

all change "feisty" to "gutsy"

save and exit (ctrl-x, yes)

sudo apt-get update
sudo apt-get dist-upgrade


(one package doesn't upgrade : mailscanner
but this step its fix:
nano /etc/init.d/mailscanner

around 124 line (do_stop function) add 'exit 0'

do_stop()
{ exit 0
# Return
# 0 if daemon has been stopped
# 1 if daemon was already stopped
# 2 if daemon could not be stopped
# other if a failure occurred
start-stop-daemon --stop --retry=TERM/30 --name $NAME
RETVAL="$?"
[ "$RETVAL" = 2 ] && return 2

# Remove lockfile for cronjobs
if [ $RETVAL -eq 0 ]; then
rm -f /var/lock/subsys/mailscanner
touch $stopped_lockfile
fi

}


save and exit.

and re-apply
sudo apt-get dist-upgrade

command. its works. there some warning related with mailscanner but not important (for now)

and reboot

my server is gutsy, now.

step 2. Gutsy to Hardy upgrade

nano /etc/apt/source.list

all change "gutsy" to "hardy"

save and exit (ctrl-x, yes)

sudo apt-get update
sudo apt-get dist-upgrade

one package doesn't upgrade : mailscanner
but no problem

reboot

mailscanner fix:

first backup your mailscanner folder. (/etc/mailscanner)

sudo cp -R /etc/mailscanner /etc/mailscanner_backup


sudo apt-get remove --purge mailscanner

(if removing results same error, around 124 line (do_stop function) add 'exit 0')

wget http://http.us.debian.org/debian/pool/main/m/mailscanner/mailscanner_4.68.8-1_all.deb
sudo dpkg -i mailscanner_4.68.8-1_all.deb

and

nano /etc/default/mailscanner

# Uncomment this line once MailScanner has been fully configured.
#
run_mailscanner=1

save and exit..

replace your backup mailscanner folder (/etc/mailscanner)

sudo cp -R /etc/mailscanner_backup /etc/mailscanner

/etc/init.d/mailscanner start

Ubuntu: OnlyUbuntu Tutorials

USB Ubuntu 8.04 Persistent install from Linux

USB Ubuntu 8.04 Persistent install from Linux without using a CDROM. This tutorial will enable a user to install Ubuntu 8.04 Hardy Heron to a USB flash drive via a running (Ubuntu) Linux environment. The persistence feature is being utilized to allow the user to save and restore changes on subsequent boots. If you already [...]

User:malforme: Pen Drive Linux

How to Upgrade Ubuntu Server from Feisty (7.04) to Hardy (8.04)

This tutorial will explain how to upgrade Ubuntu Server from Feisty to Hardy

Step 1: Feisty to Gusty Upgrade

first be sure your feisty up-to-date

sudo apt-get update

sudo apt-get upgrade

sudo apt-get dist-upgrade


if everything ok, ready for upgrade to gusty.

nano /etc/apt/source.list

all change "feisty" to "gutsy"

save and exit (ctrl-x, yes)

sudo apt-get update
sudo apt-get dist-upgrade


(one package doesn't upgrade : mailscanner
but this step its fix:
nano /etc/init.d/mailscanner

around 124 line (do_stop function) add 'exit 0'

do_stop()
{ exit 0
# Return
# 0 if daemon has been stopped
# 1 if daemon was already stopped
# 2 if daemon could not be stopped
# other if a failure occurred
start-stop-daemon --stop --retry=TERM/30 --name $NAME
RETVAL="$?"
[ "$RETVAL" = 2 ] && return 2

# Remove lockfile for cronjobs
if [ $RETVAL -eq 0 ]; then
rm -f /var/lock/subsys/mailscanner
touch $stopped_lockfile
fi

}


save and exit.

and re-apply
sudo apt-get dist-upgrade

command. its works. there some warning related with mailscanner but not important (for now)

and reboot

my server is gutsy, now.

step 2. Gutsy to Hardy upgrade

nano /etc/apt/source.list

all change "gutsy" to "hardy"

save and exit (ctrl-x, yes)

sudo apt-get update
sudo apt-get dist-upgrade

one package doesn't upgrade : mailscanner
but no problem

reboot

mailscanner fix:

first backup your mailscanner folder. (/etc/mailscanner)

sudo cp -R /etc/mailscanner /etc/mailscanner_backup


sudo apt-get remove --purge mailscanner

(if removing results same error, around 124 line (do_stop function) add 'exit 0')

wget http://http.us.debian.org/debian/pool/main/m/mailscanner/mailscanner_4.68.8-1_all.deb
sudo dpkg -i mailscanner_4.68.8-1_all.deb

and

nano /etc/default/mailscanner

# Uncomment this line once MailScanner has been fully configured.
#
run_mailscanner=1

save and exit..

replace your backup mailscanner folder (/etc/mailscanner)

sudo cp -R /etc/mailscanner_backup /etc/mailscanner

/etc/init.d/mailscanner start

Ubuntu: Only Ubuntu

Howto install JS3tream and backup to Amazons S3

JS3tream was written to provide easy streaming of data to and from Amazons S3 data storage service. JS3tream is NOT a backup solution by itself. But, coupled with tar or zip, JS3tream provides a very powerful backup solution.

Install the Sun JVM using the following command

sudo apt-get install sun-java5-bin

You will need the zip/unzip utility to extract the JS3tream utility

sudo apt-get install unzip

Go to the JS3tream web site, and download the latest zip file. Extract this file to a directory of your choice. Eg /usr/local/bin

cd /usr/local/bin

unzip js3tream-0.6.2.zip

Test to make sure both java and JS3tream are correctly setup. Start by going to the directory you put JS3tream.

cd /usr/local/bin

Make sure java is correctly installed. I happen to have 1.5.0.11

sudo java -version

java version "1.5.0_11"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode)

Test that JS3tream can be executed.

sudo java -jar js3tream.jar --help

JS3tream v0.6 - December 17, 2007
Protected under the LGPL
Copyright (c) Shane Powell 2007
http://js3tream.sourceforge.net

At this point JS3tream should be correctly installed. Now, it's simply a matter of following the examples and howtos on the JS3tream web site.

Ubuntu: Only Ubuntu

Upgrade Ubuntu 7.04 (Feisty Fawn) to Ubuntu 7.10 (Gutsy Gibbon)

The Ubuntu team is proud to announce the version 7.10 of Ubuntu, Kubuntu, Edubuntu, Gobuntu, and Xubuntu codenamed "Gutsy Gibbon". This includes installable live Desktop CDs, server images, alternate text-mode installation CDs, and an upgrade wizard for users of the current stable release. Before Upgrading You need to remember the following Important pointTake complete backup of your system

Ubuntu: Ubuntu Tutorials

Ubuntu toram - How to make Ubuntu Boot to Ram

This tutorial explains how to fix the Boot to Ram or "toram" feature that is currently broken in Ubuntu 7.04. Boot to Ram will enable a user to copy the entire Ubuntu live environment to system ram and run the Ubuntu Operating System entirely from there. You can then remove the CD or USB device [...]

User:malforme: Pen Drive Linux

Upgrade Ubuntu 7.04 (Feisty Fawn) to Ubuntu 7.10 (Gutsy Gibbon)

The Ubuntu team is proud to announce the version 7.10 of Ubuntu, Kubuntu, Edubuntu, Gobuntu, and Xubuntu codenamed "Gutsy Gibbon". This includes installable live Desktop CDs, server images, alternate text-mode installation CDs, and an upgrade wizard for users of the current stable release.


Before Upgrading You need to remember the following Important point

Take complete backup of your system before upgrading .Now you need to upgraded Ubuntu Feisty Machine to Ubuntu Gutsy.

If you want to upgrade using GUI use the following procedure

Use the Alt+F2 key combination to bring up the Run Application dialog, where you'll want to enter the following command

update-manager -c

“-c” switch tells it to look for upgrades at all.

You should see the following screen here Now you can see 7.10 is available for upgrade click on upgrade

Now you should see the release notes as follows here you need to click on upgrade

Preparing for the upgrade in Progress

You can see similar to the following screen about end of support for some applications click on close

Now you should see the following screen to start upgrade click on start upgrade

Fetching the upgrades are in progress

Installing the upgrades are in progress

Cleaning Up is in Progress

You need to restart the system to complete the Upgrade by clicking “Restart Now”

Testing Your Upgrade

You can check the ubuntu version installed using the following command

sudo lsb_release -a

Output Looks like below

Ubuntu: Only Ubuntu

USB Ubuntu 7.10 Gutsy Gibbon install

USB Ubuntu 7.10 install from Linux: This tutorial enables you to install, boot and run Ubuntu 7.10 (Gutsy Gibbon) from USB. In addition to installing Ubuntu to a USB device and then booting Ubuntu from USB, this tutorial will enable you to automatically save your changes and settings back to the stick and further restore [...]

User:malforme: Pen Drive Linux