apt and other sources.

2001-07-17 Thread Halil Demirezen


When I first install the Debian, I have specified apt source -
cdrom. But, after I downloaded a deb pack. into the harddisk, I could not
install it by using apt-get install ... 
Can you give example changes in the
/usr/share/doc/apt/examples/source.list file?

Should I configure this file or take another action to achieve installing
a deb package in the harddisk (e.g /dev/hda1).

Sevgi, Saygi, LINUX!!!
(Love, Respect, LINUX!!!)


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




apt and other sources.

2001-07-17 Thread Halil Demirezen



Sevgi, Saygi, LINUX!!!

On Tue, 17 Jul 2001, Halil Demirezen wrote:

 
 When I first install the Debian, I have specified apt source -
 cdrom. But, after I downloaded a deb pack. into the harddisk, I could not
 install it by using apt-get install ... 
 Can you give example changes in the
 /usr/share/doc/apt/examples/source.list file?
 
 Should I configure this file or take another action to achieve installing
 a deb package in the harddisk (e.g /dev/hda1).
 
 Sevgi, Saygi, LINUX!!!
 (Love, Respect, LINUX!!!)
 
 


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: apt and other sources.

2001-07-17 Thread Sebastiaan

On Tue, 17 Jul 2001, Halil Demirezen wrote:

 
 When I first install the Debian, I have specified apt source -
 cdrom. But, after I downloaded a deb pack. into the harddisk, I could not
 install it by using apt-get install ... 
 Can you give example changes in the
 /usr/share/doc/apt/examples/source.list file?
 
Hello,

you can install an individual package by:
dpkg --install package.deb

But if you want to download more packages and use apt, add these lines to
/etc/apt/sources.list:
deb ftp://ftp.nl.uu.net/debian testing main contrib non-free
deb ftp://ftp.nl.uu.net/debian stable main contrib non-free

deb http://non-us.debian.org/debian-non-US stable/non-US main contrib  non-free
deb http://non-us.debian.org/debian-non-US testing/non-US main contrib non-free

deb http://security.debian.org/debian-security/ potato/updates main contrib
deb http://security.debian.org/debian-non-US/ potato/non-US main contrib

deb-src ftp://ftp.nl.uu.net/debian stable main contrib non-free


This will give you access to the stable (potato) and testing (woody)
archive, as well as to non-us, security updates and sources. Change
ftp.nl.uu.net with your favorite (nearby) server.
Then run:
apt-get update


If you install a package now with apt, dependencies are solved.


 Should I configure this file or take another action to achieve installing
 a deb package in the harddisk (e.g /dev/hda1).
 
You could have a local archive for packages, but that is only attractive
if you have losts of non-debian distributed packages.

Greetz,
Sebastiaan


 Sevgi, Saygi, LINUX!!!
 (Love, Respect, LINUX!!!)
 
 
 --  
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: apt and other sources.

2001-07-17 Thread Mike Renfro

On Tue, Jul 17, 2001 at 02:04:23PM +0200, Sebastiaan wrote:

 But if you want to download more packages and use apt, add these lines to
 /etc/apt/sources.list:
 deb ftp://ftp.nl.uu.net/debian testing main contrib non-free
 deb ftp://ftp.nl.uu.net/debian stable main contrib non-free

...as his previously all-stable machine turns slowly into a testing
system.

 deb http://security.debian.org/debian-security/ potato/updates main contrib
 deb http://security.debian.org/debian-non-US/ potato/non-US main contrib

And since most packages in testing will have higher version numbers
than those in either stable *or* in security, he won't get too many
security updates, either.

 deb-src ftp://ftp.nl.uu.net/debian stable main contrib non-free

And he will only have easy access to stable source code that will
be increasingly irrelevant to his rapidly-approaching-testing system.

Instead, how about:

deb ftp://your.nearby.debian.mirror/debian potato main contrib non-free
deb ftp://non-us.debian.org/debian-non-US potato/non-US main contrib non-free
deb ftp://security.debian.org/ potato/updates main contrib non-free

and

deb-src ftp://your.nearby.debian.mirror/debian RELEASE main contrib non-free
deb-src ftp://non-US.debian.org/debian-non-US RELEASE/non-US main contrib non-free

(In the deb-src lines, use either stable, testing, or unstable where
I've indicated RELEASE)

-- 
Mike Renfro  / RD Engineer, Center for Manufacturing Research,
931 372-3601 / Tennessee Technological University -- [EMAIL PROTECTED]


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: apt and other sources.

2001-07-17 Thread Mike Dresser

 Instead, how about:

 deb ftp://your.nearby.debian.mirror/debian potato main contrib non-free
 deb ftp://non-us.debian.org/debian-non-US potato/non-US main contrib non-free
 deb ftp://security.debian.org/ potato/updates main contrib non-free

 and

 deb-src ftp://your.nearby.debian.mirror/debian RELEASE main contrib non-free
 deb-src ftp://non-US.debian.org/debian-non-US RELEASE/non-US main contrib non-free

deb http://http.us.debian.org/debian stable main contrib non-free
deb http://non-us.debian.org/ stable non-US/main non-US/contrib non-US/non-free
deb http://security.debian.org/ stable/updates main contrib non-free
deb http://security.debian.org/debian-non-US stable/non-US main contrib non-free
deb http://security.debian.org/debian-security stable/updates main contrib non-free
deb http://http.us.debian.org/debian dists/proposed-updates/

Over the years, this is what I seem to have accumulated.  Any comments/suggestions?
The proposed-updates, was because of a package not making it into security.d.o due to
whatever reason it was at the time.

Mike Dresser



--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




apt and other sources.

2001-07-17 Thread Halil Demirezen

When I first install the Debian, I have specified apt source -
cdrom. But, after I downloaded a deb pack. into the harddisk, I could not
install it by using apt-get install ... 
Can you give example changes in the
/usr/share/doc/apt/examples/source.list file?

Should I configure this file or take another action to achieve installing
a deb package in the harddisk (e.g /dev/hda1).

Sevgi, Saygi, LINUX!!!
(Love, Respect, LINUX!!!)



apt and other sources.

2001-07-17 Thread Halil Demirezen


Sevgi, Saygi, LINUX!!!

On Tue, 17 Jul 2001, Halil Demirezen wrote:

 
 When I first install the Debian, I have specified apt source -
 cdrom. But, after I downloaded a deb pack. into the harddisk, I could not
 install it by using apt-get install ... 
 Can you give example changes in the
 /usr/share/doc/apt/examples/source.list file?
 
 Should I configure this file or take another action to achieve installing
 a deb package in the harddisk (e.g /dev/hda1).
 
 Sevgi, Saygi, LINUX!!!
 (Love, Respect, LINUX!!!)
 
 



Re: apt and other sources.

2001-07-17 Thread Sebastiaan
On Tue, 17 Jul 2001, Halil Demirezen wrote:

 
 When I first install the Debian, I have specified apt source -
 cdrom. But, after I downloaded a deb pack. into the harddisk, I could not
 install it by using apt-get install ... 
 Can you give example changes in the
 /usr/share/doc/apt/examples/source.list file?
 
Hello,

you can install an individual package by:
dpkg --install package.deb

But if you want to download more packages and use apt, add these lines to
/etc/apt/sources.list:
deb ftp://ftp.nl.uu.net/debian testing main contrib non-free
deb ftp://ftp.nl.uu.net/debian stable main contrib non-free

deb http://non-us.debian.org/debian-non-US stable/non-US main contrib  non-free
deb http://non-us.debian.org/debian-non-US testing/non-US main contrib non-free

deb http://security.debian.org/debian-security/ potato/updates main contrib
deb http://security.debian.org/debian-non-US/ potato/non-US main contrib

deb-src ftp://ftp.nl.uu.net/debian stable main contrib non-free


This will give you access to the stable (potato) and testing (woody)
archive, as well as to non-us, security updates and sources. Change
ftp.nl.uu.net with your favorite (nearby) server.
Then run:
apt-get update


If you install a package now with apt, dependencies are solved.


 Should I configure this file or take another action to achieve installing
 a deb package in the harddisk (e.g /dev/hda1).
 
You could have a local archive for packages, but that is only attractive
if you have losts of non-debian distributed packages.

Greetz,
Sebastiaan


 Sevgi, Saygi, LINUX!!!
 (Love, Respect, LINUX!!!)
 
 
 --  
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 



Re: apt and other sources.

2001-07-17 Thread Mike Renfro
On Tue, Jul 17, 2001 at 02:04:23PM +0200, Sebastiaan wrote:

 But if you want to download more packages and use apt, add these lines to
 /etc/apt/sources.list:
 deb ftp://ftp.nl.uu.net/debian testing main contrib non-free
 deb ftp://ftp.nl.uu.net/debian stable main contrib non-free

...as his previously all-stable machine turns slowly into a testing
system.

 deb http://security.debian.org/debian-security/ potato/updates main contrib
 deb http://security.debian.org/debian-non-US/ potato/non-US main contrib

And since most packages in testing will have higher version numbers
than those in either stable *or* in security, he won't get too many
security updates, either.

 deb-src ftp://ftp.nl.uu.net/debian stable main contrib non-free

And he will only have easy access to stable source code that will
be increasingly irrelevant to his rapidly-approaching-testing system.

Instead, how about:

deb ftp://your.nearby.debian.mirror/debian potato main contrib non-free
deb ftp://non-us.debian.org/debian-non-US potato/non-US main contrib non-free
deb ftp://security.debian.org/ potato/updates main contrib non-free

and

deb-src ftp://your.nearby.debian.mirror/debian RELEASE main contrib non-free
deb-src ftp://non-US.debian.org/debian-non-US RELEASE/non-US main contrib 
non-free

(In the deb-src lines, use either stable, testing, or unstable where
I've indicated RELEASE)

-- 
Mike Renfro  / RD Engineer, Center for Manufacturing Research,
931 372-3601 / Tennessee Technological University -- [EMAIL PROTECTED]



Re: apt and other sources.

2001-07-17 Thread Mike Dresser
 Instead, how about:

 deb ftp://your.nearby.debian.mirror/debian potato main contrib non-free
 deb ftp://non-us.debian.org/debian-non-US potato/non-US main contrib non-free
 deb ftp://security.debian.org/ potato/updates main contrib non-free

 and

 deb-src ftp://your.nearby.debian.mirror/debian RELEASE main contrib non-free
 deb-src ftp://non-US.debian.org/debian-non-US RELEASE/non-US main contrib 
 non-free

deb http://http.us.debian.org/debian stable main contrib non-free
deb http://non-us.debian.org/ stable non-US/main non-US/contrib non-US/non-free
deb http://security.debian.org/ stable/updates main contrib non-free
deb http://security.debian.org/debian-non-US stable/non-US main contrib non-free
deb http://security.debian.org/debian-security stable/updates main contrib 
non-free
deb http://http.us.debian.org/debian dists/proposed-updates/

Over the years, this is what I seem to have accumulated.  Any 
comments/suggestions?
The proposed-updates, was because of a package not making it into security.d.o 
due to
whatever reason it was at the time.

Mike Dresser