Ok due to many reasons i'd rather not get into I have had to reinstall Kubuntu many times. I just noticed synaptic you can generate an sh script from the programs you selected. I did that but noticed the script it created didn't have a space after wget -chttp:www.stuff......
I did a search and replace and put a space there then the script ran fine for me. However it only downloaded them and didn't install them so I typed dpgk -i *.deb and that seemed to work pretty good. Followed by a rm *.deb to clean everything up. However I would like to add the dpkg and the rm to the script how do I do that?
Also but less important how would I go about creating a kubuntu cd with all that software on it already and have it install?
Preview of my file:
#!/bin/sh
wget -c http://us.archive.ubuntu.com/ubuntu/....22-4_i386.deb
wget -c http://us.archive.ubuntu.com/ubuntu/...11-13_i386.deb
I did a search and replace and put a space there then the script ran fine for me. However it only downloaded them and didn't install them so I typed dpgk -i *.deb and that seemed to work pretty good. Followed by a rm *.deb to clean everything up. However I would like to add the dpkg and the rm to the script how do I do that?
Also but less important how would I go about creating a kubuntu cd with all that software on it already and have it install?
Preview of my file:
#!/bin/sh
wget -c http://us.archive.ubuntu.com/ubuntu/....22-4_i386.deb
wget -c http://us.archive.ubuntu.com/ubuntu/...11-13_i386.deb
Comment