View Full Version : Unofficial UbuntuGuide 5.04 Add-On CD Guide
jiyuu0
April 27th, 2005, 12:41 PM
For those who:
-have no/slow internet connections
-have problems connecting to ubuntu and backports repositories
-are too lazy to do all the apt-get and commands
-are new to linux and doesn't know much about it
-just wants things to be configured right
-wants ubuntu to be multimedia and internet ready
Unofficial Ubuntu 5.04 Add-On CD
Includes:
UbuntuGuide (http://ubuntuguide.org)
Bootable SystemRescueCd (http://sysresccd.org)
-contain tools like Partition Manager (that can resize Windows), etc.
An install script (ug-install.sh) that will:
-custom/auto install all the Add-On Apps mentioned in UbuntuGuide (no internet connection required)
-fix the sound prob (for most computers)
-associate dvd, multimedia files to open with xine-ui and xmms rather than totem
-associate graphic files to open with gthumb
-improve fonts appearance in GNOME desktop
Linux Extras (/media/cdrom0/packages/linux/extras/):
-The Linux Documentation Project - HOWTOs
Windows Extras (/media/cdrom0/packages/windows/extras/):
-Firefox 1.06
-Thunderbird 1.06
-Gaim 1.4.0
-Gimp 2.2.8
-etc
To install/extract the Add-On CD:
sudo sh /media/cdrom0/install.sh
*This will only copy the packages into your hardisk. A copy of UbuntuGuide will be located on Desktop
To custom install Add-On Apps after install/extract the Add-On CD:
sudo sh $HOME/ug-install.sh
*This will prompt you [Y/n/q] to install all the Add-On Apps
Optional - To auto/unattended install Add-On Apps after install/extract the Add-On CD:
sudo sh $HOME/ug-install.sh -auto
*This will save you lots of time. It will assumed Y to install all. Apps that needs input will only appear at the end of installation
Once the script (ug-install.sh) is installed, things are in place and multimedia, internet apps are ready to go...
Download:
ubuntu-5.04-add-on-cd-2005-08-01.tgz (http://www.frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-2005-08-01.tgz)
-UbuntuGuide 4.17
-Applications Snapshots (2005-08-01)
Mirror (make sure the version number is the latest):
http://www.mrbass.org/linux/ubuntu/
mtron
April 27th, 2005, 12:48 PM
very nice idea!
Thanks!
How much user interaction will it nead? and: are you using the java deb or install bin from sun?
Sionide
April 27th, 2005, 12:49 PM
Great idea, can't wait to get my hands on this! I have (some) troubles downloading stuff from the Internet due to dodgy network proxies and firewalls. So this will be an ideal friend for my Ubuntu install...
Need any help putting it all together? I'll do what I can.
mrbass
April 27th, 2005, 03:54 PM
I was actually trying to do this. I'm not on my computer with the bookmark but making a debian cd was way over my head to get apt-cdrom add to recognize it. So instead I just made a script with the .deb files and used dpkg -i...arggh. Anyway it works well if anyone wants to try it I'll put it here...I think it's around 85MB. I'll start another thread so .zip file doesn't get confused with the cd.
Yeah I could host it jiyuu0...currently have 4.5TB/month bandwidth on my site.
edit: ok now at computer How to make a custom debian cd is way over my head
http://wiki.debian.net/?DebianCustomCD
not sure if one can do it with jidgo or not.
http://www.debian.org/CD/jigdo-cd/
Sionide
April 27th, 2005, 04:21 PM
When it's finished - why not go the full hogg and get the ubuntu developers to put the official stamp on it?? The Ubuntu Guide itself is absolutely amazing. I don't see why they'd object...
jiyuu0
April 27th, 2005, 09:34 PM
I was actually trying to do this. I'm not on my computer with the bookmark but making a debian cd was way over my head to get apt-cdrom add to recognize it. So instead I just made a script with the .deb files and used dpkg -i...arggh. Anyway it works well if anyone wants to try it I'll put it here...I think it's around 85MB. I'll start another thread so .zip file doesn't get confused with the cd.
Yeah I could host it jiyuu0...currently have 4.5TB/month bandwidth on my site.
edit: ok now at computer How to make a custom debian cd is way over my head
http://wiki.debian.net/?DebianCustomCD
not sure if one can do it with jidgo or not.
http://www.debian.org/CD/jigdo-cd/
it would be great if you host it... :)
btw, if you have noticed, in the guide all the wget is pointing to this server http://www.myosc.org/ubuntuguide
and i think the bandwidth there is also going to burst...
can i put all the files at your server? can i have a ssh login to the folder so that i can easily update it if there's a new version
now... what the CD would do is
1) it will contain the cache folder of my hard disk (all apps from ubuntuguide)
2) the configure script will then
cp -fr /media/cdrom/packages/etc /
cp -fr /media/cdrom/packages/var /
*only the apt from etc and var
3) then there will be a modified version on ubuntuguide on desktop, where the instructions are the same... only no apt-get update and wget
by doing this, users should have no prob with broken dependencies as long they read it properly and don't apt-get update
jiyuu0
April 27th, 2005, 10:00 PM
before i finalized this... this is the script install.sh in the cd
#!/bin/bash
CD_PATH=`dirname "$0"`
clear
echo "Unofficial Ubuntu 5.04 Add-On CD"
echo "Applications Snapshots: 28th April 2005"
echo "URL: http://www.ubuntuguide.org"
echo "Author: Chua Wen Kiat (Kuala Lumpur, Malaysia)"
echo ""
echo "License GNU General Public License (http://www.gnu.org/licenses/gpl.html)"
echo ""
echo "General Notes:"
echo "-Script is tested on a fresh installation of the Ubuntu 5.04 x86 Install CD"
echo "-Script will only copy all applications into local hard disk"
echo "-To install, Read Unofficial Ubuntu 5.04 Add-On CD Guide located on Desktop"
echo ""
echo "Warnings:"
echo "-Do not 'sudo apt-get update'"
echo "-Doing this might disable offline installation"
echo "-Only do this if you want to install online/updated applications"
echo ""
echo "Install Unofficial Ubuntu 5.04 Add-On CD? [y/n]"
read YN
if [ "$YN" == "y" -o "$YN" == "Y" ]; then
if [ `uname -m` != "i686" ]; then
echo ""
echo "Error! Execute this script on Ubuntu 5.04 x86!"
echo ""
echo "Installation aborted!"
exit 1
fi
if [ `whoami` = "root" ]; then
echo ""
echo "Installing Unofficial Ubuntu 5.04 Add-On CD..."
cp -fr "$CD_PATH/packages/etc/" /
cp -fr "$CD_PATH/packages/var/" /
chmod 600 /etc/apt/secring.gpg /etc/apt/trustdb.gpg
chmod 644 /etc/apt/sources.list /etc/apt/trusted.gpg
chmod 755 /etc/apt/apt.conf.d/
chmod 644 /etc/apt/apt.conf.d/*
chmod 644 /var/cache/apt/*.bin
chmod 755 /var/cache/apt/archives/
chmod 444 /var/cache/apt/archives/*.deb
chmod 640 /var/cache/apt/archives/lock
chmod 755 /var/cache/apt/archives/partial/
chmod 644 /var/lib/apt/cdroms.list
chmod 755 /var/lib/apt/lists/ /var/lib/apt/periodic/
chmod 644 /var/lib/apt/periodic/*
chmod 644 /var/lib/apt/lists/*
chmod 640 /var/lib/apt/lists/lock
chmod 755 /var/lib/apt/lists/partial/
mkdir $HOME/Downloads/ 2>/dev/null
cp -fr "$CD_PATH/packages/downloads/"*.* $HOME/Downloads/
chown -R $SUDO_UID:$SUDO_GID $HOME/Downloads/
mkdir $HOME/Desktop/Unofficial\ Ubuntu\ 5.04\ Add-On\ CD\ Guide/ 2>/dev/null
tar zxf "$CD_PATH/"ubuntuguide.tgz -C $HOME/Desktop/Unofficial\ Ubuntu\ 5.04\ Add-On\ CD\ Guide/ 2>/dev/null
chown -R $SUDO_UID:$SUDO_GID $HOME/Desktop/Unofficial\ Ubuntu\ 5.04\ Add-On\ CD\ Guide/
/usr/bin/firefox $HOME/Desktop/Unofficial\ Ubuntu\ 5.04\ Add-On\ CD\ Guide/index.html 2>/dev/null &
echo ""
echo "Installation completed!"
else
echo ""
echo "Error! Execute this script with root permission!"
echo "Usage: sudo sh $0"
echo ""
echo "Installation aborted!"
fi
else
echo ""
echo "Installation aborted!"
fi
jiyuu0
April 28th, 2005, 05:21 AM
finished... 325.0MB
going for 1 more round of testing and i'll try upload
hope my broadband is steady....
jiyuu0
April 28th, 2005, 06:42 AM
Unofficial Ubuntu 5.04 Add-On CD Guide
This version of guide is now temporary here:
http://ubuntuguide.org/temp/
This will be in the CD
jiyuu0
April 28th, 2005, 08:04 AM
the CD (332.1MB) is completed... if you can host it PM me
thanks :)
kahping
April 28th, 2005, 08:12 AM
really cool idea!
this would safe users a lot of time when performing initial system setup. also, those who format their PCs often (for various reasons) won't have to re-download everything everytime they re-install Ubuntu.
kahping
mrbass
April 28th, 2005, 01:16 PM
Was anyone able to get a copy of this? If so pm me so I could host it too.
jiyuu0
April 28th, 2005, 03:58 PM
attached to the first post of this thread is the torrent file...
could someone test it... cause not played with torrent much
mrbass
April 28th, 2005, 06:35 PM
I was able to download 256KB once the torrent was open...using Azureus on windows. After that it it's just, well, hmm..just stopped. There has to be a serving seeding it I believe.
jiyuu0
April 30th, 2005, 11:40 AM
Announcing the availability of:
Unofficial Ubuntu 5.04 Add-On CD
http://ubuntuguide.org/add-on-cd
If you have bandwidth to mirror this, do let me know the URL
mrbass
April 30th, 2005, 03:47 PM
here's a mirror
http://mrbass.org/linux/ubuntu/
jiyuu0
May 2nd, 2005, 12:17 AM
next release of the cd... (in a few more days)
-some minor updates on the apps (jre-1_5_0_03, menu editor, xmms-wma)
-updated version of ubuntuguide
-custom-install script to install all the Add-On Applications section
just press y/n/q or enter all the way :)
save lot's of time
life is gettin easier these days \\:D/
jiyuu0
May 3rd, 2005, 05:02 AM
yes... the new version is out
http://ubuntuguide.org/add-on-cd
once you installed a fresh ubuntu
insert the add-on cd then:
sudo sh /media/cdrom0/install.sh
to run auto-install script:
sudo sh $HOME/Downloads/ug-install.sh
this script will install all Add-On Applications into your Ubuntu, promted by [y/n/q]
it's best that you only run this script on a fresh installed ubuntu
mrbass
May 3rd, 2005, 02:15 PM
SWEEEEEEEEEEEEEEEEEEEEEET....nice work jiyuuo. I didn't try the previous one because it didn't have the selection to install each app via a script. This one DOES!!!. This is the real deal. It's awesome as it will be not super hard to maintain...mine was/is a copy and paste nightmare using dpkg -i.
Ok here's some constructive criticism and many suggestions....having said this I can't praise this enough.
a)Unofficial Ubuntu 5.04 Add-On CD - Auto Install? [y/n]
explain just a little more what Auto Install means. I thought perhaps it meant to install all apps in one swoop which I didn't want to do. Something like "Choose each application to install?"
b) [y/n/q] change to [Y/n/q]
this is consistent and indicates the default is Yes and just pressing ENTER makes it is the same as press y/Y which it does.
c) echo "Install Multimedia Player (RealPlayer)? [y/n/q]"
change to
echo "RealPlayer 10 installation path type /opt/RealPlayer"
echo "For everything else just press ENTER"
echo "Install Multimedia Player (RealPlayer)? [y/n/q]"
I realize this clears away and soon as they press enter but reminds them to type /opt/RealPlayer without having to resort to the guide.
d)apt-get -y --allow-unauthenticated install xfonts-intl-arabic xfonts-intl-asian xfonts-intl-chinese xfonts-intl-chinese-big xfonts-intl-european xfonts-intl-japanese xfonts-intl-japanese-big xfonts-intl-phonetic gsfonts-x11
tar xvf msttcorefonts.tar -C /usr/share/fonts/truetype/
fc-cache -f -v
heheh msttcorefonts...that's my method too...I couldn't figure out the other way either. Could you split xfonts-intl fonts and msttcorefonts? If not no biggie but I don't believe xfonts-intl are useful anymore with utf-8. I believe it was required for kterm for example but kterm isn't required anymore and most apps now are qt or gtk.
e) apt-get -y --allow-unauthenticated install scim scim-chinese scim-config-socket scim-gtk2-immodule scim-tables-zh
Now to add Japanese and Korean would be awesome. When using your cd it suggested scim-hangul so I guess that may be in the repositories now which means we can now input Korean. I'll get back to you about this after I test it out. Also I previously thought uim was not necessary but it is if you use KDE (kubuntu-desktop) so it's good to install it.
#sudo apt-get install anthy scim-gtk2-immodule scim-chinese
apt-get -y --allow-unauthenticated install scim scim-chinese scim-hangul anthy uim scim-uim scim-gtk2-immodule scim-tables-zh scim-tables-ja scim-tables-ko
also I'm almost 99% sure that scim-config-socket is a dependent of scim so it's not necessary to specify it. anthy provides Japanese input....scim-hangul provides Korean input (gotta test this).
f) also could you add this to the end of the Chinese input script.
sudo touch /etc/X11/Xsession.d/74custom-scim_startup
sudo chmod 646 /etc/X11/Xsession.d/74custom-scim_startup
echo 'export XMODIFIERS="@im=SCIM"' >> /etc/X11/Xsession.d/74custom-scim_startup
echo 'export GTK_IM_MODULE="scim"' >> /etc/X11/Xsession.d/74custom-scim_startup
echo 'export XIM_PROGRAM="scim -d"' >> /etc/X11/Xsession.d/74custom-scim_startup
echo 'export QT_IM_MODULE="scim"' >> /etc/X11/Xsession.d/74custom-scim_startup
I explain it in more detail in my Japanese/Chinese SCIM input guide
http://mrbass.org/linux/ubuntu/scim/
f) A few things my ubuntu add-on zip has which this one doesn't is:
XFCE 4.2.1
sudo apt-get install xfce4 xfmedia xterminal xfce4-theme-brushedchrome
nvidia (auto install)
sudo dpkg -i /var/cache/apt/archives/nvidia-glx_1.0.7174-0ubuntu1_i386.deb nvidia-settings_1.0-3ubuntu2_i386.deb
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup
md5sum /etc/X11/xorg.conf | sudo tee /var/lib/xfree86/xorg.conf.md5sum
sudo nvidia-glx-config enable
GNOME sound fix
DMA for cd-rom/dvd-rom...gotta test if it retains it after reboot
numlockx
ssh server
samba server
g) that build-essential ....how big is that 180MB??? I wonder how many would need this or install this (compile kernels and source, etc.). I mean wouldn't this substantially reduce the cd size?
h) echo "Update Ubuntu (snapshots)? [y/n/q]"
I wasn't sure what this mean so perhaps clarify it more...
basically it upgrades the following to the lastest packages
firefox, openoffice, gimp
btw in case you just want to view my script without downloading 114MB just
wget iso.mrbass.org/ubuntu/ubuntuaddon.sh
mrbass
May 3rd, 2005, 03:51 PM
ok the Korean input does work...sweet.
http://www.ubuntuforums.org/showthread.php?p=157209
Ride Jib
May 3rd, 2005, 05:28 PM
Just wanted to say thanks to jiyuu0. Your guide has helped me greatly get my computer to where I wanted it. Big thumbs up!
jiyuu0
May 3rd, 2005, 10:18 PM
mrbass, thanks for the inputs... will look into it :)
mtron
May 4th, 2005, 11:51 AM
shouldn't you also post the torrent link on the Addon CD Guide? will save loads of brandwidth.
jiyuu0
May 4th, 2005, 11:56 AM
i don't know how to make a torrent yet...
haven't got time to look into it... if you know direct step... do let me know :)
now updating the guide...
mandy2tom
May 4th, 2005, 01:26 PM
Unofficial Ubuntu 5.04 Add-On CD Guide
This version of guide is now temporary here:
http://ubuntuguide.org/temp/
This will be in the CD
Nice job!
Thanks
I was doing this on my pen drive for quick live cd installs.
torrent is the solution
I have been trying to find a tracker
I think most of us would be glad to leave a torrent running
I try to share someone's torrent every night, unused bandwidth
why not see if you can post it here
http://torrent.ubuntu.com:6969/
google search inurl:"6969" upload
any way good work thanks alot
I think the bigest issue for most people is embedded media in firefox i would like to see totem play all
mplayer bad
i would love to host it for you but I olny have 8 gigs a month on my site
here someone try this
ubuntu-5.04-add-on-cd-2005-05-02.iso.torrent (http://linuxtracker.org/download.php?id=211&name=ubuntu-5.04-add-on-cd-2005-05-02.iso.torrent)
mandy2tom@gmail.com
mrbass
May 5th, 2005, 12:22 PM
I was watching attack of the show (formerly the screensavers) on g4tv and kevin rose showed how easy it's to create a decentralized torrent with azureus 2.3.0. However, it'll only work for those who have that version. But basically if the original seeded disappears it'll still work. Plus it's anonymous not that it matters for linux .iso images and such.
secristrc
May 5th, 2005, 08:57 PM
The CD sounds excellent, but why is i686 required ?
rcs@eagle:~$ sudo sh /media/cdrom0/install.sh
Password: xxxxxxxxxx
...
Install Unofficial Ubuntu 5.04 Add-On CD? [y/n]
y
Error! Execute this script on Ubuntu 5.04 x86!
Installation aborted!
rcs@eagle:~$ uname -a
Linux eagle 2.6.10-5-386 #1 Tue Apr 5 12:12:40 UTC 2005 i586 GNU/Linux
rcs@eagle:~$
install.sh:
if [ `uname -m` != "i686" ]; then
echo ""
echo "Error! Execute this script on Ubuntu 5.04 x86!"
Does it really have to be i686 ?!
jiyuu0
May 5th, 2005, 09:00 PM
nope... i thought all x86 is i686
so there
i686
i586
is there i486 and i386? the cd will work only for x86
will correct on next release
jiyuu0
May 9th, 2005, 04:32 AM
uploading new version... should be ready tomorrow (if my internet don't disconnect)
snapshots: 2005-05-08
contains all the offline cache used by ubuntuguide v 1.63
yes... 1 month from the day ubuntu 5.04 released :)
i'll try to make updates once a month on the 8th.
mrshark
May 9th, 2005, 06:03 AM
first of all, thanks for your guide. Now some (constructive, i think) hints to improve it:
transcode and gstreamer0.8-lame are not in your add-on cd, so using them will fail installation of dvd::rip and goobox, respectively
even if w32codecs are installed, only xine works in playing divx and xvid movies (tried realplayer, mplayer and totem with no success...)
if you do not apply the trick in your guide for "How to configure sound to work properly in GNOME", after installing realplayer its window does not appear, till you kill esd...
audacity, with or without the previous trick, complains about not be able to play sounds: infact in: file, preferences, the reproduction and registration device selection boxes are emtpy (gnome sounds instead are working...)
ubm_1.2.5-0ubuntu1_all.deb is missing in the cd
please add if you can a program to watch tv via bttv (xawtv or other more "beautiful")
please add some links in every section about a firefox plugin, to test them (flash, java, pdf, etc)
jiyuu0
May 9th, 2005, 06:11 AM
i think you are refering to the older version...
2005-05-08 is still uploading at 8k/s :(
it contains all the transcode, dvdrip, goobox, ubm... etc
i'm not sure whether everyone needs to killall esd or apply "How to configure sound to work properly in GNOME"... that's why i put it in troubleshooting section rather than in the script to force apply
Alexander Kirillov
May 9th, 2005, 08:33 AM
Thanks for the great tool!
Some comments:
- would be great if you could include gstreamer-lame and ati drivers in the next version
- it enables "testing" and "unstable" repositories on marillat. I think it is too risky for most: these repositories may have dependencies which are impossible to satisfy without updating, say, your glibc. I think that reasonabel default would be to enable "stable" and live "unstable" and "testing" commented out. Those who want them can enale them manually.
- as mentioned in another post, message "start automatic installation" is confisuing. Better: "start assisted installation" or somethign along these lines.
- at the end of auto install script, it would be good to inform users that there are some apps that were copied to the hard drive cache but not installed (emacs, NVIDIA drivers,...) and tell that they can be installed using apt-get or synaptic.
jiyuu0
May 9th, 2005, 09:43 AM
Thanks for the great tool!
Some comments:
- would be great if you could include gstreamer-lame and ati drivers in the next version
- it enables "testing" and "unstable" repositories on marillat. I think it is too risky for most: these repositories may have dependencies which are impossible to satisfy without updating, say, your glibc. I think that reasonabel default would be to enable "stable" and live "unstable" and "testing" commented out. Those who want them can enale them manually.
- as mentioned in another post, message "start automatic installation" is confisuing. Better: "start assisted installation" or somethign along these lines.
- at the end of auto install script, it would be good to inform users that there are some apps that were copied to the hard drive cache but not installed (emacs, NVIDIA drivers,...) and tell that they can be installed using apt-get or synaptic.
now 86% uploaded...
i tried the ati previously... never got it to work... seems like not compatible with my ati card... will try again next time
is gstreamer-lame = gstreamer0.8-lame_0.8.8-0.1_i386.deb?
"start automatic installation"
have changed to "start custom installation"
message to inform users that there are still cached apps... on next release (too late to cancel now)
reason i enable all the marillat is because some apps are there (e.g. acroread 7, transcode is in the testing)
jiyuu0
May 9th, 2005, 09:50 AM
suddenly thought of this...
ubuntu cd (install / live) doesn't have parted tool by default...
i'm wondering... maybe i should combine the
http://www.sysresccd.org
with
http://www.ubuntuguide.org/add-on-cd
downside... 110MB extra from sysresccd
mrbass
May 9th, 2005, 10:32 AM
NO please don't. Let's keep size to minimum. I plan on only having a small zip addon that only has things ubuntu add-on cd doesn't. In other words, stripping my current one down. However, if it shoots too 600MB then some may not want to dl it just to automatically install some of the popular addons. Ultimate Boot CD Full Edition has Insert Linux on it and has QTParted. It's a 154MB download zipped .iso image.
jiyuu0
May 9th, 2005, 10:47 AM
it's out... :)
Download the latest image at:
http://ubuntuguide.org/add-on-cd
Applications Snapshots: 8th May 2005
ubuntu-5.04-add-on-2005-05-08.iso
jiyuu0
May 9th, 2005, 11:50 AM
ok... i've finished compiling the add-on enchanced version CD
the normal version will only have the add-on content (337MB)
the enchanced version will have the add-on content and sysresccd.org (446 MB)
-partition resizer
-image tools
-etc
going through one more round of testing... and will start upload
reason of making this enchanced CD:
currently, in order to resize windows before installing linux... one have to use some tools like Partition Magic (Floopy) or Mepis...
now this Add-On-E will do the trick :)
jodef
May 9th, 2005, 11:53 AM
ok... i've finished compiling the add-on enchanced version CD
the normal version will only have the add-on content (337MB)
the enchanced version will have the add-on content and sysresccd.org (446 MB)
-partition resizer
-image tools
-etc
going through one more round of testing... and will start upload
reason of making this enchanced CD:
currently, in order to resize windows before installing linux... one have to use some tools like Partition Magic (Floopy) or Mepis...
now this Add-On-E will do the trick :)Sounds great!! Thanks for all the hard work.
mrbass
May 9th, 2005, 02:42 PM
ok my mirror is up
jiyuu0
May 10th, 2005, 01:53 PM
yub... it's up...
Unofficial Ubuntu Add-On CD Enhanced (Standard + SystemRescueCd):
ubuntu-5.04-add-on-cd-e-2005-05-08.tgz (446.7 MB)
Contains:
-Snapshots of all the applications mentioned in the UbuntuGuide (8th May 2005)
-Bootable CD (SystemRescueCd) - Partition Magic clone, Ghost/Drive-image clone, etc
http://ubuntuguide.org/add-on-cd
mandy2tom
May 11th, 2005, 09:21 PM
both torrents are up at http://www.linuxtracker.org/
search for ubuntu
jiyuu0
May 23rd, 2005, 07:47 AM
started compiling a newer version
Unofficial Ubuntu 5.04 Add-On CD Guide
Revision: 2.05 (Last updated on 24th May 2005)
Applications Snapshots: 23rd May 2005
jiyuu0
May 24th, 2005, 11:14 AM
new version of the add-on-cd is out
Applications Snapshots: 23rd May 2005
UbuntuGuide - Revision: 2.05 (Last updated on 24th May 2005)
packages list
http://ubuntuguide.org/add-on-cd/add-on-cd-2005-05-23
download
http://www.frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-e-2005-05-23.tgz
maspro
May 24th, 2005, 01:15 PM
Could it be possible to add support for ATI cards, including 3d acceleration? If it's possible this would be really cool!
:smile:
jiyuu0
May 28th, 2005, 12:00 PM
updated version coming up...
snapshot (2005-05-27)
packages list:
http://ubuntuguide.org/add-on-cd/add-on-cd-2005-05-27
major change in the sources.list (added backports packages...)
Ubuntu and Backports has higher priority than Marillat.
additional prog:
VNC Viewer for Windows
The Linux Documentation Project (HOWTOs - 20050528)
will finished upload in 1 or 2 days time (if my broadband don't die)
jiyuu0
May 29th, 2005, 02:01 AM
Unfortunately Add-On-CD is discontinued...
mrbass
May 29th, 2005, 02:24 AM
well I'll distribute it if you want. Only thing that I possibly see is the license of mstcorefonts...need to hack it to install the .exe binaries. If it's libdvdcss2 I'll easily distrubute that. Also maybe that acroread is illegal to package as a deb file too but as far as I know adobe has never enforced it. Anyway I guess my point is I'll mirror it if you want and take the risk.
jiyuu0
May 29th, 2005, 02:27 AM
well I'll distribute it if you want. Only thing that I possibly see is the license of mstcorefonts...need to hack it to install the .exe binaries. If it's libdvdcss2 I'll easily distrubute that. Also maybe that acroread is illegal to package as a deb file too but as far as I know adobe has never enforced it. Anyway I guess my point is I'll mirror it if you want and take the risk.
...
mrbass
May 29th, 2005, 02:30 AM
I'll pm you instead.
weekend warrior
May 29th, 2005, 03:50 AM
jiyuu0, why has this ended? It was really a wonderful addition, letting me recommend ubuntu to anyone without reservations. It placed ubuntu on an even playing field with other distros in terms of easy setup. Now without it, I honestly have to say I would hesitate recommending ubuntu :( Can you tell us the reasons for not continuing with it?
jiyuu0
May 29th, 2005, 03:51 AM
jiyuu0, why has this ended? It was really a wonderful addition, letting me recommend ubuntu to anyone without reservations. It placed ubuntu on an even playing field with other distros in terms of easy setup. Now without it, I honestly have to say I would hesitate recommending ubuntu :( Can you tell us the reasons for not continuing with it?
1 word...
copyrights
i just got to know it... :(
weekend warrior
May 29th, 2005, 03:56 AM
Which bit is the most offending? Is there any chance of taking it out and continuing with the rest?
jiyuu0
May 29th, 2005, 04:01 AM
Which bit is the most offending? Is there any chance of taking it out and continuing with the rest?
that could be done... but i have to read every single package license... and that's licensing nightmare
weekend warrior
May 29th, 2005, 04:08 AM
That's terrible :mad: If it comes down to that maybe the task could be divided up with the help of forum members? You could post packages you need info on and people could help look for licenses.
BTW - Were you contacted by someone/group that asked you to stop or did you find out on your own?
jiyuu0
May 29th, 2005, 04:11 AM
That's terrible :mad: If it comes down to that maybe the task could be divided up with the help of forum members? You could post packages you need info on and people could help look for licenses.
BTW - Were you contacted by someone/group that asked you to stop or did you find out on your own?
i just found out through the #ubuntu-devel chat room... got freeked out :(
jiyuu0
May 29th, 2005, 04:14 AM
i thought it's ok to put in CD as it's easily accessable from apt-get repositories...
could this be limited to some country?
if the CD is violating, then Backports and Marillat is too right as the packages are downloaded cache from them?
weekend warrior
May 29th, 2005, 04:22 AM
I don't have a full understanding of the issue, but it would seem logical, as it's the same packages in question. I think the main "problem" country is the US, but could be others too....
What was said exactly that freaked you out in the chat?
jiyuu0
May 29th, 2005, 04:24 AM
I don't have a full understanding of the issue, but it would seem logical, as it's the same packages in question. I think the main "problem" country is the US, but could be others too....
What was said exactly that freaked you out in the chat?
I was told, it's like duplicating a legal CD an then distributing it...
it is possible to be sued over distribuing copyrighted packages (e.g. w32codecs, libdvdcss2, java, etc)
weekend warrior
May 29th, 2005, 04:51 AM
Hmmm..... this a tough one :-k So then what is the difference between what you've put together and the repos? Is it because the packages on the repos are separated and on the CD are collected together as a unit? I think it's necessary to find out what the distinction is before trying to find a solution to continue this project. If there is no distinction, then according to what you were told the repos would be in violation as well.
mrshark
May 29th, 2005, 11:03 AM
jiyuu0, in the case you do not want, even in the future, to rebuild the cd, can you please at least tell us the procedure used, so every one of us with a little time can make his own addon-cd, based on your great guide? the guide is ok, i think, because it does not contain software, it's like a big collection of small howtos. So, let us do the work, everyone for himself... PLEASEEEEE ;-)
maspro
May 29th, 2005, 01:39 PM
It's really to bad to hear this really sad news. I was really hoping to download the latest version. :(
mrbass
May 29th, 2005, 02:42 PM
search around and you might find it
maspro
May 29th, 2005, 03:02 PM
search around and you might find it
;-) You do not need to say more! :grin:
jiyuu0
May 31st, 2005, 05:09 AM
since there are so many request (emails)...
Applications Snapshots: 29th May 2005
*last release (discontinuing this project)
Temporary Download:
http://frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-e-2005-05-29.tgz
*will shutdown this link on (5th June 2005)
*all packages are cache from Ubuntu, Backports and Marillat
What's new...
-updated to UbuntuGuide 3.04
-auto/un-attended installation script for the entire Add-On-Applications section (read the index.html in the CD)
valnar
June 1st, 2005, 10:39 AM
I cannot express to you how valuable this CD was with me choosing ubuntu as my distro of choice. Without it, I may actually be tempted to go to Mepis or another distro that has "everything" installed.
I understand your reasons for discontinuing it, but perhaps you could rework it to a simple shell script that pulls everything down from the Internet? Change the focus a little. Instead of it being a time saving and bandwidth saving utility, just make it a time-saving utility instead? I don't mind having to suck everything down from the respositories, I simply used your CD because it was scripted.
-Robert
jiyuu0
June 3rd, 2005, 10:47 PM
http://frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-e-2005-06-02.tgz
*100% Marillat Free!
mrshark
June 4th, 2005, 01:38 AM
*100% Marillat Free!
exactly, what does this mean? That some packages have been left out? Or that they are now present in other repositories? Or what else? In particular, are decss, transcode, w32codecs gone? Thanks anyway for your great work
jiyuu0
June 4th, 2005, 02:00 AM
exactly, what does this mean? That some packages have been left out? Or that they are now present in other repositories? Or what else? In particular, are decss, transcode, w32codecs gone? Thanks anyway for your great work
still there... instead of using marillat, using backports
valnar
June 4th, 2005, 08:05 AM
So does it pull everything from the Internet now instead of local?
Robert
mrshark
June 4th, 2005, 09:48 AM
still there... instead of using marillat, using backports
how does this re-make your addon-cd legal? the problem was the software, not the site from where it came...
maspro
June 5th, 2005, 10:02 AM
Is the cd going to be discontinued or not? I'm a bit puzzeld now.
First there's this release:
http://frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-e-2005-05-29.tgz
and then there's this release:
http://frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-e-2005-06-02.tgz
:???:
mrbass
June 16th, 2005, 08:50 PM
new version is out 6-14 it's 558MB
Griffology
June 16th, 2005, 09:07 PM
mrbass, thank you very much... I have found the resources your provided very useful!
mrbass
June 17th, 2005, 02:22 AM
(member.php?u=1812)jiyuuo is da man
jiyuu0
June 24th, 2005, 02:19 AM
http://frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-e-2005-06-22.tgz
UbuntuGuide 4.06
Improved ug-install.sh script that will:
-install all the Add-On Apps
-fix the sound prob (for most cases)
-associate multimedia files to open with xine and xmms rather than totem
-"-auto" parameter for unattended installation for all the Add-On apps
Among the release of this Add-On CD, this is my favourite as once after the script is installed, things are in place and multimedia are ready to go :-)
valnar
June 24th, 2005, 07:52 AM
Does the CD pull down any of the proprietary (DVD decryption, etc.) programs from the Internet that were banned last time?
Robert
jiyuu0
June 24th, 2005, 10:18 PM
Does the CD pull down any of the proprietary (DVD decryption, etc.) programs from the Internet that were banned last time?
Robert
it is still the same as it is...
Skel
June 25th, 2005, 12:23 PM
Now would i have to burn this cd to install it or is there a way to just extract it then install?
jiyuu0
June 25th, 2005, 09:30 PM
Now would i have to burn this cd to install it or is there a way to just extract it then install?
The ISO contains the bootable SysRescCD. It has tools like Partition Manager (that can resize Windows), etc. So if, you need that tool, then you have to burn the ISO, else just extracting it will do :-)
You can use this method if u don't wish to burn it
http://ubuntuguide.org/#mountunmountisofileswithoutburning
To install/extract the CD
sudo sh /media/iso/install.sh
*This will only copy the packages into you hdd. A copy of UbuntuGuide will be located on Desktop.
To install applications from Ubuntu Add-on CD after copying it hd
sudo sh $HOME/Downloads/ug-install.sh
Optional - Install all applications on cd unattended
sudo sh $HOME/Downloads/ug-install.sh -auto
Skel
June 25th, 2005, 11:56 PM
Thank You Very much
jiyuu0
June 29th, 2005, 12:02 AM
updated first post of this thread...
maspro
July 8th, 2005, 04:29 PM
Why is there so much difference in size between the 2005-06-14 release and the 2005-06-22 release? It's almost a difference of about 60 MB. Are there fewer appz in the latest version of the add-on cd?
Just curious. ;-)
jiyuu0
July 8th, 2005, 09:37 PM
Why is there so much difference in size between the 2005-06-14 release and the 2005-06-22 release? It's almost a difference of about 60 MB. Are there fewer appz in the latest version of the add-on cd?
Just curious. ;-)
i don't know either... din removed anything
2005-07-07 is ready, going to upload on mon (currently no broadband)
jiyuu0
July 11th, 2005, 08:12 AM
ubuntu-5.04-add-on-cd-e-2005-07-09
Latest Download: UbuntuGuide 4.14 Add-On-CD
http://frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-e-2005-07-09.tgz
filemanager
July 12th, 2005, 10:05 AM
How does this fix sound problems?
jiyuu0
July 12th, 2005, 10:36 AM
How does this fix sound problems?
for most of the PCs that i've tried... this solution will fix the sound
http://ubuntuguide.org/#configuresoundproperly
the ug-install.sh script will automatically install this section if answer is "Y" to it
webbie180
July 22nd, 2005, 11:22 AM
I downloaded the file in my friend's place and copied it to a CD. Back home I copied the tgz file and l untar the file in my home directory. Opened a terminal and type in 'sudo sh /media/cdrom0/install.sh' but cannot. Wat should I be doing to do it right? Very newbie here. Pse help with step by step guide.
jiyuu0
July 22nd, 2005, 10:05 PM
I downloaded the file in my friend's place and copied it to a CD. Back home I copied the tgz file and l untar the file in my home directory. Opened a terminal and type in 'sudo sh /media/cdrom0/install.sh' but cannot. Wat should I be doing to do it right? Very newbie here. Pse help with step by step guide.
when you untar the file, there's an iso.
burn the iso into cd. (if you are in ubuntu. right click the file -> burn),
once done burning, then issue the command
webbie180
July 23rd, 2005, 03:09 AM
How to untar in Windows? As I dont have a cdwriter at home. My friend is using windows. I need to do everything under windows first. Thanks.
RadixLecti
July 23rd, 2005, 05:37 AM
There is a free program called zipgenius, http://www.zipgenius.it/index2.html , that handles .tar. It replaced winzip on my win-comp a long time ago.
webbie180
July 23rd, 2005, 09:37 AM
Thanks. Will try it out.
webbie180
July 23rd, 2005, 10:40 AM
Thanks, man. WORKS.
RadixLecti
July 23rd, 2005, 01:18 PM
Glad to help.
Dural
July 26th, 2005, 05:18 PM
Glad to help.
I just finished installing the add-ons from the ubuntu add-on Cd. It went great, but then I restarted the computer in order to properly install everything. I got sent to the SystemRecovery CD and now I'm stuck in Gentoo Linux? How do I get out of it?
jiyuu0
July 26th, 2005, 08:58 PM
I just finished installing the add-ons from the ubuntu add-on Cd. It went great, but then I restarted the computer in order to properly install everything. I got sent to the SystemRecovery CD and now I'm stuck in Gentoo Linux? How do I get out of it?
the add-on cd is a bootable system recovery tool too. so, just remove the cd from your cd-rom and restart again. you will be back into ubuntu :-)
Dural
July 26th, 2005, 10:38 PM
^ Thank you. :)
craigevil
July 29th, 2005, 01:30 AM
Great job. The add-on cd made the switch to Ubuntu easy and well worth it. Keep up the good work.
sb73542
August 6th, 2005, 03:56 PM
Hello, are you planning on continuing to update this CD, jiyuu0? Will it continue to be available and usable when Breezy is released? As someone else here said, this CD is possibly the only method that makes Ubuntu possible for me, as I have a dirt-slow dialup connection and a need for several major programs that Ubuntu leaves out. I REALLY appreciate your hard work on this essential CD.
jiyuu0
August 6th, 2005, 10:43 PM
Hello, are you planning on continuing to update this CD, jiyuu0? Will it continue to be available and usable when Breezy is released? As someone else here said, this CD is possibly the only method that makes Ubuntu possible for me, as I have a dirt-slow dialup connection and a need for several major programs that Ubuntu leaves out. I REALLY appreciate your hard work on this essential CD.
i'm not sure bout Breezy add-on, but a newer version of the add-on (2005-08-01) for hoary is ready. will be uploading on monday
zencoder
August 7th, 2005, 12:35 AM
i'm not sure bout Breezy add-on, but a newer version of the add-on (2005-08-01) for hoary is ready. will be uploading on monday
Wow, this sounds great...I've just breezed through this thread, and it looks like a few versions of this CD have been made...is there an official site, repository, or location? I know you were looking for hosting...I'm just saying at first glance, this is kind of confusing. You've got a fairly active thread here, with several versions linked, some of which are dead links...you should consider getting a stable page or location (sourceforge?) to document changes and updates, and to point to the latest stable version.
Just my $0.02. I look forward to trying out this tool!!!
jiyuu0
August 7th, 2005, 03:36 AM
i'm currently uploading
2005-08-01 build :-)
will let u all know when it's ready to be downloaded
jiyuu0
August 7th, 2005, 07:11 PM
OK. Uploaded :-)
Download:
ubuntu-5.04-add-on-cd-2005-08-01.tgz (http://www.frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-2005-08-01.tgz)
More Info:
http://ubuntuforums.org/showpost.php?p=150088&postcount=1
Since there are still plenty of space in the CD, some extras :-)
Linux Extras (/media/cdrom0/packages/linux/extras/):
-The Linux Documentation Project - HOWTOs
Windows Extras (/media/cdrom0/packages/windows/extras/):
-Firefox 1.06
-Thunderbird 1.06
-Gaim 1.4.0
-Gimp 2.2.8
-etc
AndrewB
August 7th, 2005, 08:30 PM
Thanks for the great guide, and cd info. I get used to Hoary, bout the time Breezy comes out! :)
floppy
August 7th, 2005, 11:08 PM
Thank you so much. Your add-on puts the icing on the cake.
jerrykenny
August 18th, 2005, 04:53 PM
Jiyuu0, I'm currently downloading this to post to someone else with a 56k connection.
I've no limit on my own uploading (albeit only 256k) . . . quite happy to upload as a bittorrent if you think thats the way to go ?
valnar
August 31st, 2005, 03:46 PM
jiyuu0,
Will you be putting out a Breezy "edition" of this CD?
Robert
mailmaldi
September 6th, 2005, 05:14 PM
u rock jiyuu0....
the only thing that didnt work from the add-on was the sound fixing part..(intel 915GAV motherboard... ](*,) )
the rest working smoothly and nicely...
gr8 work....
also if someun can help me out here....
i downloaded a lot of packages such as KDE,anjuta etc & all packages are in /var/cache/apt/archives.....
now i want to install the same packages on all my friends's pc's....
so how do i do it??
i vaguely remember seeing somewhere to create a backup of my apt-archives which i can restore later...can someun temme how...
i wanna be able to do apt-get install kubuntu-desktop on my friends pcs too...
oldlucky
September 8th, 2005, 02:55 AM
What a great idea thanks to all you involved here this truly is a great distrubution.
I am almost ready to ditch windoze for good and this sort of addon makes it all the easier to do , just one question will the cd be updated again or will this be the last of the addon's for hoary (2005-08-01).
Cheers
jiyuu0
September 8th, 2005, 09:31 PM
What a great idea thanks to all you involved here this truly is a great distrubution.
I am almost ready to ditch windoze for good and this sort of addon makes it all the easier to do , just one question will the cd be updated again or will this be the last of the addon's for hoary (2005-08-01).
Cheers
i think 2005-08-01 release is the last for hoary.
i can't promise breezy add-on cd yet, but if time permit it should be available 1 month after the release of breezy ;)
valnar
September 8th, 2005, 10:02 PM
but if time permit it should be available 1 month after the release of breezy ;)
Then I will load Breezy one month after it comes out. \\:D/
-Robert
Sheytan
September 21st, 2005, 02:40 AM
Great job :)
I could quite to get ubuntu to work following the guide, but with the Add-on cd
everything works perfectly
Larry-in-Eastbay
September 21st, 2005, 10:48 PM
Great job :)
I could quite to get ubuntu to work following the guide, but with the Add-on cd
everything works perfectly
Being another interested but not knowing type....
Why would this disc not work with the 5.10 version?
What would go wrong if I tried?
What kind of evil things will it do?
How exactly does this disc work in terms of installing the apps and is it not windows like where the app senses the version and installs accordingly?
I read this thread and though it helped make up my mind on installing ubuntu this weekend but it confusing since the 5.10 is now recommended for fixing alot of bugs but apparently this quickie easy CD will not work on that and only on the older and more buggy 5.04.
And then there is all the 5.04 to 5.10 updates that crash so that seems like the least attractive method.
Is there a way that the disc can be made to update or check for update all these add ons. I have been reading these one at a time installs is a bit painful in terms of boredome/time consuming and occasional bug to fix so a one big swoop install is nice, kind of like the other one I have been looking at (SUSE with all those disks you get, for free).
I am interested in hearing from everyone. Maybe the updating to 5.10 is not as buggy as it appears on this forum and I should install 5.04 with this add on disk then update?
TAKE CARE NOW EVERYONE!
chettyk
September 25th, 2005, 12:29 PM
jiyuu0, you are the greatest! I practically sleep with your unofficial guide under my pillow. And this Add-On CD is just what I was looking for.
I have already used apt-get to download and install some of the stuff on the CD. Could that create a problem when I run the CD? I should think not. Anyway, I am going to give the CD a try.
darkjedi8359
September 29th, 2005, 02:18 AM
thank you for your great work, this saves me a lot of time :)
chettyk
September 29th, 2005, 01:23 PM
I have already used apt-get to download and install some of the stuff on the CD. Could that create a problem when I run the CD? I should think not. Anyway, I am going to give the CD a try.
Well, I went right ahead and ran the install script on the Add-On CD. After I installed Ubuntu 5.04, I had added the multiverse and universe repos in the sources.list, and run update and upgrade. Plus I had installed Thunderbird and stuff like Firestarter, flashplayer etc. It was only after this that I used the Add-On CD. It worked like a charm. In a matter of minutes, I installed all the additional software I required and the script also made the required configuration changes. I am delighted and thrilled. This CD is just what Ubuntu lacked all this while.
urbandryad
September 30th, 2005, 08:51 PM
wait, the add-ons aren't already part of the Ubuntu iinstall CD already? Great, I have to find a way to burn this to disc. XD
linuxeiro
October 4th, 2005, 05:26 PM
.
towsonu2003
October 13th, 2005, 03:32 AM
Hi,
Being a paranoid newbie, how do you update/upgrade these packages? I assume they won't automatically be updated by synaptic as synaptic categorizes those packages as
Status: Installed (Local or Obsolete)
If it's local or obsolete, I wouldn't expect it to update it, right?
Also, I unchecked the repository entry {cdrom:[Ubuntu 5.04 _Hoary Hedgehog_ - Release i386 (20050407)]/} in synamptic, thinking that a cd is now useless. is this your cd, written by your script, or something else (I don't know how to read scripts...)?
chrisblack
October 24th, 2005, 06:10 AM
Will the 2005-08-01 work on 5.10, or do we have to wait for you to release the update???
Chris
valnar
October 24th, 2005, 06:18 AM
I think we are to assume that these are adequate replacements for Breezy.
http://ubuntuforums.org/forumdisplay.php?f=86
-Robert
andlinux21
October 24th, 2005, 02:12 PM
So they don't have a ADD-On CD for 5.10 yet?:confused:
mveljko78
November 3rd, 2005, 03:21 PM
i have no internet connection and i'm struggling loneger than a week to enable multimedia but in vain.
is there some package smaller than cd so it can fit my usb 128mb?
:(
Georgie-o
November 3rd, 2005, 05:17 PM
Does this install correct the problem of a slow internet connection with the Ubuntu-installed Firefox. I have read elsewhere that by unloading the Ubuntu-installed Friefox and reinstalling one directly from Firefox that the performance and speed will be greatly improved. I have not done this yet because the fix seems a little out of my league...
onfyreforjesus
November 6th, 2005, 01:27 AM
Dear Jiyuu,
when will you launch the unofficial add on cd for breezy?
will you support x86-64
dying to live in a windows free world.
Pls include ardour, rosegarden and jamin and other stuff related to a home studio.
Pls do somethin for all musicians too.
:???: ;)
God Bless
Inspector Hector
November 6th, 2005, 02:40 PM
Jiyuu is taking a rest (for good reasons!) for some time, so he won't have the time for 5.10 cd.
http://ubuntuforums.org/showthread.php?t=77704
Properly, the new maintainer(s) will start to build it.
tOpEzz
November 22nd, 2005, 02:47 AM
kool!!! look like i'm gonna learn linux from now...
minghai
January 9th, 2006, 01:40 AM
Hi, does anyone have any leads to anybody working on a 5.10 Add-On CD? Thanks!
Ming Hai
aysiu
January 9th, 2006, 01:45 AM
Hi, does anyone have any leads to anybody working on a 5.10 Add-On CD? Thanks!
Ming Hai No leads. This may help, though:
https://wiki.ubuntu.com/AptMoveHowto
indraveni
June 7th, 2006, 07:14 AM
Hi,
For those who:
-have no/slow internet connections
-have problems connecting to ubuntu and backports repositories
-are too lazy to do all the apt-get and commands
-are new to linux and doesn't know much about it
-just wants things to be configured right
-wants ubuntu to be multimedia and internet ready
Unofficial Ubuntu 5.04 Add-On CD
Includes:
UbuntuGuide (http://ubuntuguide.org)
Bootable SystemRescueCd (http://sysresccd.org)
-contain tools like Partition Manager (that can resize Windows), etc.
An install script (ug-install.sh) that will:
-custom/auto install all the Add-On Apps mentioned in UbuntuGuide (no internet connection required)
-fix the sound prob (for most computers)
-associate dvd, multimedia files to open with xine-ui and xmms rather than totem
-associate graphic files to open with gthumb
-improve fonts appearance in GNOME desktop
Linux Extras (/media/cdrom0/packages/linux/extras/):
-The Linux Documentation Project - HOWTOs
Windows Extras (/media/cdrom0/packages/windows/extras/):
-Firefox 1.06
-Thunderbird 1.06
-Gaim 1.4.0
-Gimp 2.2.8
-etc
To install/extract the Add-On CD:
sudo sh /media/cdrom0/install.sh
*This will only copy the packages into your hardisk. A copy of UbuntuGuide will be located on Desktop
To custom install Add-On Apps after install/extract the Add-On CD:
sudo sh $HOME/ug-install.sh
*This will prompt you [Y/n/q] to install all the Add-On Apps
Optional - To auto/unattended install Add-On Apps after install/extract the Add-On CD:
sudo sh $HOME/ug-install.sh -auto
*This will save you lots of time. It will assumed Y to install all. Apps that needs input will only appear at the end of installation
Once the script (ug-install.sh) is installed, things are in place and multimedia, internet apps are ready to go...
Download:
ubuntu-5.04-add-on-cd-2005-08-01.tgz (http://www.frankandjacq.com/ubuntuguide/add-on-cd/ubuntu-5.04-add-on-cd-2005-08-01.tgz)
-UbuntuGuide 4.17
-Applications Snapshots (2005-08-01)
Mirror (make sure the version number is the latest):
http://www.mrbass.org/linux/ubuntu/
I want to know what does the script ug-install.sh contains.
Since I also want to create a CD which will allow user to autoinstall/ustom the Applications from CD jsut like the AddOn CD.
So please can any one tell me what does this script ug-install.sh contcain which is responsible for the CD to run and how to create such CD.
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.