LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-26-2013, 01:41 PM   #16
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373

Quote:
Originally Posted by TroN-0074 View Post
Thanks, Perhaps that will be good for Juc1 to wait for the new release to be available in just few more weeks
I would expect that to require a clean install as there will be lots of major changes. Even to do an in-place install you would have to update to squeeze fully before then going up to wheezy -- skipping one would be far too much as far as I can see.
 
1 members found this post helpful.
Old 04-26-2013, 01:49 PM   #17
TroN-0074
Senior Member
 
Registered: Dec 2011
Location: Michigan USA
Distribution: OpenSUSE 13.2 64bit-Gnome on ASUS U52F
Posts: 1,444

Rep: Reputation: 340Reputation: 340Reputation: 340Reputation: 340
I have been using Debian for about 6 months. I have been issuing the command
Code:
# apt-get update
and
Code:
# apt-get upgrade
once a week so I think I have all my apps updated but my concerning is with the release upgrade.

Juc1 you should run these two commands above too, make sure you do so as root. To become root open up a terminal and type
Code:
su
then type your password, you will see the change on the prompt from a $ to a # that means you are root

Good luck to you.
 
1 members found this post helpful.
Old 04-26-2013, 01:57 PM   #18
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
You won't update to the next version automatically. If your sources.list is pointing to squeeze you would need to change it to point to wheezy then run apt-get update and apt-get dist-upgrade to install the upgraded packages. BUT, and it's a big BUT, that would probably break things and the real way would be to update the packages carefully as caravel mentioned.
I have just remembered that it is also possible to have "stable" in your sources.list and in that case I believe that all that will be required is apt-get dist-upgrade -- again though some packages will need to be upgraded first.
 
1 members found this post helpful.
Old 04-26-2013, 02:08 PM   #19
Juc1
Member
 
Registered: Sep 2011
Location: UK
Posts: 83

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by 273 View Post
You won't update to the next version automatically. If your sources.list is pointing to squeeze you would need to change it to point to wheezy then run apt-get update and apt-get dist-upgrade to install the upgraded packages. BUT, and it's a big BUT, that would probably break things and the real way would be to update the packages carefully as caravel mentioned.
I have just remembered that it is also possible to have "stable" in your sources.list and in that case I believe that all that will be required is apt-get dist-upgrade -- again though some packages will need to be upgraded first.
Ok so have I got this right:
- what happens with apt-get dist-upgrade is determined by /etc/apt/sources.list.
- if I have Debian 5 there is no risk in upgrading to the latest Debian 5 packages but there is some risk in upgrading from 5 to 6, or 6 to 7 etc.

Thanks...

Last edited by Juc1; 04-26-2013 at 02:41 PM.
 
Old 04-26-2013, 02:22 PM   #20
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by Juc1 View Post
Ok so have I got this right:
- what happens with apt-get dist-upgrade is determined by etc/apt/sources.list.
- if I have Debian 5 there is no risk in upgrading to the latest Debian 5 packages but there is some risk in upgrading from 5 to 6, or 6 to 7 etc.

Thanks...
As I understand it "apt-get upgrade" won't update major versions (e.g from kernel 3.2 to 3.8) but will just upgrade minor versions and bug/security fixes. So, if you have "stable" in your sources.list then you'll effectively stay on whichever stable version (e.g. lenny) you started on if you just use "apt-get update". If you use "apt-get dist-upgrade" though you will update major version numbers so if you have "stable" in your sources.list then when a new stable version is out you will start pulling packages from that version including things like the kernel version.
If you have "lenny" only in your sources.list though you will only get lenny updates no matter which you use. dist-upgrade can also install new packages and remove old ones though so there may be a difference even with "lenny" in sourcse.list.

At least, the above is my understanding and I'm happy to be corrected.
I use Sid and the difference I see is that a "dist-upgrade" will pull down new packages and major version updates and plain old upgrade only minor version updates.

Last edited by 273; 04-26-2013 at 04:44 PM. Reason: Corrected "update" to "upgrade" as per later post.
 
1 members found this post helpful.
Old 04-26-2013, 02:43 PM   #21
Juc1
Member
 
Registered: Sep 2011
Location: UK
Posts: 83

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by TroN-0074 View Post
I have been using Debian for about 6 months. I have been issuing the command
Code:
# apt-get update
and
Code:
# apt-get upgrade
once a week so I think I have all my apps updated but my concerning is with the release upgrade.
So what is your /etc/apt/sources.list when you are doing this?


Thanks...
 
Old 04-26-2013, 04:34 PM   #22
Juc1
Member
 
Registered: Sep 2011
Location: UK
Posts: 83

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by 273 View Post
As I understand it "apt-get update" won't update major versions (e.g from kernel 3.2 to 3.8) but will just upgrade minor versions and bug/security fixes.
Do you mean apt-get upgrade?

Thanks...
 
Old 04-26-2013, 04:42 PM   #23
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by Juc1 View Post
Do you mean apt-get upgrade?

Thanks...
Yes, sorry, I'm so used to typing update and dist-upgrade I can't type upgrade on its own properly...
 
Old 04-26-2013, 04:54 PM   #24
Juc1
Member
 
Registered: Sep 2011
Location: UK
Posts: 83

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by 273 View Post
Yes, sorry, I'm so used to typing update and dist-upgrade I can't type upgrade on its own properly...
OK so I guess I need to update my Debian 5 packages for now and then think about Debian 6 another time. Is my Debian definitely Lenny or is that still not clear?

Thanks...
 
Old 04-26-2013, 05:06 PM   #25
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
You're on the 2.6.32 kernel so it looks like you have been getting squeeze updates so you are kind-of on squeeze. However, there are a lot of packages apt wants to replace and update in order for you to have a fully patched-up squeeze install. As I said, if you could stand to have downtime (with a remote possibility of having to reinstall) then I'd say just go for it and run the dist-upgrade but there are things like Apache version updates which could possibly break things. Unfortunately having not updated these packages myself I can't tell you how likely problems will be so I can only be cautious.

You should probably try just an "apt-get upgrade" as you ought to do that regularly but, there again, how long is it until you can risk the full upgrade?

Last edited by 273; 04-26-2013 at 05:08 PM.
 
1 members found this post helpful.
Old 04-26-2013, 05:28 PM   #26
Juc1
Member
 
Registered: Sep 2011
Location: UK
Posts: 83

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by 273 View Post
you are kind-of on squeeze...
OK I thought it was lenny or squeeze, I didn't realise there was a 'kind of'.

Quote:
You should probably try just an "apt-get upgrade" as you ought to do that regularly but, there again, how long is it until you can risk the full upgrade?
Here is apt-get upgrade but is that risky? If it is then maybe I will just wait about 6 weeks until I have moved the important stuff to another server.

Thanks...

Code:
$ cat /etc/apt/sources.list
deb http://ftp.ca.debian.org/debian squeeze main contrib non-free
# deb http://ftp.de.debian.org/debian-volatile squeeze/volatile main contrib non-free
deb http://ftp.de.debian.org/debian-security squeeze/updates main contrib non-free
# deb http://packages.dotdeb.org squeeze all
# deb-src http://packages.dotdeb.org squeeze all

$ apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages have been kept back:
  apache2 apache2-mpm-prefork apache2-prefork-dev apache2.2-common apt apt-utils aptitude
  at bind9 bind9utils binutils coreutils cpp cpp-4.3 cron debianutils default-jdk
  default-jre default-jre-headless diff dnsutils e2fsprogs ecj ecj-gcj fetchmail g++
  g++-4.3 gcc gcc-4.3 gcc-4.3-base gettext gij host html2text iproute iptables krb5-config
  libapache2-mod-perl2 libapache2-mod-php5 libapache2-mod-python libaprutil1
  libaprutil1-dev libbind-dev libc6 libc6-dev libclass-accessor-perl libcups2 libcups2-dev
  libcurl3 libcurl4-openssl-dev libdbd-mysql-perl libdevmapper1.02.1 libecj-java-gcj
  libedit2 libgcc1 libgcj-bc libglib2.0-0 libgomp1 libgtk2.0-0 libjpeg-progs libkrb5-dev
  libkrb53 libmozjs-dev libnss-ldap libodbcinstq1c2 libpam-krb5 libpam-modules
  libpam-runtime libpango1.0-0 libpq-dev libpq5 libsasl2-2 libsasl2-dev libsasl2-modules
  libsnmp-dev libsnmp-perl libsnmp15 libstdc++6 libstdc++6-4.3-dev libthai-data libthai0
  libts-0.0-0 libwbclient0 libx11-6 libx11-dev libxcb1 libxcb1-dev libxi-dev libxi6
  lintian locales lprng lynx lynx-cur man-db mktemp nmap nscd openssh-client
  openssh-server parted php-pear php5-cgi php5-cli php5-common php5-curl php5-dev php5-gd
  php5-imap php5-mysql php5-xsl python python-dev python-minimal python2.5 python2.5-dev
  python2.5-minimal quota samba-common sasl2-bin smbfs snmp sudo sysv-rc talkd unixodbc
  unixodbc-dev update-inetd util-linux webalizer x11proto-input-dev
The following packages will be upgraded:
  adduser antlr apache2-doc apache2-utils ash autoconf autoconf2.13 automake1.4
  automake1.7 automake1.9 autotools-dev awstats base-passwd bash bc bison bsd-mailx
  bsdmainutils bsdutils bzip2 ca-certificates comerr-dev console-common console-data
  console-tools console-tools-dev cpio cracklib-runtime cvs dash db4.6-util debconf
  debconf-i18n debconf-utils debhelper debian-archive-keyring debian-policy debiandoc-sgml
  debootstrap defoma developers-reference devscripts dh-make dhcp3-common dialog diffstat
  dosfstools dpatch dselect e2fslibs e2fslibs-dev ed emacsen-common esound-common expat
  fail2ban fakeroot fastjar file findutils finger flex fontconfig fontconfig-config
  freetds-common freetds-dev ftp gawk gettext-base gettext-el gnupg gpgv grep groff
  groff-base gzip hostname ifupdown info initscripts iputils-arping iputils-ping
  iputils-tracepath java-common joe klogd ldap-utils less lesstif2 lesstif2-dev libacl1
  libantlr-java libapache2-mod-fcgid libapr1 libapr1-dev libasound2 libatk1.0-0 libattr1
  libaudio-dev libaudio2 libaudiofile0 libauthen-pam-perl libbcel-java libblkid1
  libbz2-1.0 libbz2-dev libcairo2 libcap2 libcomerr2 libconsole libconvert-asn1-perl
  libcrack2 libct4 libcwidget3 libdb1-compat libdb4.6 libdb4.6-dev libdbi-perl
  libdevel-symdump-perl libecj-java libesd0 libexpat1 libexpat1-dev libfcgi0ldbl
  libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev libfreezethaw-perl
  libgcj-common libgcrypt11 libgcrypt11-dev libgd2-xpm libgd2-xpm-dev libgdbm3 libgeoip1
  libgif4 libgl1-mesa-swx11 libgl1-mesa-swx11-dev libglu1-mesa libglu1-mesa-dev libgmp3c2
  libgnutls-dev libgnutls26 libgpg-error-dev libgpg-error0 libgpm2 libgtk2.0-common
  libhesiod0 libhtml-parser-perl libhtml-tree-perl libice-dev libice6 libidn11
  libidn11-dev libjpeg62 libjpeg62-dev libkeyutils1 liblcms1 liblcms1-dev libldap-2.4-2
  libldap2-dev liblocale-gettext-perl liblockfile-dev liblockfile1 liblog4j1.2-java
  libmagic1 libmailtools-perl libmhash-dev libmhash2 libmime-perl libmime-tools-perl
  libmldbm-perl libmldbm-sync-perl libmng-dev libmng1 libmx4j-java libncursesw5
  libnet-daemon-perl libnet-ssleay-perl libnetpbm10 libnewt0.52 libnspr4-0d libnspr4-dev
  libosmesa6 libosp5 libpam0g libpam0g-dev libpango1.0-common libpaper1
  libparse-debianchangelog-perl libpcap0.8 libpcre3 libpcre3-dev libpcrecpp0 libperl5.10
  libpixman-1-0 libplrpc-perl libpng12-0 libpng12-dev libpng3 libpopt-dev libpopt0
  libpthread-stubs0 libpthread-stubs0-dev libqt3-headers libqt3-mt libqt3-mt-dev
  libreadline5 librecode-dev librecode0 libregexp-java libroman-perl libselinux1
  libsensors-dev libsensors3 libsepol1 libsigc++-2.0-0c2a libslang2 libsm-dev libsm6
  libsnmp-base libsqlite3-0 libsqlite3-dev libss2 libssh2-1 libssh2-1-dev libstdc++5
  libsybdb5 libsysfs2 libt1-5 libt1-dev libtasn1-3 libtasn1-3-dev libtext-charwidth-perl
  libtext-iconv-perl libtext-wrapi18n-perl libtiff4 libtimedate-perl libtool liburi-perl
  libusb-0.1-4 libuuid1 libwrap0 libwrap0-dev libwww-perl libx11-data libxau-dev libxau6
  libxaw7 libxaw7-dev libxcb-render-util0 libxcb-render0 libxcomposite1 libxcursor-dev
  libxcursor1 libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes-dev
  libxfixes3 libxft-dev libxft2 libxinerama-dev libxinerama1 libxml2 libxml2-dev
  libxmlrpc-c3 libxmu-dev libxmu-headers libxmu6 libxmuu-dev libxmuu1 libxpm-dev libxpm4
  libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxslt1-dev libxslt1.1 libxt-dev
  libxt6 libxtst-dev libxtst6 libxv-dev libxv1 libzzip-0-13 libzzip-dev linux-libc-dev
  login logrotate lsb-base lsb-release lsof m4 mailman make makedev man2html manpages mawk
  mesa-common-dev mime-support mingetty mlock modconf module-init-tools mount mtools
  mysql-common nano ncftp ncompress ncurses-base ncurses-bin ncurses-term net-tools
  netbase netpbm nvi openssl openssl-blacklist passwd patch pbuilder perl perl-base
  perl-modules perl-suid pidentd pkg-config po-debconf portmap procmail procps psmisc
  psutils pump pwgen python-central python-libxml2 python-support qt3-dev-tools
  readline-common rsync screen sed sendmail-cf sendmail-doc sensible-mda sgml-base
  sgml-data sharutils shtool sqlite3 ssh ssl-cert strace stunnel stunnel4 sysklogd
  syslinux syslinux-common sysvinit sysvinit-utils talk tar tasksel tasksel-data tcl8.4
  tcl8.4-dev tcl8.4-doc tcpd tcpdump tcsh traceroute tree ttf-dejavu ttf-dejavu-core
  ttf-dejavu-extra tzdata ucf units unzip usbutils uuid-dev vim vim-common vim-runtime
  wget whiptail whois wwwconfig-common x11-common x11proto-core-dev x11proto-fixes-dev
  x11proto-kb-dev x11proto-randr-dev x11proto-record-dev x11proto-render-dev
  x11proto-video-dev x11proto-xext-dev x11proto-xinerama-dev xml-core xsltproc xtrans-dev
  yada zlib1g zlib1g-dev
412 upgraded, 0 newly installed, 0 to remove and 131 not upgraded.
Need to get 158MB of archives.
After this operation, 36.2MB of additional disk space will be used.
Do you want to continue [Y/n]? n
Abort.
$
 
Old 04-26-2013, 05:40 PM   #27
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
It's hard to say whether those packages would cause problems or not.
If your install were "normal" then an apt-get update ought not to cause any problems at all as packages should be tested for their mutual compatibility -- but you would check for bug reports before updating to be sure.
The difficulty I'm having here is that usually you would run "apt-get upgrade" every week or so, check which packages were to be upgraded, double check that there were no reported issues, then decide if and when to update them. This would usually be about half a dozen packages at most and usually almost obvious whether there would be problems. However, because you have a lot to update going through them all to look for bug reports would take a long time and it's difficult to know whether you'd find any odd problems with packages needing to be updated in a certain order.
How long ago did you install this system, and how was it done? I'm tempted to guess it was installed using a lenny disc, maybe a live one, since squeeze has been promoted to stable?
 
1 members found this post helpful.
Old 04-26-2013, 06:31 PM   #28
Juc1
Member
 
Registered: Sep 2011
Location: UK
Posts: 83

Original Poster
Rep: Reputation: 6
Quote:
Originally Posted by 273 View Post
It's hard to say whether those packages would cause problems or not.
If your install were "normal" then an apt-get update ought not to cause any problems at all as packages should be tested for their mutual compatibility -- but you would check for bug reports before updating to be sure.
The difficulty I'm having here is that usually you would run "apt-get upgrade" every week or so, check which packages were to be upgraded, double check that there were no reported issues, then decide if and when to update them. This would usually be about half a dozen packages at most and usually almost obvious whether there would be problems. However, because you have a lot to update going through them all to look for bug reports would take a long time and it's difficult to know whether you'd find any odd problems with packages needing to be updated in a certain order.
How long ago did you install this system, and how was it done? I'm tempted to guess it was installed using a lenny disc, maybe a live one, since squeeze has been promoted to stable?
It was installed by the web host in pre-squeeze days. So I guess I will not upgrade now and just wait another few weeks. By the way for future reference re your "check for bug reports" is there a central URL that lists bug reports for Debian or Ubuntu packages or do you just mean googling? Also are there remedies in the event of an updated Debian or Ubuntu package causing a problem?

Thanks...
 
Old 04-26-2013, 07:11 PM   #29
TroN-0074
Senior Member
 
Registered: Dec 2011
Location: Michigan USA
Distribution: OpenSUSE 13.2 64bit-Gnome on ASUS U52F
Posts: 1,444

Rep: Reputation: 340Reputation: 340Reputation: 340Reputation: 340
Smile

Quote:
Originally Posted by Juc1 View Post
So what is your /etc/apt/sources.list when you are doing this?


Thanks...
This is my list
Quote:
#

# deb cdrom:[Debian GNU/Linux 6.0.5 _Squeeze_ - Official i386 CD Binary-1 20120512-13:45]/ squeeze main

deb cdrom:[Debian GNU/Linux 6.0.5 _Squeeze_ - Official i386 CD Binary-1 20120512-13:45]/ squeeze main

deb http://ftp.us.debian.org/debian/ squeeze main non-free contrib
deb-src http://ftp.us.debian.org/debian/ squeeze main non-free contrib

deb http://security.debian.org/ squeeze/updates main non-free contrib
deb-src http://security.debian.org/ squeeze/updates main non-free contrib

# squeeze-updates, previously known as 'volatile'
deb http://ftp.us.debian.org/debian/ squeeze-updates main
deb http://ftp.us.debian.org/debian/ squeeze-proposed-updates non-free contrib main
deb-src http://ftp.us.debian.org/debian/ squeeze-proposed-updates non-free contrib main
deb-src http://ftp.us.debian.org/debian/ squeeze-updates main
deb http://ftp.us.debian.org/debian squeeze main contrib non-free
deb ftp://ftp.deb-multimedia.org squeeze main non-free
# deb http://ppa.launchpad.net/mozillateam...-stable/ubuntu lucid main
But I am not too concerned about updated packages as I am with the release upgrade comming soon. I also want to remain on stable There is a little screen shot of my desktop
Attached Thumbnails
Click image for larger version

Name:	Screenshot.jpg
Views:	32
Size:	162.7 KB
ID:	12411  

Last edited by TroN-0074; 04-26-2013 at 07:48 PM.
 
1 members found this post helpful.
Old 04-27-2013, 02:56 PM   #30
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by Juc1 View Post
OK I thought it was lenny or squeeze, I didn't realise there was a 'kind of'.
It's possible to be partially upgraded between releases - which is the state your system is in now - but it still seems to be mostly Lenny.

The 2.6.32 kernel you're running is not the squeeze kernel, that much is obvious from the output of uname -a, by the looks of it your host had something to do with that. Indeed you don't seem to have any debian kernel installed at all. It may actually make your upgrade easier however as you will need a newer kernel for the udev changes in squeeze.

Ultimately this is up to you. You can try to upgrade (again read the release notes), or you can change your sources to track the debian archive and just continue with Lenny. You may also be able to downgrade anything which got upgraded to squeeze. Continuing on Lenny however would mean running an unsupported and insecure system.

@TroN-0074: Third line from the bottom in your sources is a duplicate + buntu ppas should not be installed in Debian unless you know exactly what you're doing and trust the source.

Last edited by cynwulf; 04-27-2013 at 03:00 PM.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Debian, apt-update not working shorto Linux - Newbie 2 03-02-2009 11:20 AM
Problem while apt-get update on debian etch, cannot reach security.debian.org sarajevo Debian 4 06-08-2008 11:59 AM
apt-get update error (Debian 4.0) RHTopics Debian 3 11-08-2007 01:49 PM
apt-get update errors since Debian released ( bad /etc/apt/sources.list ?) forgox Debian 10 06-13-2005 12:28 PM
Ok, when one runs apt-get on knoppix does it update it to the full debian sid version maximalred Debian 1 06-24-2004 06:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:01 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration