Re: How to make btrfs forget a disk?

2021-03-15 Thread Victor Sudakov
Victor Sudakov wrote: > > btrfs thinks that /dev/nvme1n1 has a btrfs: > > # btrfs filesystem show > Label: none uuid: 3414ae53-f3d4-43ea-bb88-ffefc9bc86f6 > Total devices 1 FS bytes used 1.05TiB > devid1 size 2.00TiB used 1.33TiB path /dev/nvme0n1 > > Label: none uuid: 38f7

Re: How to make btrfs forget a disk?

2021-03-14 Thread Victor Sudakov
Andrei POPESCU wrote: > On Du, 14 mar 21, 17:34:40, Victor Sudakov wrote: > > Andrei POPESCU wrote: > > > > > > I'm guessing it's in the GPT somewhere. Did you try removing the entire > > > partition table before switching to ZFS? > > > > There had been no partition table, I just ran "mkfs.btrfs

Re: How to make btrfs forget a disk?

2021-03-14 Thread Andrei POPESCU
On Du, 14 mar 21, 17:34:40, Victor Sudakov wrote: > Andrei POPESCU wrote: > > > > I'm guessing it's in the GPT somewhere. Did you try removing the entire > > partition table before switching to ZFS? > > There had been no partition table, I just ran "mkfs.btrfs /dev/nvme1n1" > on the whole raw vo

Re: How to make btrfs forget a disk?

2021-03-14 Thread Victor Sudakov
Andrei POPESCU wrote: > > > > > > > > The problem is that /dev/nvme1n1 is being used for ZFS now, and there is > > > > currently no btrfs thereon. However, there is a btrfs label or something > > > > stuck somewhere, how can I clear it? > > > > > > [...] > > > > > > > It's somewhere on disk, bu

Re: How to make btrfs forget a disk?

2021-03-14 Thread Andrei POPESCU
On Du, 14 mar 21, 10:58:02, Victor Sudakov wrote: > Andrei POPESCU wrote: > > On Vi, 12 mar 21, 09:21:59, Victor Sudakov wrote: > > > > > > The problem is that /dev/nvme1n1 is being used for ZFS now, and there is > > > currently no btrfs thereon. However, there is a btrfs label or something > > >

Re: How to make btrfs forget a disk?

2021-03-13 Thread Victor Sudakov
Andrei POPESCU wrote: > On Vi, 12 mar 21, 09:21:59, Victor Sudakov wrote: > > > > The problem is that /dev/nvme1n1 is being used for ZFS now, and there is > > currently no btrfs thereon. However, there is a btrfs label or something > > stuck somewhere, how can I clear it? > > [...] > > > It's s

Re: How to make btrfs forget a disk?

2021-03-12 Thread Andrei POPESCU
On Vi, 12 mar 21, 09:21:59, Victor Sudakov wrote: > > The problem is that /dev/nvme1n1 is being used for ZFS now, and there is > currently no btrfs thereon. However, there is a btrfs label or something > stuck somewhere, how can I clear it? [...] > It's somewhere on disk, but where? > > # blki

Re: How to make btrfs forget a disk?

2021-03-12 Thread deloptes
Victor Sudakov wrote: > Well, to search Duckduckgo for wipefs, you need to know about wipefs :-) > I found it from reading man blkid and lsblk, after that the information > from wipefs(8) turned out sufficient (and the howto above did not add > any new knowledge). I searched for "linux file syste

Re: How to make btrfs forget a disk?

2021-03-12 Thread Victor Sudakov
David wrote: > > > > and then perhaps > > > btrfs device remove ... > > > "Remove device(s) from a filesystem identified by " > > > Hmm. /dev/nvme1n1 is not identified by any path because it's not mounted > > as a btrfs filesystem. > > Yeah I expect you're supposed to 'btrfs remove' before >

Re: How to make btrfs forget a disk?

2021-03-12 Thread Victor Sudakov
David wrote: > On Fri, 12 Mar 2021 at 20:17, Victor Sudakov wrote: > > deloptes wrote: > > > > > "wipefs -t btrfs -f -a /dev/nvme1n1" did the job. > > > > > Still wondering where those labels are stored on disk in Linux. > > > > FS Superblock? > > > Well, the FS (btrfs in this case) was not th

Re: How to make btrfs forget a disk?

2021-03-12 Thread David
On Fri, 12 Mar 2021 at 20:17, Victor Sudakov wrote: > deloptes wrote: > > > "wipefs -t btrfs -f -a /dev/nvme1n1" did the job. > > > Still wondering where those labels are stored on disk in Linux. > > FS Superblock? > Well, the FS (btrfs in this case) was not there already, but the magic > labe

Re: How to make btrfs forget a disk?

2021-03-12 Thread David
On Fri, 12 Mar 2021 at 14:48, Victor Sudakov wrote: > David wrote: > > and then perhaps > > btrfs device remove ... > "Remove device(s) from a filesystem identified by " > Hmm. /dev/nvme1n1 is not identified by any path because it's not mounted > as a btrfs filesystem. Yeah I expect you're s

Re: How to make btrfs forget a disk?

2021-03-12 Thread Victor Sudakov
Anssi Saari wrote: > Victor Sudakov writes: > > > "wipefs -t btrfs -f -a /dev/nvme1n1" did the job. > > > > Still wondering where those labels are stored on disk in Linux. > > Didn't wipefs tell you? No. It just told me the offset, but I have no idea what is located at that offset, and this ca

Re: How to make btrfs forget a disk?

2021-03-12 Thread Victor Sudakov
deloptes wrote: > > > "wipefs -t btrfs -f -a /dev/nvme1n1" did the job. > > > > Still wondering where those labels are stored on disk in Linux. > > > > FS Superblock? Well, the FS (btrfs in this case) was not there already, but the magic label was still there somewhere. > > > In FreeBSD, GE

Re: How to make btrfs forget a disk?

2021-03-12 Thread Anssi Saari
Victor Sudakov writes: > "wipefs -t btrfs -f -a /dev/nvme1n1" did the job. > > Still wondering where those labels are stored on disk in Linux. Didn't wipefs tell you? I don't have any btrfs but for me wipefs prints at which offset it found which label. Like this, for a Linux swap partition: # w

Re: How to make btrfs forget a disk?

2021-03-11 Thread deloptes
Victor Sudakov wrote: > "wipefs -t btrfs -f -a /dev/nvme1n1" did the job. > > Still wondering where those labels are stored on disk in Linux. > FS Superblock? > In FreeBSD, GEOM(4) usually keeps such stuff in the last sector of a > volume/device. I think it depends on the FS not on the OS.

Re: How to make btrfs forget a disk?

2021-03-11 Thread Victor Sudakov
Victor Sudakov wrote: > > On Fri, 12 Mar 2021 at 13:39, Victor Sudakov wrote: > > > > > btrfs thinks that /dev/nvme1n1 has a btrfs: > > > > > # btrfs filesystem show > > > Label: none uuid: 3414ae53-f3d4-43ea-bb88-ffefc9bc86f6 > > > Total devices 1 FS bytes used 1.05TiB > > > de

Re: How to make btrfs forget a disk?

2021-03-11 Thread Victor Sudakov
David wrote: > On Fri, 12 Mar 2021 at 13:39, Victor Sudakov wrote: > > > btrfs thinks that /dev/nvme1n1 has a btrfs: > > > # btrfs filesystem show > > Label: none uuid: 3414ae53-f3d4-43ea-bb88-ffefc9bc86f6 > > Total devices 1 FS bytes used 1.05TiB > > devid1 size 2.00TiB use

Re: How to make btrfs forget a disk?

2021-03-11 Thread David
On Fri, 12 Mar 2021 at 13:39, Victor Sudakov wrote: > btrfs thinks that /dev/nvme1n1 has a btrfs: > # btrfs filesystem show > Label: none uuid: 3414ae53-f3d4-43ea-bb88-ffefc9bc86f6 > Total devices 1 FS bytes used 1.05TiB > devid1 size 2.00TiB used 1.33TiB path /dev/nvme0n1 >

How to make btrfs forget a disk?

2021-03-11 Thread Victor Sudakov
Dear Colleagues, btrfs thinks that /dev/nvme1n1 has a btrfs: # btrfs filesystem show Label: none uuid: 3414ae53-f3d4-43ea-bb88-ffefc9bc86f6 Total devices 1 FS bytes used 1.05TiB devid1 size 2.00TiB used 1.33TiB path /dev/nvme0n1 Label: none uuid: 38f74bc8-465d-4866-8ec1-3a1

Forget it, user error (was: Re: pinentry-{qt,gtk2,gnome3} stopped working pinentry-fltk works, why?)

2020-12-21 Thread Gregor Zattler
Hi debian users, * Gregor Zattler [21. Dez. 2020]: > Dear fellow debian users, since yesterday pinentry-{qt,gtk2,gnome3} > stopped working. When I want to decrypt some .gpg file, no dialog > appears and gpg-agent times out. Luckily pinentry-curses and > pinentry-fltk still do work. > > This is o

Re: Cannot get systemd to forget about swap space on a failed disk

2020-07-01 Thread David Wright
On Tue 30 Jun 2020 at 22:04:02 (-0700), Bob McGowan wrote: > On 6/29/2020 11:37 PM, Reco wrote: > > On Mon, Jun 29, 2020 at 11:10:44PM -0700, Bob McGowan wrote: > > > But I cannot figure out where this might be, or even if this is the > > > correct interpretation. > > Check out the contents of /et

Re: Cannot get systemd to forget about swap space on a failed disk

2020-06-30 Thread Bob McGowan
On 6/29/2020 11:37 PM, Reco wrote: Hi. On Mon, Jun 29, 2020 at 11:10:44PM -0700, Bob McGowan wrote: But I cannot figure out where this might be, or even if this is the correct interpretation. Check out the contents of /etc/systemd/system first. Rebuild initramfs second. Reco Hi, I

Re: Cannot get systemd to forget about swap space on a failed disk

2020-06-30 Thread deloptes
Bob McGowan wrote: > Please see thread with subject "Be careful when editing /etc/fstab" for > a bit of background. > > My computer had two swap partitions, on two different disks, when one of > them started to generate CRC errors, seek errors, etc. > > Once I determined which of the two it was,

Re: Cannot get systemd to forget about swap space on a failed disk

2020-06-29 Thread Reco
Hi. On Mon, Jun 29, 2020 at 11:10:44PM -0700, Bob McGowan wrote: > But I cannot figure out where this might be, or even if this is the correct > interpretation. Check out the contents of /etc/systemd/system first. Rebuild initramfs second. Reco

Cannot get systemd to forget about swap space on a failed disk

2020-06-29 Thread Bob McGowan
Please see thread with subject "Be careful when editing /etc/fstab" for a bit of background. My computer had two swap partitions, on two different disks, when one of them started to generate CRC errors, seek errors, etc. Once I determined which of the two it was, I commented out the /etc/fst

Re: Dual monitors - after monitor sleep, forget settings

2020-01-01 Thread Carl Fink
On 1/1/20 9:57 PM, Charles Curley wrote: I had occasion to look at the XFCE display application, and it has a box you can tick labeled, "Configure new displays when connected." I wonder if your display application is treating your displays when you turn them on as "new". If your display applicati

Re: Dual monitors - after monitor sleep, forget settings

2020-01-01 Thread Charles Curley
On Wed, 1 Jan 2020 20:54:51 -0500 Carl Fink wrote: > However, I confess to not being that familiar with the terminology > here. > > Is "starting [my] session" going to happen when the still-running > computer turns the monitor back on? I associate that with logging out > of the display manager.

Re: Dual monitors - after monitor sleep, forget settings

2020-01-01 Thread Carl Fink
On 1/1/20 5:47 PM, Charles Curley wrote: On Wed, 1 Jan 2020 17:06:11 -0500 Carl Fink wrote: Suggestions? Yes. I have the same problem with XFCE's built in display application. Use arandr to set up your dual monitor setup. Having done that, have arandr save the setup. That will give you a sho

Re: Dual monitors - after monitor sleep, forget settings

2020-01-01 Thread Charles Curley
On Wed, 1 Jan 2020 17:06:11 -0500 Carl Fink wrote: > Suggestions? Yes. I have the same problem with XFCE's built in display application. Use arandr to set up your dual monitor setup. Having done that, have arandr save the setup. That will give you a short shell script (in the ~/.screenlayout di

Dual monitors - after monitor sleep, forget settings

2020-01-01 Thread Carl Fink
Hi, I'm using an Intel NUC (BOXNUC8i5BEK1). I'm running Buster and the MATE environment. I had been using a single monitor, via the HDMI port and a VGA adapter, since I have a very old monitor. A few days ago, I added a second monitor via the USB-C port and an adapter, also to VGA. Actually

Re: Making udev forget ?

2015-09-30 Thread Miles Fidelman
Renaud (Ron) OLGIATI wrote: Is there a way to make udev "forget" all the removable storage peripherals it has "seen" ? Cheers, Ron. Look for files in /etc/udev/rules.d containing the word "persistent" - in the case of network devices, you just need to remo

Making udev forget ?

2015-09-30 Thread Ron
Is there a way to make udev "forget" all the removable storage peripherals it has "seen" ? Cheers, Ron. -- Love built on beauty Soon as beauty dies.

Re: Network Manager won't forget bad wep key

2013-08-13 Thread John L. Cunningham
On Wed, Aug 14, 2013 at 01:37:47AM +0200, Ralf Mardorf wrote: > Did you delete the connections in > > /etc/NetworkManager/system-connections > > ? THANK YOU! I was able to edit the bad wep key that lived there and now it works. -- John -- To UNSUBSCRIBE, email to debian-user-requ...@lists.de

Re: Network Manager won't forget bad wep key

2013-08-13 Thread Ralf Mardorf
Did you delete the connections in /etc/NetworkManager/system-connections ? Did you run nm-connection-editor ? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1376

Network Manager won't forget bad wep key

2013-08-13 Thread John L. Cunningham
How do I get Network Manager to prompt me for a wep key again? I accidentally typed in the wrong wep key, and now it just says: Connection Failed Activation of Network Failed whenever I try to connect. I have told it to "forget network" once, in the hopes that it would try

Re: How to make dpkg forget a package was ever there?

2005-01-09 Thread Travis Crump
William Ballard wrote: On Mon, Jan 10, 2005 at 12:22:50AM -0500, Roberto Sanchez wrote: I have edited /var/lib/dpkg/status to recover from a b0rked system after a power outage in the middle of a fairly big dist-upgrade. Just be careful, as you have the potential to really hose dpkg's idea of what

Re: How to make dpkg forget a package was ever there?

2005-01-09 Thread William Ballard
On Mon, Jan 10, 2005 at 12:46:46AM -0500, Roberto Sanchez wrote: > Doesn't seem like it would be a problem. I would say, though, that the > correct behavior for vrms is to ignore the package. If you have purged > it, all traces a presumably gone. Thus, the package is no longer there. > I would r

Re: How to make dpkg forget a package was ever there?

2005-01-09 Thread Roberto Sanchez
Quoting William Ballard <[EMAIL PROTECTED]>: > On Mon, Jan 10, 2005 at 12:22:50AM -0500, Roberto Sanchez wrote: > > I have edited /var/lib/dpkg/status to recover from a b0rked system after > a > > power outage in the middle of a fairly big dist-upgrade. Just be > careful, > > as you have the pote

Re: How to make dpkg forget a package was ever there?

2005-01-09 Thread William Ballard
On Mon, Jan 10, 2005 at 12:22:50AM -0500, Roberto Sanchez wrote: > I have edited /var/lib/dpkg/status to recover from a b0rked system after a > power outage in the middle of a fairly big dist-upgrade. Just be careful, > as you have the potential to really hose dpkg's idea of what is on your > syst

Re: How to make dpkg forget a package was ever there?

2005-01-09 Thread Roberto Sanchez
Quoting William Ballard <[EMAIL PROTECTED]>: > vrms still lists some non-free packages on my system as "purged." > References to these are found in /var/lib/dpkg/status. > Can I just edit this file? > I have edited /var/lib/dpkg/status to recover from a b0rked system after a power outage in the

How to make dpkg forget a package was ever there?

2005-01-09 Thread William Ballard
vrms still lists some non-free packages on my system as "purged." References to these are found in /var/lib/dpkg/status. Can I just edit this file? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Forget the doctor, get meds online 07/01/04

2004-07-01 Thread Tanisha Ferreira
http://incredimeds.net/?partid=m122";> http://aahtech.com/add2.gif"; width="500" height="300">

dselect - forget a bad selection?

2004-05-27 Thread Luke Reeves
So dselect, when trying to upgrade a Gnome 2.6 package (I believe) recommended that I uninstall basically all of KDE due to a library conflict. Instead of backing out of the suggestion I went with it, but didn't go to the install phase. Now each time I try to run dselect, the same erroneous se

Sid, saslauthd out of the box, does it work for you? FORGET THIS ONE, SORRY POLLUTING THE LIST.

2004-04-24 Thread Jokke Heikkilä
All is ok, too few braincells in my head... jokke -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: (And don't forget) - was:hi QUESTION

2004-02-11 Thread Steve Hargreaves
Greg Folkert wrote: Installation Manual for PowerPC This is currently the Processor for IBM's RS6000 and also the Processor for the Current Crop of Apples Machines (G3/G4/G5), pretty much a Cream of the Crop architecture right now. And don't forget it's also the base for

Don't forget!

2003-11-05 Thread Bellota Ranch
Hey! Go here and we'll both get free movie tickets! http://freeflixtix.com/v.html?m=7416cdb&v=81447e Use this invitation code: 8471678 later, Bellota -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: How to tell apt-get or dpkg to forget about a package?

2003-09-07 Thread Jason Chambers
On Sat, Sep 06, 2003 at 12:03:40PM -0700, Hugo Vanwoerkom wrote: > I thought too about hold... > So I did set the package to hold, > has no effect: > > I apt-get install > he gets and first tries to reinstall the > kernel-package again, when I Ctrl-c out of that, he > installs . > If your happ

Re: How to tell apt-get or dpkg to forget about a package?

2003-09-06 Thread Hugo Vanwoerkom
I thought too about hold... So I did set the package to hold, has no effect: I apt-get install he gets and first tries to reinstall the kernel-package again, when I Ctrl-c out of that, he installs . May be I'll try the developers group. Thanks!! Hugo. __ Do yo

Re: How to tell apt-get or dpkg to forget about a package?

2003-09-06 Thread Mario Vukelic
> > Reading man dpkg I do not see an option that says: "do > > not try to reinstall the package"... I've missed the start of the thread, so excuse me if this isn't what the OP wants, but setting the package to "hold" should do it, no? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subjec

Re: How to tell apt-get or dpkg to forget about a package?

2003-09-06 Thread Russell Shaw
Hugo Vanwoerkom wrote: Thanks Russell! I did not know about the reference you quoted. But... I did not explain well enough! I do NOT want to remove the kernel-image package because it will remove my kernel which works very well. I just want "him" not to try to reinstall, because it is already insta

Re: How to tell apt-get or dpkg to forget about a package?

2003-09-06 Thread Hugo Vanwoerkom
Thanks Russell! I did not know about the reference you quoted. But... I did not explain well enough! I do NOT want to remove the kernel-image package because it will remove my kernel which works very well. I just want "him" not to try to reinstall, because it is already installed, except for the i

Re: How to tell apt-get or dpkg to forget about a package?

2003-09-05 Thread Russell Shaw
make-kpkg creates and wants a "continue". At that point I hit Ctrl-c and he installs what I apt-getted. Question: how can I tell him to forget about the failed-config of kernel-image-2.4.21-xfs and leave it as is. I don't want to read about kernel-image everytime I install something.

How to tell apt-get or dpkg to forget about a package?

2003-09-05 Thread Hugo Vanwoerkom
s and wants a "continue". At that point I hit Ctrl-c and he installs what I apt-getted. Question: how can I tell him to forget about the failed-config of kernel-image-2.4.21-xfs and leave it as is. I don't want to read about kernel-image everytime I install something... Eventually I wi

Re: making aptitude forget changes

2003-02-20 Thread Thomas Friedrichsmeier
t; up my system...), but anyway - how can I tell aptitude to simply forget > about all those changes? (I'm not in the same session anymore, and "undo" > does not have any effect). > Thanks for any help! > > Thomas > > PS: please CC me, I'm not subscribed

making aptitude forget changes

2003-02-20 Thread Thomas Friedrichsmeier
-layout after having screwed up my system...), but anyway - how can I tell aptitude to simply forget about all those changes? (I'm not in the same session anymore, and "undo" does not have any effect). Thanks for any help! Thomas PS: please CC me, I'm not subscribed. -- T

Re: Debian on SunBlade 100? Forget about it.....

2002-10-14 Thread Alan D. Salewski
On Tue, Oct 08, 2002 at 09:14:10AM -0500, Ron Johnson spake thus: > On Tue, 2002-10-08 at 01:05, Alan D. Salewski wrote: > > On Fri, Oct 04, 2002 at 01:22:14PM +, Doug MacFarlane spake thus: > > > On 04 Oct 2002, 00:22:29, Ron Johnson wrote: > > > > > same for one of my freebsd boxes(my living

Re: Debian on SunBlade 100? Forget about it.....

2002-10-08 Thread Ron Johnson
On Tue, 2002-10-08 at 01:05, Alan D. Salewski wrote: > On Fri, Oct 04, 2002 at 01:22:14PM +, Doug MacFarlane spake thus: > > On 04 Oct 2002, 00:22:29, Ron Johnson wrote: > > > > same for one of my freebsd boxes(my living room has 12 computers > > > > in it, 5 of which are turned off due to hea

Re: Debian on SunBlade 100? Forget about it.....

2002-10-07 Thread Alan D. Salewski
--JYK4vJDZwFMowpUq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 04, 2002 at 01:22:14PM +, Doug MacFarlane spake thus: > On 04 Oct 2002, 00:22:29, Ron Johnson wrote: > > > same for one of my freebsd boxes(my liv

Re: Debian on SunBlade 100? Forget about it.....

2002-10-04 Thread Bob Hauck
On Thu, 3 Oct 2002, nate wrote: > Marlon Ott said: > > What a deal... $3800 for a brand new SunBlade 100 with > > you got ripped off. new sun blade 100s are going for > under $900(this was a year ago) I'm hoping he means a SunBlade 1000, they cost upwards of $3000. I paid $1100 for a new 100 w

Re: Debian on SunBlade 100? Forget about it.....

2002-10-04 Thread Doug MacFarlane
On 04 Oct 2002, 00:22:29, Ron Johnson wrote: > > same for one of my freebsd boxes(my living room has 12 computers > > in it, 5 of which are turned off due to heat and/or lack of > > My wife would pitch a *FIT* if I did that. I'm still amazed that > she dated me a 2nd time, considering the stacks

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Jeff
nate, 2002-Oct-03 15:28 -0700: > (my living room has 12 computers > in it, 5 of which are turned off due to heat and/or lack of > battery backup capacity). so, i take it you don't invite your dates to your place, for fear that they might get the right impression? :-) jc -- Jeff Coppock

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Ron Johnson
On Thu, 2002-10-03 at 17:28, nate wrote: > Robert Ian Smit said: [snip] > same for one of my freebsd boxes(my living room has 12 computers > in it, 5 of which are turned off due to heat and/or lack of My wife would pitch a *FIT* if I did that. I'm still amazed that she dated me a 2nd time, consi

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Robert Ian Smit
* nate <[EMAIL PROTECTED]> [04-10-2002 00:30]: > [SGI Indy (R4k 100Mhz 32MB 1GB HD)] > I downloaded the bootable debian install cd for indy, though I > read that I may need another kind of CDROM to read it on the indy. Ah, the luxury of a cdrom. I bought the Sun and a very expensive VGA conver

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread nate
Robert Ian Smit said: > Could the item also be used as a foot stool, should I need to > cowardly give up getting an OS to run on it? I used an SGI Indy (R4k 100Mhz 32MB 1GB HD) as a monitor stand for about 2 years. the machine runs fine, I reinstalled it on a new 4.5GB drive recently, just too

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Robert Ian Smit
* Ron Johnson <[EMAIL PROTECTED]> [03-10-2002 23:18]: > > Server box, and the SunBlade is great for holding up > > the monitor. > > You've got so much money to burn on monitor stands, how's about > sending me a couple of "monitor stands". +$0,50 I managed to get an old Sun working, I'd love to

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread nate
Marlon Ott said: > What a deal... $3800 for a brand new SunBlade 100 with you got ripped off. new sun blade 100s are going for under $900(this was a year ago) > Well folks too bad I cannot load Debian. From the > support site's "SunBlade 100" string it appears that I > should remove my vide

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Ron Johnson
On Thu, 2002-10-03 at 14:48, Marlon Ott wrote: > What a deal... $3800 for a brand new SunBlade 100 with [snip] > Server box, and the SunBlade is great for holding up > the monitor. You've got so much money to burn on monitor stands, how's about sending me a couple of "monitor stands". -- +

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Kent West
Marlon Ott wrote: > What a deal... $3800 for a brand new SunBlade 100 with > all the bells and whistles. Actually came loaded with > Solaris 8(!) -> Had to argue with SUN for a month to > get a stinkin "9" CD (Gosh thanks McNealy, hope the > 3800.00 covers your CD costs). Entire day spent just > l

Re: Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Karl E. Jorgensen
I really should know better than to reply to this sort of stuff. but.. Quick! before I change my mind! On Thu, Oct 03, 2002 at 12:48:58PM -0700, Marlon Ott wrote: > What a deal... $3800 for a brand new SunBlade 100 with > all the bells and whistles. Actually came loaded with > Solaris 8(!) ->

Debian on SunBlade 100? Forget about it.....

2002-10-03 Thread Marlon Ott
What a deal... $3800 for a brand new SunBlade 100 with all the bells and whistles. Actually came loaded with Solaris 8(!) -> Had to argue with SUN for a month to get a stinkin "9" CD (Gosh thanks McNealy, hope the 3800.00 covers your CD costs). Entire day spent just loading Solaris 9... looks bett

[Fwd: SCSI Tape Device] -- Forget it

2002-05-01 Thread curtis
Forget my post. It's now working! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

How do I tell dselect to forget what I just selected?

2001-08-29 Thread Ken Januski
Hi, I've finally gotten my boss to try Debian on his PC after the success that I've had. But he's done something in dselect that wants to removed many packages and install many others. He'd like to back out of this because he's not exactly sure what he did. And I can't really tell whether it's sa

Re: forget me not

2001-02-14 Thread Carel Fellinger
On Wed, Feb 14, 2001 at 03:07:06PM -0800, jdls wrote: > Hi, > > I noticed there are a lot of people asking about configuring sound, compiling > the kernel, etc and there was this one thread that I saw that had a very > good link. It had tutorials about those things and some background > explanati

forget me not

2001-02-14 Thread jdls
Hi,   I noticed there are a lot of people asking about configuring sound, compiling the kernel, etc and there was this one thread that I saw that had a very good link. It had tutorials about those things and some background  explanations too. the page was divided into "classes" like hardware

Re: FORGET WHAT I SAID

1999-12-08 Thread Oki DZ
"Neil D. Roberts" wrote: > > FORGET WHAT I SAID: > > I'll start again. . .The configuration I have is the following: > > /etc/conf.modules: > > alias ne0 ne > alias ne1 ne > > options ne0 io=0x320 irq=09 > options ne1 io=0x200 irq=03 >

Re: FORGET WHAT I SAID

1999-12-08 Thread Oki DZ
"Neil D. Roberts" wrote: > > FORGET WHAT I SAID: > > I'll start again. . .The configuration I have is the following: > > /etc/conf.modules: > > alias ne0 ne > alias ne1 ne > > options ne0 io=0x320 irq=09 > options ne1 io=0x200 irq=03 >

FORGET WHAT I SAID

1999-12-01 Thread Neil D. Roberts
FORGET WHAT I SAID: I'll start again. . .The configuration I have is the following: /etc/conf.modules: alias ne0 ne alias ne1 ne options ne0 io=0x320 irq=09 options ne1 io=0x200 irq=03 /etc/modules: ne0 ne1 When I did "modprobe ne", "modprobe ne0", "modpr

forget

1999-11-27 Thread luis
hello please froget my mail concerning my class 1 modem all i need was to download tthe last version of the efax package thanks a lot

Re: DON'T FORGET TO RESTART EXIM ?

1999-11-12 Thread Dave Baker
On Fri, 12 Nov 1999, Shaul Karl wrote: > > > > DON'T FORGET TO RESTART EXIM. > > > > Does exim run as a daemon on a desktop machines ? > Let me rephrase my statement. Don't forget to restart exim if you're running it as a daemon. I'll lea

Re: DON'T FORGET TO RESTART EXIM ?

1999-11-12 Thread Ben Collins
On Fri, Nov 12, 1999 at 10:49:05PM +0200, Shaul Karl wrote: > > > > DON'T FORGET TO RESTART EXIM. > > > > Does exim run as a daemon on a desktop machines ? > > [22:31:15 /tmp]$ ps axf | grep exim > 5533 ttyp3S 0:00 | \_ grep

Re: DON'T FORGET TO RESTART EXIM ?

1999-11-12 Thread J C Lawrence
On Fri, 12 Nov 1999 22:49:05 +0200 Shaul Karl <[EMAIL PROTECTED]> wrote: > Does exim run as a daemon on a desktop machines ? It can, and the default potato install runs it that way, but it need not and I would recommend running it aw as a daemon if you have any sort of noticable mail load. Of c

DON'T FORGET TO RESTART EXIM ?

1999-11-12 Thread Shaul Karl
> > DON'T FORGET TO RESTART EXIM. > Does exim run as a daemon on a desktop machines ? [22:31:15 /tmp]$ ps axf | grep exim 5533 ttyp3S 0:00 | \_ grep exim [22:43:38 /tmp]$

Re: I forget my root password and all password

1998-11-16 Thread Ivan Moore II
got the debian rescue disk? On Mon, 16 Nov 1998, Cest wrote: > Hallo, > Anybody can help me, i forget my root password and all user passord, i > use kernel debian 2.0.34, soo how i can have my root password back. > > Sorry my (bad) English. > >

Re: I forget my root password and all password

1998-11-16 Thread Oliver Elphick
dow passwords, the password field just contains an x. Restore that before you run passwd again. > >-Rich Perow > -! <[EMAIL PROTECTED]> > >On Mon, 16 Nov 1998, Cest wrote: > >> Hallo, >> Anybody can help me, i forget my root password and all user

Re: I forget my root password and all password

1998-11-16 Thread rich
ah fun stuff. easy way: boot using rescue disk and mount your harddrive, you'll have to run 'passwd root' and set a new pass. -Rich Perow -! <[EMAIL PROTECTED]> On Mon, 16 Nov 1998, Cest wrote: > Hallo, > Anybody can help me, i forget my root password and all u

I forget my root password and all password

1998-11-16 Thread Cest
Hallo, Anybody can help me, i forget my root password and all user passord, i use kernel debian 2.0.34, soo how i can have my root password back. Sorry my (bad) English. thanks you Cest

Forget Windows 95, friends (Re: TRANSLATION Re: the instructions for win95 under dosemu)

1998-03-21 Thread Marcus Brinkmann
On Fri, Mar 20, 1998 at 06:01:56PM -0800, Luiz Otavio L. Zorzella wrote: > Alexander List writes: > > > Hi, > > did you yourself try this? I installed a minimal Win95 on my C partition > > and used the dosemu.conf mentioned. After disabling the mode con codepage > > prepare stuff in autoexec.bat,

Re: "dpkg --forget-old-unavail" do nothing

1997-09-12 Thread Jim Pick
> > dpkg --forget-old-unavail forget uninstalled unavailable pkgs > > > >Did you have any uninstalled, unavailable packages? If not, then > ^^^ ^^^ > Yes. ? > > >that's why it didn'

Re: "dpkg --forget-old-unavail" do nothing

1997-09-12 Thread Andrea Arcangeli
On Thu, 11 Sep 1997, Jim Pick wrote: > >> Why? > >Running dpkg --help, it says: > > dpkg --forget-old-unavailforget uninstalled unavailable pkgs > >Did you have any uninstalled, unavailable packages? If not, then ^^^ ^^

Re: "dpkg --forget-old-unavail" do nothing

1997-09-12 Thread Jim Pick
> Why? Running dpkg --help, it says: dpkg --forget-old-unavail forget uninstalled unavailable pkgs Did you have any uninstalled, unavailable packages? If not, then that's why it didn't do anything. If you did, then it's a bug. Cheers, - Jim pgpdzLhEFBqfp.pg

"dpkg --forget-old-unavail" do nothing

1997-09-11 Thread Andrea Arcangeli
Why? Andrea Arcangeli FYI, Andrea in Italy is a male name. (I am tired of being mistaken for a female :) -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: Diald & modem forget irq #

1997-07-11 Thread Michael B. Taylor
I believe the isapnptools package is intended to deal with situations like this. See the manpage for pnpdump after installing. Mike Taylor On Fri, 11 Jul 1997, Will Lowe wrote: > I have a Hayes Accura 33.6 faxmodem; it's pnp, I have a pnp bios, > everything is configured successfully by the

Re: Diald & modem forget irq #

1997-07-11 Thread Andree Leidenfrost
Hi Will, did you perhaps compile the serial driver as a module? If so the behaviour is quite clear. When the serial module is unloaded the hardware configuration, i.e. IRQ and IO is lost. Upon reloading the module the default values are used. Consequently, the solution could be to compile the seri

Diald & modem forget irq #

1997-07-11 Thread Will Lowe
I have a Hayes Accura 33.6 faxmodem; it's pnp, I have a pnp bios, everything is configured successfully by the bios. The modem, which for some reason is placed by the bios on /dev/cua3 (com 4), is auto-pnp-configured to use irq 10. Since the Linux default for this device file seems to