> See here for detailed explanation:
>
> https://wiki.debian.org/SourcesList
I added five lines, thanks Karthik!
Sincerely, Byung-Hee
On Sun, Sep 5, 2021, 4:15 PM 황병희 wrote:
> Hellow~
>
> Actually i am new to Debian. Especially i did install Debian 11 Bullseye
> udner Chrome OS (ARM64 MT8173 Chromebook).
>
> Before i used Ubuntu 18.04 LTS.
>
> My question is:
> Is this canonical way?
>
> #+BEGIN_SRC: sh
> soyeomul@penguin:/etc/
Tanstaafl wrote:
> On 2014-01-03 9:18 AM, Sven Hartge wrote:
>>> emerge --pretend -vuDN world
>>> results in a list of all available updates, as well as any dependencies
>>> that would be installed, which I can then pick and choose from. I
>>> usually wait until newly available updates have been
#!/bin/sh
# At least once a day update the index package lists and download
# pending upgrades.
{
apt-get -q update && apt-get -q autoclean && apt-get -q upgrade -d -y &&
apt-get -q dist-upgrade -d -y
} 2>&1 | mailx -s "apt download output" root
exit 0
cool! thanks
Pol
On 01/14/2014 12:05 PM, Tanstaafl wrote:
On 2014-01-03 9:18 AM, Sven Hartge wrote:
emerge --pretend -vuDN world
results in a list of all available updates, as well as any dependencies
that would be installed, which I can then pick and choose from. I
usually wait until newly available updates ha
On 2014-01-03 9:18 AM, Sven Hartge wrote:
emerge --pretend -vuDN world
results in a list of all available updates, as well as any dependencies
that would be installed, which I can then pick and choose from. I
usually wait until newly available updates have been available for at
least a few days
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512
On 2014-01-05 01:43, Chris Bannister wrote:
> On Fri, Jan 03, 2014 at 10:31:35PM +, Lisi Reisz wrote:
>> On Friday 03 January 2014 14:16:34 Brian wrote:
>>> The '-s' can be omitted if more than one package is to
>>> installed.
>>
>> i.e., if you
On 1/6/14, Bob Proulx wrote:
> Zenaan Harkness wrote:
>> Andrei POPESCU wrote:
>> > Tanstaafl wrote:
>> >> # The primary network interface
...
>> >> network ###.###.###.###
>> >> broadcast ###.###.###.###
>> >
>> > Since you already fixed your issue I'll just comment on your interfaces
>> > file.
On Fri, Jan 03, 2014 at 04:29:59PM -0700, Bob Proulx wrote:
> apt-get -q update && apt-get -q autoclean && apt-get -q upgrade -d -y &&
> apt-get -q dist-upgrade -d -y
>
>
>
> Some fun details that may spark some ideas...
Wow!
Zenaan Harkness wrote:
> Andrei POPESCU wrote:
> > Tanstaafl wrote:
> >> # The primary network interface
> >> #allow-hotplug eth0
> >> auto eth0
> >> iface eth0 inet static
> >> address ###.###.###.###
> >> gateway ###.###.###.###
> >> netmask 255.255.255.0
> >> network ###.###.###.###
> >> broadca
On Du, 05 ian 14, 23:47:32, Zenaan Harkness wrote:
>
> > 3. it's safe to get rid of 'network' and 'broadcast', they are
> > calculated from address and netmask ;)
>
> Actually not. Some home adsl modems and routers these days default to
> 172.XX.. and 10. subnets, and Debian (Linux kernel?) choos
On 1/5/14, Andrei POPESCU wrote:
> On Vi, 03 ian 14, 07:29:52, Tanstaafl wrote:
>> # The primary network interface
>> #allow-hotplug eth0
>> auto eth0
>> iface eth0 inet static
>> address ###.###.###.###
>> gateway ###.###.###.###
>> netmask 255.255.255.0
>> network ###.###.###.###
>> broadcast ##
On Vi, 03 ian 14, 07:29:52, Tanstaafl wrote:
>
> # The primary network interface
> #allow-hotplug eth0
> auto eth0
> iface eth0 inet static
> address ###.###.###.###
> gateway ###.###.###.###
> netmask 255.255.255.0
> network ###.###.###.###
> broadcast ###.###.###.###
Since you already fixed you
On Fri, Jan 03, 2014 at 10:31:35PM +, Lisi Reisz wrote:
> On Friday 03 January 2014 14:16:34 Brian wrote:
> > The '-s' can be omitted if more than one package is to installed.
>
> i.e., if you are requesting more than one package, it will tell you
> what it is going to install before doing it
On Sat, Jan 04, 2014 at 09:50:59AM +, Brian wrote:
> On Fri 03 Jan 2014 at 17:21:40 -0700, Robert Holtzman wrote:
>
> > On Fri, Jan 03, 2014 at 09:20:33AM -0800, Carl Johnson wrote:
> > >
> > > You might want to look into the debian-reference package. It is also
> > > available on the web at
On Fri 03 Jan 2014 at 17:21:40 -0700, Robert Holtzman wrote:
> On Fri, Jan 03, 2014 at 09:20:33AM -0800, Carl Johnson wrote:
> >
> > You might want to look into the debian-reference package. It is also
> > available on the web at http://www.debian.org/doc/manuals/debian-reference/.
>
> It looks
2014-01-03 14:44 keltezéssel, Tanstaafl írta:
> In gentoo, I routinely perform pretend updates to see what updates are
> available, so a process like:
>
> eix-sync
> to synchronizes the local repo with the online one
>
> eix packagename
> shows all available versions of that package, and what rep
John Hasler wrote:
> Sven Hartge writes:
>> Depending on which version of Debian you installed, you will rarely
>> get any updates at all. Wheezy (7.x) is stable and only get security
>> updates and major bug fixes via point releases about every two
>> months: https://wiki.debian.org/DebianReleas
On Fri, Jan 03, 2014 at 09:20:33AM -0800, Carl Johnson wrote:
> Tanstaafl writes:
>
> > Hello all,
> >
> > I have some questions about how to do certain maintenance tasks in
> > Debian that I do routinely in gentoo.
> ...
> > Is there a decent manual describing basic maintenance tasks like this?
Brian wrote:
> Tanstaafl wrote:
> > eix packagename
> > shows all available versions of that package, and what repo they
> > reside in (stable, testing, etc)
>
>apt-cache
Typo: apt-cache show
> and
>apt-cache policy
>
> > emerge --pretend -vuDN world
> > results in a list of all avai
On Friday 03 January 2014 14:16:34 Brian wrote:
> The '-s' can be omitted if more than one package is to installed.
i.e., if you are requesting more than one package, it will tell you
what it is going to install before doing it anyway. You need the -s
for one package, because if you have only a
"Andrew M.A. Cater" writes:
>> emerge --pretend -vuDN world
Welcome to another former gentoo hand.
If you have X running:
I'm pretty sure, though have never used it, that there is a little
tool on you desktop menus somewhere. With a name like
`Software updates', probably under system tools or
Tanstaafl writes:
> Hello all,
>
> I have some questions about how to do certain maintenance tasks in
> Debian that I do routinely in gentoo.
...
> Is there a decent manual describing basic maintenance tasks like this?
You might want to look into the debian-reference package. It is also
availab
On Fri, Jan 03, 2014 at 08:44:49AM -0500, Tanstaafl wrote:
> Hello all,
>
> I have some questions about how to do certain maintenance tasks in
> Debian that I do routinely in gentoo.
>
> I've read man apt-get, but didn't find answers to these questions.
> What I'm looking for is the equivalent co
Brian wrote:
On Fri 03 Jan 2014 at 08:44:49 -0500, Tanstaafl wrote:
I have some questions about how to do certain maintenance tasks in
Debian that I do routinely in gentoo.
eix-sync
to synchronizes the local repo with the online one
Is there a decent manual describing basic maintenance task
Sven Hartge writes:
> Depending on which version of Debian you installed, you will rarely get
> any updates at all. Wheezy (7.x) is stable and only get security updates
> and major bug fixes via point releases about every two months:
> https://wiki.debian.org/DebianReleases/PointReleases
Don't wai
On Fri 03 Jan 2014 at 08:44:49 -0500, Tanstaafl wrote:
> I have some questions about how to do certain maintenance tasks in
> Debian that I do routinely in gentoo.
>
> eix-sync
> to synchronizes the local repo with the online one
apt-get update
> eix packagename
> shows all available version
Tanstaafl wrote:
> In gentoo, I routinely perform pretend updates to see what updates are
> available, so a process like:
Depending on which version of Debian you installed, you will rarely get
any updates at all. Wheezy (7.x) is stable and only get security updates
and major bug fixes via point
On 2014-01-03 8:43 AM, Brian wrote:
On Fri 03 Jan 2014 at 07:29:52 -0500, Tanstaafl wrote:
Since I've configured eth0 for a static IP, why are these DHCP
requests even happening? I've looked in /etc/init.d and don't see
anything about a DHCP client. And most importantly, how do I stop
them? I
On Fri 03 Jan 2014 at 07:29:52 -0500, Tanstaafl wrote:
> Since I've configured eth0 for a static IP, why are these DHCP
> requests even happening? I've looked in /etc/init.d and don't see
> anything about a DHCP client. And most importantly, how do I stop
> them? I know I could probably uninstall
On Mon, Jun 07, 2010 at 03:37:27PM -0700, ABSDoug wrote:
> I'm in Windows right now for my iPhone... SO slow, that last blank E-mail was
> a Windows freeze issue.
That message alone will get you quite a bit of help. :)_
--
"Religion is excellent stuff for keeping common people quiet."
-- Na
Sorry... I messed up! I thought I had made a disk with the full install... I
made another copy of the net install. I've got it working. Now for getting my
wireless working. I'll start another thread.
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of
- Forwarded message from ABSDoug -
Date: Mon, 7 Jun 2010 15:39:53 -0700 (PDT)
From: ABSDoug
To: Alexander Batischev
Subject: Re: New to Debian (what I've done so far)
--- On Mon, 6/7/10, Alexander Batischev wrote:
> How did you try to install Gnome? Did you check "Inst
On Mon, Jun 07, 2010 at 03:37:27PM -0700, ABSDoug wrote:
> Javier, thanks for pointing me in the right direction! & yes I'm subscribed...
> don't know why I didn't get the orginal replys to my original post, but I am
> now.
Did you read manual I mentioned before?
Anyone can write to debian-user, b
On Mon, Jun 7, 2010 at 3:13 PM, ABSDoug wrote:
> 1st, tried to do "Installing Debian GNU/Linux via the
> Internet"(debian-504-i386-netinst.iso) but could not connect to wireless. At
> the time I did not have physical access to the router, but that can be done
> now if necessary.
>
> 2nd, tried th
I'm in Windows right now for my iPhone... SO slow, that last blank E-mail was a
Windows freeze issue.
Javier, thanks for pointing me in the right direction! & yes I'm subscribed...
don't know why I didn't get the orginal replys to my original post, but I am
now.
--- On Mon, 6/7/10, Javier Ba
--- On Mon, 6/7/10, Javier Barroso wrote:
From: Javier Barroso
Subject: Re: New to Debian (what I've done so far)
To: "ABSDoug"
Cc: debian-user@lists.debian.org
Date: Monday, June 7, 2010, 6:25 PM
On Tue, Jun 8, 2010 at 12:13 AM, ABSDoug wrote:
1st, tried to do "I
Hi,
On Mon, Jun 07, 2010 at 03:13:11PM -0700, ABSDoug wrote:
> 1st, tried to do "Installing Debian GNU/Linux via the Internet"
> (debian-504-i386-netinst.iso) but could not connect to wireless. At the time
> I did not have physical access to the router, but that can be done now if
> necessary.
On
On Tue, Jun 8, 2010 at 12:13 AM, ABSDoug wrote:
> 1st, tried to do "Installing Debian GNU/Linux via the
> Internet"(debian-504-i386-netinst.iso) but could not connect to wireless. At
> the time I did not have physical access to the router, but that can be done
> now if necessary.
>
> 2nd, tried t
On 2009-12-03, deb...@toursbymexico.com wrote:
>
> 2) How can I install KDE? Currently it is running with Gnome... I've just
> download all 5 DVDs plus the updates one... the gnome (un)install shows
> most KDE applications to install, but not the full window manager... and,
> once installed, is it
Miguel writes:
> Am thinking on making a new installation to findout how to use the
> expert mode, perhaps in such way I will be able to make a more
> detailed installation that allows me to choose LILO too...
You are overthinking this. Just install the lilo package ("apt-get
install lilo"), read
Hi Rob
I did what you say but the installer does not give a LILO option, it only
warns that the system will not boot without GRUB and forced me to choose
YES... Am thinking on making a new installation to findout how to use the
expert mode, perhaps in such way I will be able to make a more detaile
On Thu, Dec 03, 2009 at 09:29:57AM -0700, deb...@toursbymexico.com wrote:
> Hello
>
> I'm new to Debian, have used Slackware for years but latest release was a
> mess so I decided to move to Debian and give it a try, however I have some
> doubts and need to complete my configuration to keep workin
On Thu, Dec 03, 2009 at 09:29 -0700, deb...@toursbymexico.com wrote:
> I'm new to Debian, have used Slackware for years but latest release was a
> mess so I decided to move to Debian and give it a try,
Welcome!
> 1) How can I disable the graphical login and/or avoid X11 to start
> automatically?
Kumar Appaiah wrote:
> On Thu, Dec 03, 2009 at 09:29:57AM -0700, deb...@toursbymexico.com wrote:
>> 4) Is it possible to install LILO instead of GRUB? I know it is better and
>> advanced, but I like LILO... would it be safe to install it without
>> breaking some kind of dependence?
>
> I believe s
On Thu, Dec 3, 2009 at 08:29, wrote:
> Hello
>
> I'm new to Debian, have used Slackware for years but latest release was a
> mess so I decided to move to Debian and give it a try, however I have some
> doubts and need to complete my configuration to keep working while
> learning to use this new d
On Thu, Dec 03, 2009 at 09:29:57AM -0700, deb...@toursbymexico.com wrote:
> 1) How can I disable the graphical login and/or avoid X11 to start
> automatically? I can't install the nVidia driver since it tells me to stop
> X11 before. And, is it possible to leave it that way, just with the simple
>
On Wed, 22 Jul 2009 21:36:34 +0200, Giuseppe Marinelli wrote:
> This is something I have been coping with since my switch to Linux. I
> tried multiple font types (DejaVu, Bitstream, Liberation) and multiple
> configurations but I have not managed to get a decent font rendering
> yet.
>
> The pres
On Tue, 21 Jul 2009 07:22:06 +0530, Raj Kiran Grandhi wrote:
> The proprietary driver improves performance even for other stuff though
> it is more likely to crash, especially during suspend/resume.
Installed the proprietary driver but did not have a lot of improvements
(if any) with it either.
On Tuesday 21 July 2009 03:52:06 Raj Kiran Grandhi wrote:
> thirstyh2o wrote:
> > Hi, folks.
> >
> > I'm coming from Ubuntu crowd where I spent last couple of years. Finally
> > decided:"Why 'Debian based', why not Debian itself".
> >
> > So to be. I've installed Debian 5.0.2 on my Dell Latitude D8
thirstyh2o wrote:
Hi, folks.
I'm coming from Ubuntu crowd where I spent last couple of years. Finally
decided:"Why 'Debian based', why not Debian itself".
So to be. I've installed Debian 5.0.2 on my Dell Latitude D820 as dual
boot to my Ubuntu Jaunty. The laptop has Nvidia video card on it.
On Tue, Jan 02, 2007 at 02:10:40PM -0500, Kamaraju Kusumanchi wrote:
> On Monday 01 January 2007 02:24, Mike Myers wrote:
> > On 1/1/07, Kamaraju Kusumanchi <[EMAIL PROTECTED]> wrote:
> > >
> > > m-a update
> > > m-a prepare
> > > m-a a-i nvidia
> > >
> > > modconf
> > > -> select and load the nv
On Monday 01 January 2007 02:24, Mike Myers wrote:
> On 1/1/07, Kamaraju Kusumanchi <[EMAIL PROTECTED]> wrote:
> >
> > m-a update
> > m-a prepare
> > m-a a-i nvidia
> >
> > modconf
> > -> select and load the nvidia module
> >
> > m-a stands for the module-assistant. The above procedure requires f
On 1/1/07, Kamaraju Kusumanchi <[EMAIL PROTECTED]> wrote:
On Sunday 31 December 2006 12:24, Mike Myers wrote:
>
> Thanks for the tips! I downloaded the etch cd and it detected my card
and
> installed fine. The only issue now is getting the nvidia driver
installed.
> The 'nv' driver doesn't wor
On Sunday 31 December 2006 12:24, Mike Myers wrote:
>
> Thanks for the tips! I downloaded the etch cd and it detected my card and
> installed fine. The only issue now is getting the nvidia driver installed.
> The 'nv' driver doesn't work with my widescreen display at all. It looks
> like to do t
Yes! That's exactly what I was looking for. I also had to install the
nvidia-glx package to allow xorg to use the driver. Thanks a lot!
On 12/31/06, Andrew Sackville-West <[EMAIL PROTECTED]> wrote:
On Sun, Dec 31, 2006 at 11:24:03AM -0600, Mike Myers wrote:
> >
> >
> Thanks for the tips! I
On Sun, Dec 31, 2006 at 11:24:03AM -0600, Mike Myers wrote:
> >
> Thanks for the tips! I downloaded the etch cd and it detected my card and
> installed fine. The only issue now is getting the nvidia driver installed.
> The 'nv' driver doesn't work with my widescreen display at all. It looks
> li
On Sun, Dec 31, 2006 at 11:24:03AM -0600, Mike Myers wrote:
> >
> >
> Thanks for the tips! I downloaded the etch cd and it detected my card and
> installed fine. The only issue now is getting the nvidia driver installed.
> The 'nv' driver doesn't work with my widescreen display at all. It looks
On 12/31/06, Andrew Sackville-West <[EMAIL PROTECTED]> wrote:
On Sat, Dec 30, 2006 at 11:36:57PM -0600, Mike Myers wrote:
> On 12/30/06, Roberto C. Sanchez <[EMAIL PROTECTED]> wrote:
> >
> >On Sat, Dec 30, 2006 at 11:20:41PM -0600, Mike Myers wrote:
> >>
> >> Thanks for the prompt response!
> >>
On Sat, Dec 30, 2006 at 11:36:57PM -0600, Mike Myers wrote:
> On 12/30/06, Roberto C. Sanchez <[EMAIL PROTECTED]> wrote:
> >
> >On Sat, Dec 30, 2006 at 11:20:41PM -0600, Mike Myers wrote:
> >>
> >> Thanks for the prompt response!
> >>
> >> I'm using the i386 netinst. The ethernet card is an intel
On 12/30/2006 11:05 PM, Mike Myers wrote:
Hello,
I'm new to debian, but not to linux. I've been using Gentoo for the past 6
years or so, but I'm getting tired of having to make sure any new updates
aren't going to destroy my systems. I'm just wanting a system I can use
instead of babysit. So
On Sat, Dec 30, 2006 at 11:36:57PM -0600, Mike Myers wrote:
> I got the i386 stable.. which I think is sarge? (i'm not caught up on the
> lingo yet :P) Here's the url I used:
> http://cdimage.debian.org/debian-cd/3.1_r4/i386/iso-cd/debian-31r4-i386-netinst.iso
>
Etch will be release Any Day Now(T
On 12/30/06, Roberto C. Sanchez <[EMAIL PROTECTED]> wrote:
On Sat, Dec 30, 2006 at 11:20:41PM -0600, Mike Myers wrote:
>
> Thanks for the prompt response!
>
> I'm using the i386 netinst. The ethernet card is an intel 1000gigabit
> ethernet pro. When I boot to the cd and go into a second termin
On Sat, Dec 30, 2006 at 11:20:41PM -0600, Mike Myers wrote:
>
> Thanks for the prompt response!
>
> I'm using the i386 netinst. The ethernet card is an intel 1000gigabit
> ethernet pro. When I boot to the cd and go into a second terminal, lspci
> doesn't run. I guess it doesn't come with the n
On 12/30/06, Roberto C. Sanchez <[EMAIL PROTECTED]> wrote:
On Sat, Dec 30, 2006 at 11:05:09PM -0600, Mike Myers wrote:
> Hello,
>
> I'm new to debian, but not to linux. I've been using Gentoo for the
past 6
> years or so, but I'm getting tired of having to make sure any new
updates
> aren't goi
On Sat, Dec 30, 2006 at 11:05:09PM -0600, Mike Myers wrote:
> Hello,
>
> I'm new to debian, but not to linux. I've been using Gentoo for the past 6
> years or so, but I'm getting tired of having to make sure any new updates
> aren't going to destroy my systems. I'm just wanting a system I can us
On 10/04/2006 12:43 PM, Sara thompson wrote:
Hi guys,
I'm new to the Debian Linux System and I ordered a 15 disc set from 0_bits.com.
There is no installation guide and I have installed the first disc opting for
no network and no internet and I am at the point of entering my password an
Sara thompson <[EMAIL PROTECTED]> wrote:
> Hi guys,
>
> I'm new to the Debian Linux System and I ordered a 15 disc set from
> 0_bits.com.
> There is no installation guide and I have installed the first disc opting
> for no network and no internet and I am at the point of entering my pass
If I understand you corectly, you have installed debian using only
first CD and now you would like to use software from other CDs.
If that is the case, as a root type: apt-cdrom add, and then follow intructions.
That will make packages from other CDs available for installation.
After that you c
Michael Marsh wrote:
>
> Try running alsaconf again, and then lsmod to see which module you
> need. Presumably it's snd-emu10k1. All you need to add to
> /etc/modules is the line:
> snd-emu10k1
Adding snd-pcm-oss is also a good idea.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subj
> Did all that and as root, all worked well for a minute. After a reboot, this
> is what I'm getting:
>
> modprobe emu10k1
> /lib/modules/2.4.27-2-386/kernel/drivers/sound/emu10k1/emu10k1.o:
> init_module: No such device
> Hint: insmod errors can be caused by incorrect module parameters, includi
On 2/5/06, Kerry K. Waldrip <[EMAIL PROTECTED]> wrote:
> Did all that and as root, all worked well for a minute. After a reboot, this
> is what I'm getting:
>
> modprobe emu10k1
> /lib/modules/2.4.27-2-386/kernel/drivers/sound/emu10k1/emu10k1.o:
> init_module: No such device
> Hint: insmod error
On Sun, 5 Feb 2006 14:17:45 -0500
Michael Marsh <[EMAIL PROTECTED]> wrote:
> Did you get alsa-modules-2.4.27-2-386 ? That should have the modules
> you're looking for, though you'll need to run depmod before you can
> modprobe for them. You can also install alsa-modules-2.4-386 instead
> of the
On Sun, Feb 05, 2006 at 12:55:37PM -0600, Kerry K. Waldrip wrote:
> Hi, List!
> an Audigy sound card. The sound card is giving me trouble,
> tho. Specifics follow:
>
> lspci | grep audio
> :00:0e.0 Multimedia audio controller: Creative Labs SB Audigy (rev 03)
>
> modprobe snd-emu10k1;modpro
On 2/5/06, Kerry K. Waldrip <[EMAIL PROTECTED]> wrote:
> uname -r
> 2.4.27-2-386
>
[...]
> I've searched the web via google and RTM all to no avail. I apt-got ALSA
> yesterday. Anyone offering advice would be my new best friend. :)
Did you get alsa-modules-2.4.27-2-386 ? That should have the
--- "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> How do I suscribe to this list?
> What are the packages needed to configure/detect a
> network
> (router)?
>
> I just installed Debian Sarge on my laptop. My
> laptop was
> useless with window, it used to hung up every too
> often.
> Things
Adam Siade wrote:
Hello all
I am also new to Debian. I have done some Google searches on LaTeX info
and have found this mailing list with several messages pertaining to
LaTeX. If I have the wrong list please let me know. If I have the right
list, I am excited to be able to help and receive h
On Tue, Jul 12, 2005 at 08:30:30PM +0200, Johan wrote:
> Hi,
>
> I am absolutely new to debian but not to linux. (Mandrake, Suse,
> Ubuntu) the easy ones?
>
> I have debian "sarge" 14 cd's.
the cd's are loaded with software based upon popularity thus cd 1 and cd
2 contain the software most fol
Johan wrote:
"Michael Martinell" <[EMAIL PROTECTED]> wrote:
On Tue, July 12, 2005 2:24 pm, Johan said:
Apg-get refuses to install any og those pckages you mentoned..dependencie
problem. Seem that all those 13 dics in source list does not have all the
dependencies
apt-get update
>>
>> apt-get update
>> This will refresh your sources list
>> Also, do you have disk 1 in the /etc/sources ? I believe that the X
>> install is still located there.
>> --
>
> makes no difference
> johan
So what message do you get when you type startx?
What errors are you seeing in /var/log log
On Tue, 12 Jul 2005 14:24:08 -0500 (CDT)
"Michael Martinell" <[EMAIL PROTECTED]> wrote:
>
> On Tue, July 12, 2005 2:24 pm, Johan said:
> > hi to..
> > Kent West,
> >
> > Sorry for funny mail..had call in my laptop to do messaging. The station
> > switch off replace drive and reboot.
> >
> > Apg-g
On Tue, July 12, 2005 2:24 pm, Johan said:
> hi to..
> Kent West,
>
> Sorry for funny mail..had call in my laptop to do messaging. The station
> switch off replace drive and reboot.
>
> Apg-get refuses to install any og those pckages you mentoned..dependencie
> problem. Seem that all those 13 dics
On Tuesday 12 July 2005 02:30 pm, Johan wrote:
> Hi,
>
> I am absolutely new to debian but not to linux. (Mandrake, Suse,
> Ubuntu) the easy ones?
>
> I have debian "sarge" 14 cd's.
>
> While installing I almost thought that I was installing ubuntu up to a
> point.
> All cd's is registered in apt-
Johan wrote:
I have debian "sarge" 14 cd's.
That point is this installation only go as far as the command line.
Does not even have startx.
Run "apt-get install x-window-system kde gnome" as root; you should
shortly have a KDE and/or Gnome-enabled box. Run "startx" afterward to
Do you have a fully working system but with command line only? If so,
try to press Cntrl-Alt-F7
Tell us what happened!
Steve Block wrote:
Chris Lale wrote:
On Wed, 2004-12-08 at 15:44, Sridhar M.A. wrote:
On Wed, Dec 08, 2004 at 07:13:50AM -0600, Ron Johnson wrote:
> > Last I checked, v2.8 is not in Sarge, yet. Besides, I run Sid,
> so don't care that much about Sarge.
> I think about 4 days back it made i
Steve Block wrote:
Chris Lale wrote:
On Wed, 2004-12-08 at 15:44, Sridhar M.A. wrote:
On Wed, Dec 08, 2004 at 07:13:50AM -0600, Ron Johnson wrote:
> > Last I checked, v2.8 is not in Sarge, yet. Besides, I run Sid,
> so don't care that much about Sarge.
> I think about 4 days back it made i
On Thu, 2004-12-09 at 06:48 -0500, Kevin Mark wrote:
> On Wed, Dec 08, 2004 at 06:33:28AM -0600, Ron Johnson wrote:
> > On Wed, 2004-12-08 at 01:41 -0500, Kevin Mark wrote:
> > > On Tue, Dec 07, 2004 at 10:26:54PM -0800, Rich Rudnick wrote:
> > > > On Tue, 2004-12-07 at 21:28 -0800, Marc Wilson wro
On Wed, Dec 08, 2004 at 06:33:28AM -0600, Ron Johnson wrote:
> On Wed, 2004-12-08 at 01:41 -0500, Kevin Mark wrote:
> > On Tue, Dec 07, 2004 at 10:26:54PM -0800, Rich Rudnick wrote:
> > > On Tue, 2004-12-07 at 21:28 -0800, Marc Wilson wrote:
> > > > On Tue, Dec 07, 2004 at 08:20:58PM -0800, Rich Ru
On Wed, 2004-12-08 at 16:17 -0600, Steve Block wrote:
> Chris Lale wrote:
> > On Wed, 2004-12-08 at 15:44, Sridhar M.A. wrote:
> >
> >>On Wed, Dec 08, 2004 at 07:13:50AM -0600, Ron Johnson wrote:
> >> >
> >> > Last I checked, v2.8 is not in Sarge, yet. Besides, I run Sid,
> >> > so don't c
> It depends, and this question demands another. What did you install,
> Knoppix or Debian?
ARRGH! I'm lost in a novel by Kafka!
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Chris Lale wrote:
On Wed, 2004-12-08 at 15:44, Sridhar M.A. wrote:
On Wed, Dec 08, 2004 at 07:13:50AM -0600, Ron Johnson wrote:
>
> Last I checked, v2.8 is not in Sarge, yet. Besides, I run Sid,
> so don't care that much about Sarge.
>
I think about 4 days back it made it into sarge. I h
Please use reply-to-mailing-list, not reply, when making an on-topic
response to a list message.
On Wednesday 08 December 2004 1:31 pm, you wrote:
>
> > That doesn't negate the fact that Knoppix isn't Debian.
>
> ok, but when the OS ignores changes to inittab and XF86Config is that
> knoppix
> That doesn't negate the fact that Knoppix isn't Debian. It's based on
ok, but when the OS ignores changes to inittab and XF86Config is that knoppix
or debian?
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
On Wed, 2004-12-08 at 15:44, Sridhar M.A. wrote:
> On Wed, Dec 08, 2004 at 07:13:50AM -0600, Ron Johnson wrote:
>>
>> Last I checked, v2.8 is not in Sarge, yet. Besides, I run Sid,
>> so don't care that much about Sarge.
>>
> I think about 4 days back it made it into sarge. I hav
On Wed, Dec 08, 2004 at 07:13:50AM -0600, Ron Johnson wrote:
>
> Last I checked, v2.8 is not in Sarge, yet. Besides, I run Sid,
> so don't care that much about Sarge.
>
I think about 4 days back it made it into sarge. I have it on my system.
$ apt-cache policy gnome-session
gnome-se
On Wed, 2004-12-08 at 12:42 +, Jerome BENOIT wrote:
>
> Ron Johnson wrote:
> > On Wed, 2004-12-08 at 01:41 -0500, Kevin Mark wrote:
> >
> >>On Tue, Dec 07, 2004 at 10:26:54PM -0800, Rich Rudnick wrote:
> >>
> >>>On Tue, 2004-12-07 at 21:28 -0800, Marc Wilson wrote:
> >>>
> On Tue, Dec 07,
Ron Johnson wrote:
On Wed, 2004-12-08 at 01:41 -0500, Kevin Mark wrote:
On Tue, Dec 07, 2004 at 10:26:54PM -0800, Rich Rudnick wrote:
On Tue, 2004-12-07 at 21:28 -0800, Marc Wilson wrote:
On Tue, Dec 07, 2004 at 08:20:58PM -0800, Rich Rudnick wrote:
[snip]
Hi Rich,
I have met a few of the ubuntu D
On Wed, 2004-12-08 at 01:41 -0500, Kevin Mark wrote:
> On Tue, Dec 07, 2004 at 10:26:54PM -0800, Rich Rudnick wrote:
> > On Tue, 2004-12-07 at 21:28 -0800, Marc Wilson wrote:
> > > On Tue, Dec 07, 2004 at 08:20:58PM -0800, Rich Rudnick wrote:
[snip]
> Hi Rich,
> I have met a few of the ubuntu Devel
On Wed, 2004-12-08 at 01:41 -0500, Kevin Mark wrote:
> On Tue, Dec 07, 2004 at 10:26:54PM -0800, Rich Rudnick wrote:
> > On Tue, 2004-12-07 at 21:28 -0800, Marc Wilson wrote:
> > > On Tue, Dec 07, 2004 at 08:20:58PM -0800, Rich Rudnick wrote:
> > > > 'Debian' consists of the packages in main. The f
1 - 100 of 263 matches
Mail list logo