cdrecord error
I'm trying to use cdrecord with a new ide cdrw. I went through the ide-scsi howto I found and I now get the following lines in dmesg, and I can mount the drive as /dev/sr0. --dmesg SCSI subsystem driver Revision: 1.00 scsi0 : SCSI host adapter emulation for IDE ATAPI devices Vendor: OPTORITE Model: CD-RW CW4802 Rev: 150E Type: CD-ROM ANSI SCSI revision: 02 Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0 --dmesg But when I try to run "cdrecord -scanbus" as root, I get: cdrecord: Read-only file system. Cannot open '/dev/pg0'. Cannot open SCSI driver. cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root. cdrecord: For possible transport specifiers try 'cdrecord dev=help'. On my other box with the dead scsi cd burner, I notice it opens /dev/sg0 and in the dev=help option, I noticed that pg is related to parallel port burners. Is cdrecord trying to read a parallel port drive? If so how can I get it to change? Thanks. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: cdrecord error
On Tue, Feb 25, 2003 at 09:28:38AM +0100, Eduard Bloch scribbled... > #include > * Jason Majors [Mon, Feb 24 2003, 08:12:57PM]: > > I'm trying to use cdrecord with a new ide cdrw. > > I went through the ide-scsi howto I found and I now get the following lines > > in dmesg, and I can mount the drive as /dev/sr0. > > > > --dmesg > > SCSI subsystem driver Revision: 1.00 > > scsi0 : SCSI host adapter emulation for IDE ATAPI devices > > Vendor: OPTORITE Model: CD-RW CW4802 Rev: 150E > > Type: CD-ROM ANSI SCSI revision: 02 > > Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0 > > --dmesg > > > > But when I try to run "cdrecord -scanbus" as root, I get: > > cdrecord: Read-only file system. Cannot open '/dev/pg0'. Cannot open SCSI > > driver. > > cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are > > > modprobe sg sg was already loaded, so I felt no need to modprobe it. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
faster boot sequence
I've started a project http://savannah.nongnu.org/projects/oggcastd/ to play Ogg Vorbis and MP3 files in my car. The box I use boots automatically when it gets power, but it still takes almost 30s after I turn the key to get sound. How can I speed up the boot process? I'm using a fairly minimal Sid install with a 2.4.19 custom kernel and ext3 (for the instant power downs). All I ever really need is the kernel, a serial port, basic I/O, and an ethernet connection (which I think I'll take out of rc2.d and add as a menu option). Any ideas would be appreciated. Thanks. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: how to rename multiple files
On Mon, Dec 09, 2002 at 11:33:03PM -0800, Osamu Aoki scribbled... > On Mon, Dec 09, 2002 at 10:02:25PM -0600, Shyamal Prasad wrote: > > "drew" == drew cohan <[EMAIL PROTECTED]> writes: > > > > drew> How do I rename all files in a directory matching the > > drew> pattern *.JPG to *.jpg in a bash shell script? Thanks to > > drew> you guys I can check for the existence of jpgs in a > > drew> directory, but can't seem get 'mv' to rename them for me > > drew> (always complains that the last argument must be a > > drew> directory). > > > > Still another way: > > > > for i in *.JPG > > do > > mv $i `basename $i .JPG`.jpg > > done > > Simplest alternative without sub-shell nor special command: > > for i in *.JPG > do > mv $i ${i%\.JPG}.jpg > done > My way: #!/usr/bin/perl -w # mmv # Renames files based on regex patterns. use Getopt::Std; getopts("tv"); die "bad usage\n" unless (@ARGV > 2); my ($p1, $p2) = @ARGV; $opt_t = 1 if defined $opt_t; $opt_v = 1 if defined $opt_v; my $newFile; foreach my $file (@ARGV) { if ($file =~ m#$p1#) { $newFile = $file; $newFile =~ s/$p1/$p2/; print "Move '$file' to '$newFile'\n" if ($opt_t or $opt_v); rename $file, $newFile unless ($opt_t); } } -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: faster boot sequence
> Jason Majors wrote: > > I've started a project http://savannah.nongnu.org/projects/oggcastd/ to play > > Ogg Vorbis and MP3 files in my car. The box I use boots automatically when > > it gets power, but it still takes almost 30s after I turn the key to get > > sound. > > How can I speed up the boot process? > On Tue, Dec 10, 2002 at 12:11:10PM -0500, Joey Hess scribbled... > Wellm how far does it need to boot before you can run the ogg player? > I'll bet you can move the init script for the player to run as > /etc/rc2.d/S01whatever and shave off a few seconds. I do this with xdm > on laptops as well. The rest of the boot can happen after the important > stuff starts up. If you're feeling really antsy you could put it in > /etc/rcS.d/S36, so it runs right after all disks are mounted. > I was about to boot it up to check, but plugged in my notebook's 19V PS, instead of the correct 12V, and now the power distribution board is dead. :( But it was pretty low in the boot order, not S01, but pretty low. I'm mostly wondering about things I can pull out of rc2.d and rcS.d that aren't really needed for a simple box like this. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
mounting file systems without fsck
I'm setting up a car computer that will be shut down by powering off, and need to keep fsck from running at reboot. I tried doing a remount-ro, but now it spits out lots of errors and doesn't even get to a login prompt. I need to be able to write to the /tmp partition though. How can I do this? Thanks, Jason -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Setting up Sendmail
Try exim. It's easier to set up. On Thu, Sep 26, 2002 at 08:02:54PM -0700, Michael Olds scribbled... > Hello, > > Woody. > > I am having some difficulty getting Sendmail up and running. > I installed the program apparently with no problems. I ran: sendmailconfig > after the install, also apparently no problems, no errors reported. But > nothing works either. So I looked in /etc/mail/ and there is no sendmail.cf > so I tried running sendmailconfig again and it asked if it should configure > using the existing sendmail .conf and I said yes. And it reported there was > no /usr/sbin/update_conf which there isn't as it's in /usr/share/sendmail/ > > (Question one: could I just move it to where it wants?) > > There is no existing sendmail.conf in /etc/mail/ either. > > When I tried to create a sendmail.cf using: > > cd /etc/mail > m4 /usr/share/sendmail/cf/m4/cf.m4 I first got a permission denied and saw > that the files in /m4/ were all marked non executable. I marked them > executable but I am not sure if that was the right thing to do. > > I re-ran m4 etc and got this error message: > NONE:0:m4: ERROR: EOF in string > > I tried looking up EOF (?end of file?) on Google where there are many > references and no explanations. > > I have uninstalled and reinstalled the program several times and I always > end up at this spot. Does anyone know how I get out of this? > > Thanks in advance, > > > -- > 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]
xf86 4.0.2
I just started using debian (I've been using Redhat for years), and I'm having trouble with my X-Window system. I installed the 4.0.2 packages from woody, but noticed that xserver-svga is still 3.3.6 and xserver-common is installed as both 4.0.2 and 3.3.6. When I run startx with the 3.3.6 XF86Config in place, the server works fine, but when I try it with the 4.0.2 config file in place I get error messages about the file's format. How can I get it to run X v4.0.2? thanks, Jason
mpg123
When I try to play mp3s using mpg123 I get no sound, and it doesn't update the progress from the -v flag. I can play audio just fine using xmms and the esd plugin. I tried running as root and nothing changed, so it's not a permission issue. I tried using sndconfig to configure the card, but it couldn't identify the card (it works under RedHat). How can I get my card to work? Thanks, Jason
Re: Problems runing xawtv
Have you made sure that /usr/X11/lib is either in LD_LIBRARY_PATH or in /etc/ld.so.conf? On Tue, Mar 20, 2001 at 11:44:54AM -0500, Stan Brown scribbled... > On Mon Mar 19 21:50:09 2001 Nate Amsden wrote... > > > >Stan Brown wrote: > >> > >> I have build a nice new machine with a WinTV card. Now I want to plat > :-) > >> > >> Loaded the xawtv package, and when I try to run it I get: > >> > >> Script started on Mon Mar 19 20:47:29 2001 > >> yogi:/etc# xawtv > >> xawtv: error while loading shared libraries: libXaw3d.so.6: cannot > load shared object file: No such file or directory > >> yogi:/etc# > >> Script done on Mon Mar 19 20:47:39 2001 > >> > >> What can I do t fix this? > > > >interesting. apt-get should of taken care of that i have xawtv running > 24/7 on > >a machine > >in front of me and libXaw3d.so.6 is part of the xaw3dg package(assuming > your > >running potato) > > > > Yes, it is wiered. Weirder still, is the fact that the shared libs do > seem to exist: > > > Script started on Tue Mar 20 11:42:06 2001 > [EMAIL PROTECTED]:/usr/X11R6/lib$ pwd > /usr/X11R6/lib > [EMAIL PROTECTED]:/usr/X11R6/lib$ ls -l *aw > [EMAIL PROTECTED]:/usr/X11R6/lib$ ls -ld *aw* > [00mdrwxr-xr-x2 root root 4096 Mar 17 21:51 > [01;34mXaw3d[00m > -rw-r--r--1 root root 435704 Mar 15 17:06 [00mlibXaw.a[00m > lrwxrwxrwx1 root root 13 Mar 18 08:15 > [01;36mlibXaw.so[00m -> [00mlibXaw.so.7.0[00m > lrwxrwxrwx1 root root 13 Mar 17 21:49 > [01;36mlibXaw.so.6[00m -> [00mlibXaw.so.6.1[00m > -rw-r--r--1 root root 233144 Mar 15 17:06 > [00mlibXaw.so.6.1[00m > lrwxrwxrwx1 root root 13 Mar 17 21:52 > [01;36mlibXaw.so.7[00m -> [00mlibXaw.so.7.0[00m > -rw-r--r--1 root root 332472 Mar 15 17:06 > [00mlibXaw.so.7.0[00m > -rw-r--r--1 root root 345942 Mar 8 12:07 > [00mlibXaw3d.a[00m > lrwxrwxrwx1 root root 15 Mar 18 08:15 > [01;36mlibXaw3d.so[00m -> [00mlibXaw3d.so.7.0[00m > lrwxrwxrwx1 root root 15 Mar 17 21:51 > [01;36mlibXaw3d.so.7[00m -> [00mlibXaw3d.so.7.0[00m > -rw-r--r--1 root root 260568 Mar 8 12:07 > [00mlibXaw3d.so.7.0[00m > [EMAIL PROTECTED]:/usr/X11R6/lib$ > Script done on Tue Mar 20 11:42:48 2001 > > Any sugestions? > > -- > Stan Brown [EMAIL PROTECTED] > 843-745-3154 > Charleston SC. > -- > Windows 98: n. > useless extension to a minor patch release for 32-bit extensions and > a graphical shell for a 16-bit patch to an 8-bit operating system > originally coded for a 4-bit microprocessor, written by a 2-bit > company that can't stand for 1 bit of competition. > - > (c) 2000 Stan Brown. Redistribution via the Microsoft Network is > prohibited. > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: Access & Permissions
To create a group webdev (or whatever...I'd suggest against dev, because it can get confused with the /dev directory) do this: groupadd To add the users to it: usermod -G ,... You must specify all of the groups that the user belongs to at the time as well as the new group. To change the /var/www directory to allow them to write to it: chgrp -R /var/www chmod -R g+rw /var/www find /var/www -type d |xargs chmod g+x You might not need the last one if your directories already have group execute permissions. Users can (by default with debian) create a directory /home//public_html that will be available to apache as http:///~/ See the apache documentation sections on 'UserDir' for information about this and the section on 'Directory' for information about how to change what a user may and may not do with this personal site. Hope this helps. The o'reilly book on apache admining is a really good place to find out more about this, but I wouldn't bother if you're just doing a web-site for a few friends.
Re: OT: C documentation
man 4 random If you run 'man ' and it gives a different topic than the one you wanted look in the upper right corner for () you need to look in higher sections for the new topic man or whatever. Run 'man man' for more info on it. On Tue, Mar 20, 2001 at 10:20:17PM +0100, Sebastiaan scribbled... > > > On Tue, 20 Mar 2001, ^chewie wrote: > > > Sebastiaan wrote: > > > is there a package containing the documents regarding the standard C > > > library's, including examples of every command? > > > > info libc > > > > and apt-get install manpages-dev > Yes, thank you. This installs a lot of information. > > But now that I have new manpages, old manpages disappear, e.g. before > installing this, 'man random' gave me information about /dev/random, but > now it gives me information about the random function of C. > > Is there a way to tell man that by default it should look for non-Cdev > pages, unless I told him so? > > Thanks in advance, > Sebastiaan > > > > > > or apt-cache search '(libc).*doc' > > > > -- > > ^chewie > > > > Sorry about not signing my email...I can't get access to my > > home workstation today. CCW-20010320 > > > > > > -- > > 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: Installing Netscape 4 on 2.2r2
The apt-get install communicator is the right way, but you need deb ftp://http.us.debian.org/debian unstable main non-free in your /etc/apt/sources.list. Then to run it you have to run communicator (running netscape gets you mozilla). And if you run communicator while mozilla is running, you get a new mozilla window instead (it uses /etc/alternatives/communicator instead of running it directly). On Tue, Mar 20, 2001 at 09:58:37PM +, Chris Howells scribbled... > I am attempting to install Netscape 4 on 2.2r2, but am having > difficulty. > > When I do 'apt-get install netscape4', a package is installed, as > expected. However there does not seem to be an executable instsalled, > and in fact the DEB package is only a few hundered K in size -- > certainly not the whole of Netscape. A file called 'netscape-remote' > does exist however, and running this generates an error message ("Cannot > connect to display", I think). > > 'apt-get install communicator' leads to an error message suggest that > apt knows about the communicator package, although can't find it, for > some reason (and in fact, I can't see it on my three CD set, either). > > What am I actually meant to do to run/install Netscape? > > Cheers, > -- > Chris Howells > E-Mail: [EMAIL PROTECTED] > ICQ: 93699029 > Web: http://www.chowells.uklinux.net > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: Default user umask in X
To change it for apps that don't run from a shell try putting it in /usr/bin/X11/startx Just a guess... :> On Tue, Mar 20, 2001 at 08:25:28PM -0600, Scott E. Graves scribbled... > How can I change the default user umask in X? I'm running XDM by default. > Editing /etc/profile has no effect. > > Thanks, > Scott > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: Really easy FTP question
Look in /etc/inetd.conf for a line like this: ftp stream tcp nowait root /usr/sbin/tcpd /usr/sbin/wu-ftpd -l If it's commented, uncomment it then run /etc/init.d/inetd restart You should have an ftp server. If that line wasn't commented, then your inetd isn't running. To enable it make sure it it's in the /etc/rcX.d/ directory for your runlevel. Determine your runlevel from grep initdefault /etc/inittab # (it's the number after the first colon). then if there's not a symlink from /etc/rcX.d/S20inetd to ../init.d/inetd make one. Sorry if I explained things a little too much, I don't know your sysadmin level. If I didn't explain at enough detail, just say which parts need more detail. --Jason On Tue, Mar 20, 2001 at 09:22:45PM -0800, Matheson Cameron scribbled... > Hey, > > I have a *really* easy question about FTP. How do I > enable it? I'm pretty sure It's not enabled as I read > that it's insecure (I want to use oftpd eventually), > and it doesn't work. Is their a file I need to edit > (does it matter that I'm behind a proxy?). > > Thanks, > Cameron Matheson > > Why isn't their a FTP HOWTO? > > > __ > Do You Yahoo!? > Get email at your own domain with Yahoo! Mail. > http://personal.mail.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: Nude, FREE, Live AMATEURS!!!!!!
On Wed, Mar 21, 2001 at 11:48:19AM +0530, Subramaniam Aiyer (CTS) scribbled... > what kind of shit mail is this how did it come onto our mailing list?come > on > guyz have a heart > Does anybody on this list have the kind of skills to make these bastards regret spamming us? In a way that doesn't violate the laws of your country, of course... ;) > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 21 March 2001 8:12 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED]; > debian-user@lists.debian.org; [EMAIL PROTECTED]; > [EMAIL PROTECTED] > Subject: Nude, FREE, Live AMATEURS!! > > > Below is the result of your feedback form. It was submitted by > ([EMAIL PROTECTED]) on Tuesday, March 20, 2001 at 20:42:20 > --- > > message: This is the NEWEST and HOTTEST released site on the > internet. This site contains nothing but what YOU want to see. This site > is > so HARDCORE, and there are plenty different subsites to choose from. > These > sites include ORAL, GAY, DOMINATION, SUBMISSION, BONDAGE, ANAL, and plenty > more!!!. href="http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=905843&PA=108327";>Click > Here for a look at this extreme hardcore site. Remember there is > ABSOLUTELY NO obligation for visiting this site, but we GUARANTEE > satisfaction. There are plenty of sites to choose from and we promise you > will enjoy each and every one of them!!! Go ahead and take a look at what > we > have to offer! No other site comes close to offering what we have now > put out for you, ENJOY, and feel free to foward this to your friends. > Have > a great day, and have fun! > > --- > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. > If you are not the intended recipient, please contact the sender by reply > e-mail and destroy all copies of the original message. Any unauthorised > review, use, disclosure, dissemination, forwarding, printing or copying > of this email or any action taken in reliance on this e-mail is strictly > prohibited and may be unlawful. > Visit us at http://www.cognizant.com >
Re: Cc: ing to debian-user when replying to a question
I'm guessing it depends on your mail app. I use mutt and unless I actively CC: the list, it only goes to the author of the original message. But some mail apps will automatically put the incoming CC: addresses into the reply's CC:. The fact that you're subscribed to the mailing list doesn't matter when you respond. Your mail client doesn't care about lists, it cares about the addresses in the fields. If you changed your To: to be the list address, then it would forward the message to the rest of us, but if you just send a message to [EMAIL PROTECTED], it has no way of knowing to copy it to the list. You should get two copies of this mail, one directly mailed to you and one redirected by the list server. On Tue, Mar 20, 2001 at 11:53:13PM -0700, Jimmy Richards scribbled... > Hi All, > > > There is something I have been confused/wondering about for some > time. I thought I once saw someone say in their reply that they > didn't need to Cc: to debian-user@lists.debian.org when replying to > a message because they are already signed up on the mailing list. It > looks like I am seeing two messages from some people who have > replied to a question from someone. Which to me means that they > replied to the the person asking the question, and Cc:'d to > debian-users lists, resulting in me(and everyone on the mailing list > I imagine) receiving two replys that are exactly the same. One of of > them being an unessary duplicate because of the Cc:. I have been Cc > my replies to the debian-user list lately because I thought maybe my > responses were only going to the person I was replying to. But I > don't know. Do I need to put in the Cc: debian-user@lists.debian.org > if I want to make sure it goes out to everyone? Or is this automatic > because I am signed up on the mail list. I tried looking at the FAQ > for the mailing list to see if I could find anything about this > subject, but didn't see anything on it. I'm wodering if I don't need > to be Cc'ing, then how does that work? How does it go out to > everyone? If someone could enlighten me I'd sure appreciate it. > Excuse me for my ignorance on this matter, but I thinking I might > not be the only one cornfused... :-) > > > Sincerely, > > Jimmy Richards > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: ftp://ftp.kando.hu/pub/CDROM-Images/debian-unofficial/
If you have the unstable source above the stable one in sources.list, it will look there first. Then run apt-get update and apt-get install . If you're not sure of the name of the package, use an X-based apt front end like gnome-apt or the one for KDE (don't know the name), or look at the packages list at debian.org. On Wed, Mar 21, 2001 at 05:58:55PM +0100, mauro scribbled... > Hi people. > I have just entered in Debian world and also I have just meet the first > difficults. > First of all I'm not able to find a good document about apt-get and dselect, > I guess that a good skill in using of these strunents are essential for > basis understandig and using Debian. > For example: I downloaded and burned the woody CD image from > ftp://ftp.kando.hu/pub/CDROM-Images/debian-unofficial/ > after that I added the CD with the apt-cdrom commando in the source list. > Now I want to select the package to install the ones from the woody not from > potato, how I can do it? > How I can distinguish the package from the two CD distribuitions that I have > in sources.list? > My intention is to install KDE2 from this CD. > > Thanks in advance. > > Mauro > > P.S. Sorry form my dirty English...I'm not a native speaker... > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Linux wannabe
If you give RedHat a try you'll just have that inertia keeping you from moving to debian. I just came from RedHat, trust me, you want to start here if you can. Go to http://www.debian.org/doc/ and read the installation guide. If it says things you don't understand, then you might have some problems. But I think it's worth learning just to get apt (the coolest software install utility I've ever seen!). If you don't think you can do it, check out http://www.linux.org/users/index.html and find your local Linux Users Group. Many have install fests where they'll put whatever you want on your box for free. And if they don't have one coming you can go to the next meeting and get tips from them or even get one to help you one weekend or something...or if your computer is easily moved, you could take it in. On Wed, Mar 21, 2001 at 06:32:09PM -0800, Abner Gershon scribbled... > I just can't take it anymore! My $2000.00 Dell PC with > 256 meg RAM running MS Windows ME crashes hourly at > least. I am ready to take the plunge and give Linux a > try. > > I am a professional but not in computers. Is it > possible for a mere mortal to install Debian on his > desktop PC in dual boot configuration with MS Windows? > Robin Rowe called the Debian installation, "sys admin > hell," in March 2001 Linux Journal. I bought that > issue to learn tips about the installation but found > the article too superficial to be of much help. Where > can I find/buy simple step by step accurate directions > for installation of Debian Linux on a PC? Should I > give Red Hat a try first? > > Thanks for your replies. > > __ > Do You Yahoo!? > Get email at your own domain with Yahoo! Mail. > http://personal.mail.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Parallel port for rio
I'm trying to set up the rio parallel port software. I did modprobe parport_pc; modprobe parport_probe and have the three parallel port modules loaded now, but I still don't have an entry in my /proc/ioports for the parallel port. What do I need to do to get the parallel port functioning? And how can I have the modules load automatically at boot? Just add the lines to /etc/modules ? Thanks --Jason
Re: netscape won't reinstall
You should have /usr/bin/X11/communicator, which is a symlink to /etc/alternatives/communicator, which is a script that will run netscape or mozilla depending on the situation. I just discovered that this morning and haven't had the time to dig thru to find the binary to run for netscape, but running /usr/bin/X11/communicator, without mozilla up at the time, should give you netscape 4.76. On Thu, Mar 22, 2001 at 12:09:24AM -0600, ktb scribbled... > I don't know what is going on here. I've been looking though the > archives but can't find what I'm looking for yet. > > Netscape wouldn't load, java crap I think. To make a long story short > even a reboot wouldn't allow me to use Netscape. Decided to reinstall. > Purged all communicator and netscape packages, cleaned up by hand. > Reinstalled with apt-get - > First the communicator stuff - > communicator-base-476 > communicator-smotif-475 > > Thought that should do it. No executables so ran - > apt-get install netscape > > Setting up netscape-java-476 (4.76-1) ... > > Setting up communicator (4.76-1) ... > > Setting up netscape (4.76-1) ... > > Still no netscape executable anywhere. Basically all I have are the > /usr/lib stuff. I'm running Potato. What am I doing wrong here? > Thanks, > kent > > -- > From seeing and seeing the seeing has become so exhausted > First line of "The Panther" - R. M. Rilke > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: prompt at startup
On your lilo prompt enter "linux 2" assuming the label for your preferred kernel is linux and the runlevel for console is 2. Unless you've changed these, these values will work. I don't know if the default lilo setup will allow you to select like this. You might have to enable it by editing /etc/lilo.conf and uncommenting the lines for 'prompt', 'delay', and 'timeout'. If you modify that file you need to run /sbin/lilo to implement the changes. That should do ya. On Thu, Mar 22, 2001 at 02:11:42PM -0300, Marcelo Chiapparini scribbled... > Hi > I have installed the gdm. But I need, temporaly, to boot into a prompt > without > running X windows. How can I do it? > > TIA > Marcelo > -- > Marcelo Chiapparini > DFT-IF/UERJ > [EMAIL PROTECTED] > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: /etc/rc.d/rc.local under Debian?
Create a file /etc/init.d/start_network (or whatever). Put your network stuff in there, chmod 700 it, and symlink it into the dir /etc/rcX.d/ (where X is your default runlevel--2 for console start), under a name like "S20start_network". If you want an rc.local (I haven't seen anything like that on Debian), you can make one in a similar way, just change the names appropriately and make it an S99 symlink. But you probably want network to come up fast (at S20 or so) because other things require it. But if you have your box set up properly, your network should start automatically from one of the scripts already there. On Thu, Mar 22, 2001 at 06:30:28PM +0100, Gregor Kaleta scribbled... > Please help! > > Which file I have to edit, so that the network becomes started on every > boot > time automatically? > Under Debian 2.2rev2 ist no /etc/rc.d/rc.inet1 or /etc/rc.d/rc.local > which I > could edit (ifconfig eth0 192.168.0.10 ...). > > Gregor Kaleta > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: Got my mouse pointer back... more questions
On Thu, Mar 22, 2001 at 11:56:45AM -0800, [EMAIL PROTECTED] scribbled... > Thanks to an off-list response from Hendrik, in Germany, i have now got > my mouse cursor back. Thanks to him and to all who responded. It turns > out that my video ram was incorrectly specified, and that was the > culprit. Now I have more questions: > > 1. I need to compile a kernel with vfat, ppp, and some other support. > The kernel packages were not installed (/usr/src is empty) Coming from > the RPM world, I think I have figured out how to install software using > apt-get, but what are the 2.2.18 kernel packages actually called? I > don't think I can apt-get without knowing what > actually is. If you apt-get install kernel-source, it will give you a big list. Get the one for your preferred version (2.2.18 maybe). If you don't know the name of a package you can always look at the debian.org site, it has a great package search utility. You shouldn't need to build a new kernel for that though... try this: make sure vfat.o ppp.o (and your others...look in /lib/modules/2.2.X/ and it's subdirs to find the one that sounds like the module you want) are in the /lib/modules/2.2.X directory or a subdirectory. modprobe ppp; modprobe vfat; ... Then add those module names to /etc/modules No need to recompile. :) > >2. Anybody know what window managers and xterms come on the 2.2r2 iso? > I really want to install enlightenment for use w/ gnome, and eterm. > Plus I want the background images that come with e-term. I know E, gnome, and Eterm are all on potato's disk 1. > >3. I am a bit spoiled when it comes to system admin, coming from > Mandrake. Mind you, I'm not complaining, the lack of eye-candy admin was > one of the (many) reasons why I decided to give debian a try. Still, a > list of which file (or directory) in /etc does what would be useful. > There's got to be a how-to or web site or something. There's a whole lot of documentation at debian.org. There's also a book by O'reilly (Using Debian GNU/Linux), that is pretty good for this. > >4. More generally, a description of the differences between debian and > red-hat based distros would be helpful. Debian is less user-friendly (meaning it won't try to make decisions for you and screw things up). Debian has a far better upgrade/update/install program/service (apt). Debian is way cooler for the do-it-yourself types. (And other users will think you're cooler if you say you use Debian, than if you say you use Mandrake.) Debian is entirely RMS approved software (unless you get stuff from non-free). Debian doesn't charge you to use its upgrade/update utility, like RH does now. Debian is a bit slower to put newer things (like kernel 2.4 and X 4.0) out in the stable release. > > Thanks a lot... > > --Shannon > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: install
Perhaps you should restate your question without being so vague. On Thu, Mar 22, 2001 at 02:18:53PM -0800, Rakesh vasudevan scribbled... > hi > can you please tell me which one I had to download > form the internet??? > tell me as soon as possible > have a nice day! > > thank you > > > __ > Do You Yahoo!? > Get email at your own domain with Yahoo! Mail. > http://personal.mail.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: XServer Error
Is /etc/X11/X a symbolic link to the correct Xserver? I'd suggest trying X 4.0.2, which you can get from the unstable and testing dists. It's more likely to support your card. If you do and need help setting that up, just ask again. On Thu, Mar 22, 2001 at 05:12:51PM -0800, Arlo White scribbled... > I have a Diamond Stealth S540 AGP card. I've just installed Debian 2.2r2 > and during the installation process it said that my card was undetected > and > not on the debian lists, but I figured I could just set it up later. So > anyway when XF86Setup was run I went through the steps, set up the mouse, > found my card on the list: Diamond Stealth III (S540) than clicked done. > Than it tries to run the server and comes up with these errors: > > _X11TransSocketUNIXConnect: Can't connect: errno = 111 > (It repeats this line about 5 times, than says:) > Unable to communicate with X server > > I believe the server it is trying to communicate with is the svga server. > I > tried the xf86setup program again but this time went to the details > setting > for my card and clicked the other server: vga16. After clicking done, it > comes up with the same errors. There are also settings for chipset etc. > but > I have no idea what to set these to so I left them on probed. > Why isn't the server working?? > > -Arlo > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: Help with XFree86Setup
You forgot to say what problems you're having. :) Post specific issues, so we can have an idea where to start. On Thu, Mar 22, 2001 at 07:40:32PM -0700, Dan scribbled... > To Whom It May Concern, > > I am a new user to the Linux Environment, and I am having problems getting > xWindows to run on my workstation. Here is a list of what I have in my > computer: > > ASUS P3V4X > Intel Pentium 3 500 > 384MB of RAM > Voodoo3 3500 Video Card > 20Gig Western Digital HDD ATA66 5400RPM > /home is 6000MB > /usr is 10480MB > /root is 500MB > /var is 3500MB > Viewsonic GS790 Monitor > Soundblaster Live Plat > > That is pretty much my setup here, and if I am not mistaken Voodoos are > supposed to run in Linux. Can anyone help me get a patch or a driver module > for my Video Card. If so I would greatly appreciate it. > > Thanks, > Dan > > - > Please do not add me to you address > book as it is very insecure, and I > hate receiving viruses. If I am part of your > address book please remove me. > Thank you. > - > Daniel Reinhardt > Community Internet Access Inc > Technical Support > Voice: 1-505-863-2424 > Fax: 1-505-722-6640 > Internet: http://www.cia-g.com > Homepage: http://www.cia-g.com/~dan502 > -
Re: Help with XFree86Setup
On Thu, Mar 22, 2001 at 07:53:46PM -0700, Dan scribbled... > To Whom It May Concern, > > I am a new user to the Linux Environment, and I am having problems getting > xWindows to run on my workstation. Here is a list of what I have in my > computer: > ... > The problem I am having is that it is not recognizing any fonts, and after i > do a startX it goes the processes and comes up with Unable to communicate > with XServer. I have gone through the XConfig many times and still comes up > with this error. The next time I start the XServer I will remember to write > down the errors. > > Also any recommendations for reading manuals and quick guides to Linux will > be of great help. Do you have font directories setup in /etc/X11/XF86Config (or XF86Config-4 for X 4.x)? Are there fonts in these directories? Which Xserver are you running? I'd guess 3.3.6 unless you setup 4.x by hand. Try upgrading to 4.x it supports more cards, and I'm not sure if the v3 is supported by 3.3.6 (plus 4.x is just sooo much better). You can see the exact output of your XServer in /var/log/XFree86.?.log cat the errors from that to the end of your next mail.
Re: Help with XFree86Setup
On Fri, Mar 23, 2001 at 02:17:38PM +1100, Matthew Dalton scribbled... > Jason Majors wrote: > > > Try upgrading to 4.x it supports more cards, and I'm not sure if the v3 is > > supported by 3.3.6 (plus 4.x is just sooo much better). > > The Voodoo3 is supported by Xfree86 3.3.6. I didn't know (hence the 'not sure' part). > > I think it would be better for this guy to get some experience with > Linux before he attepmts to upgrade X! I don't. Upgrading X was pretty easy. I did it within a day of first using Debian (last week actually). And except for not knowing to link XFree86 to X by hand things went perfectly. And that problem was fixed after a quick email to this list.
Re: imlib
Install the gdk-imlib-dev package to get that header. Out of curiosity, why are you installing these from source into local? I think the best thing about debian is apt, so I do whatever I can to use it to get packages instead of doing a local build install. You can get most (if not all) of the newer stuff you want from unstable or testing if you're willing to risk a very unlikely crash. On Thu, Mar 22, 2001 at 09:51:29PM -0600, Stephen Hargrove scribbled... > (if this message comes across as html, i'm very sorry. pine is down, > fetchmail is crapping out on me, and sendmail is nominal. i've done > everything i know to do to keep this #&%%! mailer to send in plain > text.) > > I'm trying to install gtk-engines-0.12. I've previously installed > imlib-1.9.8. It installed (by default) to /usr/local/lib, and I've > updated /etc/ld.so.conf appropriately. When I runt ./configure for > gtk-engines, it craps out with: > > checking for imlib-config... /usr/local/bin/imlib-config > checking for IMLIB - version >= 1.8... /usr/local/bin/imlib-config: no: > command not found > /usr/local/bin/imlib-config: no: command not found > no > *** Could not run IMLIB test program, checking why... > *** The test program failed to compile or link. See the file config.log > for the > *** exact error that occured. This usually means IMLIB was incorrectly > installed > *** or that you have moved IMLIB since it was installed. In the latter > case, you > *** may want to edit the imlib-config script: /usr/local/bin/imlib-config > configure: error: *** IMLIB 1.8 not installed - please install first *** > > Checking config.log, I found the following: > > configure:2140: gcc -o conftest -g -02 -Wall -I/usr/local/include > -I/usr/X11R6/include conftest.c -L/usr/local/lib -lgdk_imlib -lm 1>&5 > configure:2133: gdk_imlib.h: No such file or directory > configure: failed program was: > #line 2130 "configure" > > I checked, and sure enough, I don't have gdk_imlib.h anywhere on my > system. What do I need to install in order to get it? > > Thanks. > -- > steve > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: No XF86Config-4
Try running xf86config by hand. If you don't have it it might be in the xf86setup package (not sure though). On Thu, Mar 22, 2001 at 10:12:22PM -0600, Ben Pharr scribbled... > I have just done a fresh install of woody and there is no XF86Config-4. > I have install-ed, --reinstall-ed, and dpkg-reconfigure-d several times > on xserver-xfree86, xfree86-common, and xserver-common. Any ideas? > > Ben Pharr > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: nfs with debian and solaris
Do you specify the mount type correctly? Here's an nfs mount from my /etc/fstab: magneto:/usr/local/mp3s /usr/local/mp3s nfs ro,user 0 0 And I assume that the solaris box has its nfs set up correctly. Have you checked it from other machines? On Fri, Mar 23, 2001 at 11:44:12AM +0100, dko scribbled... > hello, > i have an server nfs on solaris (10.11.11.1) and i'm trying to connect to > it > with my debian workstation > when i mount i have that: > mount 10.11.11.1:/home/dko /mnt/test > mount: wrong fs type, bad option, bad superblock on 10.11.11.1:/home/dko, >or too many mounted file systems > > does anyone has encountered that kind of issue ? > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: Can't stat /etc/X11/X
On Fri, Mar 23, 2001 at 09:34:40AM -0600, Benjamin Pharr scribbled... > I ran xf86config to make a XF86Config-4 (which I knew to do, but I > thought > setup was supposed to do that for me), but now I'm still getting the > "Can't > stat /etc/X11/X" message. I was getting it before, but I thought it was > just because X was looking at the wrong configuration file. I know > /etc/X11/X is supposed to be a symlink, but to where? Thanks! With X4.x it should be a link to /usr/X11R6/bin/XFree86 Hopefully by the time it becomes stable, that package will create the link for you. I had this same problem last week, when I upgraded. > > Ben Pharr > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: beginner -- installing ssh
I have it installed as the ssh package apt-get install ssh And it setup all of the dependencies for me. And it works too (I'm running mutt thru it right now). On Fri, Mar 23, 2001 at 01:56:20PM -0600, Jake R. Johnson scribbled... > I am trying to install ssh and am having some problems > > #apt-get install openssh > > then it asks for deps > > #apt-get install openssl > > why can't I do this? > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Re: beginner -- installing ssh
Do you have a non-us site in your /etc/apt/sources.list? Something like deb ftp://non-us.debian.org/debian-non-US stable non-US/main Most of the security related packages are at non-US, because Congressmen don't read the Constitution. On Fri, Mar 23, 2001 at 02:30:05PM -0600, Jake R. Johnson scribbled... > it can't find libsshl09 > > does it depend on your sources.list file > > > On Fri, 23 Mar 2001, Jason Majors > wrote: > > > I have it installed as the ssh package > > apt-get install ssh > > And it setup all of the dependencies for me. And it works too (I'm running > > mutt > > thru it right now). > > > > On Fri, Mar 23, 2001 at 01:56:20PM -0600, Jake R. Johnson scribbled... > > > I am trying to install ssh and am having some problems > > > > > > #apt-get install openssh > > > > > > then it asks for deps > > > > > > #apt-get install openssl > > > > > > why can't I do this? > > > > > > > > > -- > > > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > > > with a subject of "unsubscribe". Trouble? Contact > > > [EMAIL PROTECTED] > > > > > >
Re: Mouse problems on X (intellieye)
Try using the protocol "IMPS/2". And disable 3 button emulation, you only need that if you want simultaneous left and right clicks to be a middle click...your mouse wheel is your true third button. That should fix you. On Sat, Mar 24, 2001 at 10:36:50AM -0800, jennyw scribbled... > I'm using an Microsoft's optical mouse (Intellieye), and am having > trouble getting it to work well with X. In particular, I can't get the > mouse to emulate the middle button (I tried using Emulate3Buttons). I'm > using Debian 2.2 which comes with XFree86 3.3.6.11. Although I think > this is an X issue, I'm also running Ximian Gnome and Enlightenment, in > case that makes a difference. > > I read in the Enlightenment dox that changing the protocol to > "MouseManPlusPS/2" and adding ZAxisMapping and Buttons 5 would help > for a wheel mouse (and not using Emulate3Buttons). Unfotunately, > changing the protocol caused the pointer to jump around weirdly, so I > changed the protocol back to "microsoft". It works okay again, but I > can't seem to get either the additional buttons (including the wheel) > to work. Any suggestions? > > My pointer section currently: > Section "Pointer" > # Protocol "PS/2" > # Device "/dev/mouse" > # Protocol "MousemanPlusPS/2" > Protocol "microsoft" > Device "/dev/mouse" #symlink to /dev/psaux > ZAxisMapping 4 5 > Buttons 5 > #Emulate3Buttons > EndSection > > Thanks! > > Jen > > __ > Do You Yahoo!? > Get email at your own domain with Yahoo! Mail. > http://personal.mail.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
Serial Port, photo PC, and 2.2r1
I just put Debian 2.2r1 on my fiddlin' box and cannot get photopc to work with it. I get EIO errors with any application that tries to read or write to /dev/ttyS? as any user. The serial ports were accessible under the RedHat install I replaced with this one, so I know it's not a problem with the BIOS or hardware. I did an lsmod and have the serial module running. Any ideas? Thanks, Jason Majors
Re: Serial Port, photo PC, and 2.2r1
It's not permissions. I changed the permissions before trying. I also ran as root and had the same problems. On Fri, Feb 09, 2001 at 01:07:38AM -0500, Chris Matta scribbled... > Make sure you have permissions to that device, Debian sets the group > ownership of those devices such that you can "adduser loginname goupname" > for yourself without having to change the actuall permissions, this will > take effect after you next log in. > > -c > ----- Original Message - > From: "Jason Majors" <[EMAIL PROTECTED]> > To: > Sent: Friday, February 09, 2001 1:01 AM > Subject: Serial Port, photo PC, and 2.2r1 > > > > I just put Debian 2.2r1 on my fiddlin' box and cannot get photopc to work > with > > it. > > I get EIO errors with any application that tries to read or write to > /dev/ttyS? > > as any user. > > The serial ports were accessible under the RedHat install I replaced with > this > > one, so I know it's not a problem with the BIOS or hardware. > > I did an lsmod and have the serial module running. > > Any ideas? > > Thanks, > > Jason Majors > > > > > > > > -- > > 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]
exim and fetchmail
I just replaced sendmail with exim on a satellite box on my system. It's also my main workstation. I run fetchmail on it to fetch from my mail server, but as soon as fetchmail fetches, exim forwards it back to the smart host. Is there someway for me to have exim not forward the fetched mail? Or does any body know a better way to have mutt get the mail of the server? Thanks, Jason Here's my exim.conf: # This is the main exim configuration file. # It was originally generated by `eximconfig', part of the exim package # distributed with Debian, but it may edited by the mail system administrator. # This file originally generated by eximconfig at Thu May 31 21:32:19 MST 2001 # See exim info section for details of the things that can be configured here. # Please see the manual for a complete list # of all the runtime configuration options that can be included in a # configuration file. # This file is divided into several parts, all but the last of which are # terminated by a line containing the word "end". The parts must appear # in the correct order, and all must be present (even if some of them are # in fact empty). Blank lines, and lines starting with # are ignored. ## #MAIN CONFIGURATION SETTINGS # ## # Specify the domain you want to be added to all unqualified addresses # here. Unqualified addresses are accepted only from local callers by # default. See the receiver_unqualified_{hosts,nets} options if you want # to permit unqualified addresses from remote sources. If this option is # not set, the primary_hostname value is used for qualification. qualify_domain = whizzird.net # If you want unqualified recipient addresses to be qualified with a different # domain to unqualified sender addresses, specify the recipient domain here. # If this option is not set, the qualify_domain value is used. # qualify_recipient = # Specify your local domains as a colon-separated list here. If this option # is not set (i.e. not mentioned in the configuration file), the # qualify_recipient value is used as the only local domain. If you do not want # to do any local deliveries, uncomment the following line, but do not supply # any data for it. This sets local_domains to an empty string, which is not # the same as not mentioning it at all. An empty string specifies that there # are no local domains; not setting it at all causes the default value (the # setting of qualify_recipient) to be used. local_domains = magneto.whizzird.net:localhost # Allow mail addressed to our hostname, or to our IP address. local_domains_include_host = true local_domains_include_host_literals = true # Domains we relay for; that is domains that aren't considered local but we # accept mail for them. #relay_domains = # If this is uncommented, we accept and relay mail for all domains we are # in the DNS as an MX for. #relay_domains_include_local_mx = true # No local deliveries will ever be run under the uids of these users (a colon- # separated list). An attempt to do so gets changed so that it runs under the # uid of "nobody" instead. This is a paranoic safety catch. Note the default # setting means you cannot deliver mail addressed to root as if it were a # normal user. This isn't usually a problem, as most sites have an alias for # root that redirects such mail to a human administrator. never_users = root # The setting below causes Exim to do a reverse DNS lookup on all incoming # IP calls, in order to get the true host name. If you feel this is too # expensive, you can specify the networks for which a lookup is done, or # remove the setting entirely. host_lookup = * # The setting below would, if uncommented, cause Exim to check the syntax of # all the headers that are supposed to contain email addresses (To:, From:, # etc). This reduces the level of bounced bounces considerably. # headers_check_syntax # Exim contains support for the Realtime Blocking List (RBL) that is being # maintained as part of the DNS. See http://maps.vix.com/rbl/ for # background. Uncommenting the following line will make Exim reject mail # from any host whose IP address is blacklisted in the RBL at maps.vix.com. #rbl_domains = blackholes.mail-abuse.org #rbl_reject_recipients = false #rbl_warn_header = true # The setting below allows your host to be used as a mail relay only by # localhost: it locks out the use of your host as a mail relay by any # other host. See the section of the manual entitled "Control of relaying" # for more info. host_accept_relay = 127.0.0.1 : 1 # This setting allows anyone who has authenticated to use your host as a # mail relay. To use this you will need to set up some authenticators at # the end of the file host_auth_accept_relay = * # If you want Exim to support the "percent hack" for all your local domains, # uncomment the following line. T
asus a7v-e mobo and debian
I'm getting an asus a7v-e (with the VIA Apollo KT133 which has the VIA VT8363 UDMA controller). I'd like to know if anybody on the list has any experience with getting one of these chips to communicate with Linux. I have kernel 2.2.19 but did not see any options for this chip specifically. Will I have to upgrade to 2.4? Or can I get it to run at UDMA100 or even just at UDMA33 on a 2.2 kernel? 33MBps is more than enough throughput for the 20MBps hard drive I have (everything else is on a SCSI card). Thanks, Jason
debian firewall and packet monitoring
I'm setting up a debian machine as a firewall for a friend who has a cable modem that he wants to share with his family. But he wants to be able to monitor the email and yahoo chatting that his kids do. Is there an easy way to do this on a debian box? Thx.
apt-get errors
When I run apt-get update I get this error: gzip: stdin: invalid compressed data--crc error Err ftp://http.us.debian.org testing/main Packages Sub-process gzip returned an error code (1) Fetched 1306kB in 10s (119kB/s) Failed to fetch ftp://http.us.debian.org/debian/dists/testing/main/binary-i386/Packages Sub-process gzip returned an error code (1) Reading Package Lists... Done Building Dependency Tree... Done W: Couldn't stat source package list ftp://http.us.debian.org testing/main Packages (/var/lib/apt/lists/http.us.debian.org_debian_dists_testing_main_binary-i386_Packages) - stat (2 No such file or directory) Then when I try something like apt-get install dpkg I get: W: Couldn't stat source package list ftp://http.us.debian.org testing/main Packages (/var/lib/apt/lists/http.us.debian.org_debian_dists_testing_main_binary-i386_Packages) - stat (2 No such file or directory) W: You may want to run apt-get update to correct these missing files I'm running a mostly testing (some unstable) box with: apt 0.5.3 dpkg 1.9.15 gzip 1.2.4-33 On my box at work I have an identical sources.list, and the same versions of apt, dpkg, and gzip. On the server that's on the same network as this box, I have older versions (the latest stable) of everything, and apt-get update works just fine. Does anyone know what's wrong or how to fix it? Thanks. The important lines from my sources.list: deb http://security.debian.org stable/updates main contrib non-free deb ftp://non-us.debian.org/debian-non-US stable non-US/main deb ftp://non-us.debian.org/debian-non-US testing non-US/main deb ftp://non-us.debian.org/debian-non-US unstable non-US/main deb ftp://http.us.debian.org/debian stable main deb ftp://http.us.debian.org/debian testing main deb ftp://ftp.us.debian.org/debian unstable main deb ftp://http.us.debian.org/debian/ potato main contrib
Re: apt-get errors
I did just manage to get the apt-get update to run successfully, but now I have MD5Sum mismatch errors on all the packages I downloaded from ftp://ftp.us.debian.org/debian/pool/main. It's only this box that has this problem though...so I think it has to be something to do with the versions of software on it. On Mon, Jul 30, 2001 at 01:29:16PM -0400, dman scribbled... > On Mon, Jul 30, 2001 at 10:22:23AM -0700, Jason Majors wrote: > | When I run apt-get update I get this error: > | gzip: stdin: invalid compressed data--crc error > | Err ftp://http.us.debian.org testing/main Packages > | Sub-process gzip returned an error code (1) > | Fetched 1306kB in 10s (119kB/s) > > My guess is that the file got corrupted in the download. Try > downloading the file again (that's Packages.gz, try doing a new > update). > > HTH, > -D > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: Procmail questions
Add this recipe: # Begin :0 * ! ([EMAIL PROTECTED]) * ! ([EMAIL PROTECTED]) /dev/null # End Or...you could just have procmail do the forwarding: # Begin [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] # Not sure if it's commas or spaces. Try it on some dummy accounts first. # Forwards all mail from bossA or bossB to $MAIL_LIST :0 * ([EMAIL PROTECTED]) ! $MAIL_LIST # Anything else goes in the trash. :0 /dev/null # End On Mon, Jul 30, 2001 at 04:09:51PM -0300, Jordi S. Bunster scribbled... > Hello list ... wonder if anyone gives me a hand on this one: > > Here at my job two bosses need to send mail to everyone from time > to time. There're about 20 accounts only, so I did a small script > that runs every week and adds new accounts to the .forward file > of a special account. You get the idea. The boss sends to > [EMAIL PROTECTED] and everyone gets the message. > > But ... right now everyone can send messages to that account. How > can I block mail to it from everyone except the two bosses (with > procmail?) > > This is procmail and sendmail, and, of course a Debian box (2.2r3 > in case it matters). > > Thanks in andvance > > Jordi S. Bunster > > > Jordi S. Bunster > <[EMAIL PROTECTED]> > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: How to update/upgrade libc6?
Assuming you have testing or unstable (wherever it is) in your /etc/apt/sources.list, a simple "apt-get install libc6 libc6-dev" should do the trick. I didn't have any problems doing that. Of course you might get into dependency problems and have other packages that need to be upgraded to support the new libc. There are a few packages it replaces or conflicts with...mostly old libraries and compilers. Best of luck to you. On Mon, Jul 30, 2001 at 12:35:07PM -0700, Joern T. Larsen scribbled... > I am running Debian 2.2r3, and need to update/upgrade libc6 from > 2.1.3-19 to 2.2.3-5 in order to get USB support on my box (hotplut, > modutils, usbutils etc). How do I do that without messing up the system > and lose password files etc? > > Thanks! > > JTLarsen > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: lilo does not work!
Did your rerun lilo after editing lilo.conf? Even if the kernel you just compiled is corrupted or has a driver problem, lilo should still come up. You'd just see a kernel panic or other error when booting that kernel. When I see something like what you saw it's because I forgot to rerun lilo. On Mon, Jul 30, 2001 at 10:00:04PM +0200, Markus Hansen scribbled... > hi guys > i tried to install a 2.2.19 kernel inseead of a 2.2.17. > after booting it sayed > LI > LI > LI > etc. > i dont know, somehow i must have killed my lilo or at least parts of it. > > do you know how to fix it? > can it be that i am using a wrong scsi driver in the new kernel? > i am booting now with 3.5" disk the 2.2.17 kernel which takes hours. > thank you for helping. > markus > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: Finding your IP
run /sbin/ifconfig ppp0 (or just /sbin/ifconfig and look for the block near ppp0). I believe it's part of the net-tools package. On Mon, Jul 30, 2001 at 04:47:29PM -0400, [EMAIL PROTECTED] scribbled... > How can I find out what my IP is once I connect to my PPP service? > > Thanks, > Deven > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: lilo does not work!
And no lilo errors when you ran it? Strange... After booting from your floppy, maybe upgrading lilo (or reconfiguring it) will make it start working again. That's mostly a guess though. On Mon, Jul 30, 2001 at 10:51:51PM +0200, Markus Hansen scribbled... > Jason > strange, but i did. > markus > > > Did your rerun lilo after editing lilo.conf? Even if the kernel you just > > compiled is corrupted or has a driver problem, lilo should still come up. > > You'd > > just see a kernel panic or other error when booting that kernel. > > When I see something like what you saw it's because I forgot to rerun lilo. > > > > On Mon, Jul 30, 2001 at 10:00:04PM +0200, Markus Hansen scribbled... > > > hi guys > > > i tried to install a 2.2.19 kernel inseead of a 2.2.17. > > > after booting it sayed > > > LI > > > LI > > > LI > > > etc. > > > i dont know, somehow i must have killed my lilo or at least parts of it. > > > > > > do you know how to fix it? > > > can it be that i am using a wrong scsi driver in the new kernel? > > > i am booting now with 3.5" disk the 2.2.17 kernel which takes hours. > > > thank you for helping. > > > markus > > > > > > > > > -- > > > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > > > with a subject of "unsubscribe". Trouble? Contact > > > [EMAIL PROTECTED] > > > > > > > >
Re: LILO problems
Put an entry like this: # Boot Win98 other=/dev/sda2 label=dos(2) alias=2 You also need entries for prompt, and delay (and I'd suggest timeout and single-key). prompt # Needed so you can choose what to boot. single-key # Allows you to use number aliases without hitting enter. delay=100 # 10 seconds timeout=100 # 10 seconds until it goes with the default. On Mon, Jul 30, 2001 at 05:03:59PM -0400, [EMAIL PROTECTED] scribbled... > I'm trying to configure LILO to allow me to boot from my FAT partition > (Windows 98) and my Linux partition, but for some reason the only thing > it'll > boot from is Linux. If I try to run a boot loader from DOS to configure > it, > the only partition it'll find is the Windows one. > > Does anyone know what I should do? > -- Deven > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Help! I can't choose my network card in the kernel build options.
I'm trying to rebuild my kernel, and my network card does not come up as an option. The network card is an rtl8139. I have the options for 3COM, AMD Lance, and WD cards, but the RealTek option is grayed out. I enabled TCP/IP networking. The last box I had this card in had a vanilla kernel, so I just used the included module. Am I missing a required option? Is there a way for me to force it to create the module? Thanks, Jason
ssh refuses connections
I have four machines: a firewall, an internal server, and two workstations. When I try an SSH connection from the firewall to the server, or from outside the firewall using its port forwarding to go to the server, I get the error: ssh_exchange_identification: Connection closed by remote host I can connect just fine from the two workstations to the server, the server to the workstations, or any of the internal boxes to the firewall. The only changes that I've made since it last worked were the installation of NIS on the server (which has since been removed), and some NFS changes. Any help would be appreciated. Thanks, Jason
Re: ssh refuses connections
No. I don't think the firewall is the problem. I have problems connecting through that box as well as from that box. It's not a firewall appliance, it's a Potato/Woody box running ipchains and ipmasq. On Tue, Aug 21, 2001 at 01:57:00PM -0400, Wes Byne wrote: > If your firewall is like mine (linksys) then it messes up the connection when > the daemon forks if it attaches to a privileged port (< 1023). Try using ssh > -P hostname to get the daemon to go to a non-privileged port behind the > firewall. > > -Wes > > > On Tue, Aug 21, 2001 at 10:16:12AM -0700, Jason Majors wrote: > > I have four machines: a firewall, an internal server, and two workstations. > > When I try an SSH connection from the firewall to the server, or from > > outside > > the firewall using its port forwarding to go to the server, I get the error: > > ssh_exchange_identification: Connection closed by remote host > > > > I can connect just fine from the two workstations to the server, the server > > to > > the workstations, or any of the internal boxes to the firewall. > > The only changes that I've made since it last worked were the installation > > of NIS on the server (which has since been removed), and some NFS changes. > > > > Any help would be appreciated. > > Thanks, > > Jason > > > > > > -- > > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > > > > -- > * > Wes Byne > Water Quality Modeling and Watershed Assessments > [EMAIL PROTECTED] (voice):706-542-6041 > http://watershed.engr.uga.edu > *
Re: forgot root password on head- and keyboardless machine *blush*
On Tue, Aug 21, 2001 at 08:36:08PM +0200, Ralf G. R. Bergs wrote: > On Tue, 21 Aug 2001 19:19:34 +0100, Stig Brautaset wrote: > > >* dman <[EMAIL PROTECTED]> spake thus: > >> On Tue, Aug 21, 2001 at 06:02:07PM +0100, Stig Brautaset wrote: > >> | I have a head- and keyboardless machine running debian potato that I > >> | used to log into with ssh. Now I have forgotten the password. *blush* > >> > >> The easiest way is to borrow a head and keyboard from somewhere and > >> boot into "single" user mode. Hmm, now if you had a way to reboot ... > > > >I know that this is a solution but I don't have a keyboard. I have a > >screen I could use, but I really don't want to buy a new keyboard just > >to do this... (my friends all have ps/2 keyboards, whilst my machine > >uses the old din-style). > > Even if you HAD a keyboard that fits you would SURELY kill your machine by > hot- > plugging it in (smash the keyboard-controller's fuse, if it has one, or even > blow the controller itself.) No...I do this all the time whenever I need to boot my firewall or my server, both of which run without keyboards most of the time. > > > -- > Sign the EU petition against SPAM: L I N U X .~. > http://www.politik-digital.de/spam/The Choice /V\ > of a GNU /( )\ >Generation ^^-^^ > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] >
Re: ssh refuses connections (more info)
I've been reading the sshd thread and thought I'd run the verbose output mentioned there: OpenSSH_2.9p2, SSH protocols 1.5/2.0, OpenSSL 0x0090601f debug1: Reading configuration data /etc/ssh/ssh_config debug1: Seeding random number generator debug1: Rhosts Authentication disabled, originating port will not be trusted. debug1: restore_uid debug1: ssh_connect: getuid 1000 geteuid 0 anon 1 debug1: Connecting to magneto [192.168.1.3] port 22. debug1: temporarily_use_uid: 1000/1000 (e=0) debug1: restore_uid debug1: temporarily_use_uid: 1000/1000 (e=0) debug1: restore_uid debug1: Connection established. debug1: read PEM private key done: type DSA debug1: read PEM private key done: type RSA debug1: identity file /home/jason/.ssh/identity type -1 debug1: identity file /home/jason/.ssh/id_rsa type -1 debug1: identity file /home/jason/.ssh/id_dsa type -1 ssh_exchange_identification: Connection closed by remote host debug1: Calling cleanup 0x8062c3c(0x0) On Tue, Aug 21, 2001 at 10:16:12AM -0700, Jason Majors wrote: > I have four machines: a firewall, an internal server, and two workstations. > When I try an SSH connection from the firewall to the server, or from outside > the firewall using its port forwarding to go to the server, I get the error: > ssh_exchange_identification: Connection closed by remote host > > I can connect just fine from the two workstations to the server, the server to > the workstations, or any of the internal boxes to the firewall. > The only changes that I've made since it last worked were the installation > of NIS on the server (which has since been removed), and some NFS changes. > > Any help would be appreciated. > Thanks, > Jason > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] >
Re: ssh refuses connections
I don't have that in there. In hosts.deny it's ALL:ALL, and in hosts.allow it's ALL: 192.168.1.*. On Tue, Aug 21, 2001 at 02:37:00PM -0500, Nathan Poznick wrote: > On Tue, Aug 21, 2001 at 11:02:51AM -0700, Jason Majors wrote: > > No. I don't think the firewall is the problem. I have problems connecting > > through that box as well as from that box. It's not a firewall > > appliance, it's a Potato/Woody box running ipchains and ipmasq. > > try commenting out the ALL: PARANOID line in /etc/hosts.deny > I had a problem similar to this one once and IIRC, that fixed it. > > > -- > Nathan <[EMAIL PROTECTED]> > PGP Key: http://drunkmonkey.org/pgpkey.txt > > A novice was trying to fix a broken Lisp machine by turning the power > off and on. Knight, seeing what the student was doing, spoke sternly: > "You cannot fix a machine by just power-cycling it with no > understanding of what is going wrong."Knight turned the machine off > and on. The machine worked.
Re: ssh refuses connections
The box I'm trying to connect from is 192.168.1.1. And I don't think these files affect sshd. On the firewall I have ALL:PARANOID for hosts.deny and nothing in hosts.allow, and I'm running mutt on that box right now through SSH. On Tue, Aug 21, 2001 at 03:51:43PM -0500, Nathan Poznick wrote: > On Tue, Aug 21, 2001 at 01:35:53PM -0700, Jason Majors wrote: > > I don't have that in there. In hosts.deny it's ALL:ALL, and in hosts.allow > > it's > > ALL: 192.168.1.*. > > so... you're denying everything except 192.168.1.*. ...and you're > wondering why you're not able to ssh in except from 192.168.1.*. ? > > -- > Nathan <[EMAIL PROTECTED]> > PGP Key: http://drunkmonkey.org/pgpkey.txt > > "My mother's donuts are a saint!!" > -Crow (as Tom). #312
Re: Exim catch-all recipient
Just a guess, but...does the aliases file accept Regexs? I'd try asking on the exim email list (www.exim.org). I had a problem with exim and got a quick answer from there (and it was a _good_ answer). On Tue, Aug 21, 2001 at 04:20:09PM -0500, Brooks R. Robinson wrote: > Greetings, > Okay, I give up. I've RTFM. I've tried. I've played. How do you get > Exim to redirect mail from an unknown non-user to a given account instead of > bouncing it. I need a catch-all recipient, and I can't figure it out. An > example for that added clarity [EMAIL PROTECTED] gets bounced. I want it > ([EMAIL PROTECTED]) sent to (valid) [EMAIL PROTECTED] or some other > user. > > TIA, > > Brooks > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] >
Re: how do i extract a bullet from my foot (tar woes)
Try rm -- --remove-files The "--" makes it take all following args as args and not options. This is a standard thing for most of the GNU or Unix tools. rm ./--remove-files would work too. Got those from "man rm" :). On Wed, Aug 22, 2001 at 07:28:26AM +1000, Darren Marsh wrote: > allen wayne best just ramblin in his amx wrote: > > >hello: > > > >i have managed to insert a bullet in my poda courtesy of tar and my > >ineptness! that is, i did: > > > > tar -cvIf --remove-files /tmp/foo.tz /opt/tmp > > > >silly me filled up my current directory with a file called > >"--remove-files". my question is: how the heck to i get rid of this > >beast > > > >i've tried > > rm -f "--remove-files" > > rm -f '--remove-files' > > rm -f "\\-\\-remove\\-files" > > rm -f "\-\-remove\-files" > > rm -f '\\-\\-remove\\-files' > > rm -f '\-\-remove\-files' > > > >all with the same lack of success! > > > >any assist in this would be most appreciated. > > > Here's another: > > rm -i *files > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] >
Re: glibc version
RMS would be very disappointed if he knew you wanted to install Oracle... but anyway...your answers: glibc == libc6 Woody meets that requirement. You might need libc6-dev too for headers and such. On Tue, Aug 21, 2001 at 05:28:25PM -0700, Eduardo Gargiulo scribbled... > Hi all. > > I want to install Oracle 8i on my woody box. > The Oracle installation requires glibc 2.1.3 version. > I was looking for glibc package, but i didn't found > it. > The only package that names glibc is libstdc++ > > What package should I install to satisfy the glibc > 2.1.3 > requirement? > > thanks > > > __ > Do You Yahoo!? > Make international calls for as low as $.04/minute with Yahoo! Messenger > http://phonecard.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
[jason@whizzird.net: Re: Xwindows color depth]
Reply with: XFree86 Version XServer Version ("dpkg -l|grep -i xfree" will show both of these). Video Card chipset and RAM size. On Tue, Aug 21, 2001 at 08:40:15PM -0700, David Frischknecht scribbled... > Hello, > > I'm having trouble trying to get XWindows to load up > in any color depth higher than 16bpp. I have my > Win98SE setup for 24bpp color, but XWindows doesn't > want to load up in that color depth. Can someone help > me out? Thanks. > > > > David A. Frischknecht > http://www.fishnetonline.freeurl.com > > > __ > Do You Yahoo!? > Make international calls for as low as $.04/minute with Yahoo! Messenger > http://phonecard.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
[jason@whizzird.net: Re: masquerading]
Linux is Great at that! I'm writing this on a box behind a Linux Gateway/Firewall to my cable modem. There's an ip_masq_quake module, that supports most network gaming (Half-Life is Quake based so you're good). I don't know about paltalk, but I'm able to use dialpad from behind here with a few portforwarding rules, and Yahoo chat runs without any special setup. On Tue, Aug 21, 2001 at 04:22:30PM -0700, Tandex scribbled... > How good is Gateway with linux, right now I am using > WinGate(windows) buth I have heard that linux is much > beter. > > Will I have problem to run Half-life(counter-strike) > over linux ip-masquerading, or run paltalk(voice chat > that use H323 I think) what is the negativ side of > shareing conection(cabel-modem) to internet over linux? > > __ > Do You Yahoo!? > Make international calls for as low as $.04/minute with Yahoo! Messenger > http://phonecard.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: OT: AMD chips cause kernel errors and hangs?
I just got an AMD chip and noticed that witht the RAM set to 133MHz in the BIOS it would lock under Debian or Win98. It happened on my box and my girlfriend's identical box. I'd suggest checking the memory settings. On Tue, Aug 21, 2001 at 11:59:06PM -0600, Rick Macdonald scribbled... > We have a Linux cluster of 1000 nodes. I wasn't involved in setting it up. > They use RedHat 6.2 kernel 2.2.19. Dual AMD 1.2GHz, 2GB memory, 2GB swap, > GB ethernet. > > Several nodes hang and/or get kernel errors every day. The first causes > that come to mind are bad RAM and running out of virtual memory. I've > pasted some logs below. > > The slaves mostly run FORTRAN code compiled with Lahey F95 v6.0 and g77 > (0.5.24-19981002). > > What else could cause these errors? Are there special kernel config issues > for AMD chips? > > I've run Linux for 9 years, always used Intel CPUs, used Debian since > before the first official release ("buzz"), but never heard of so many > problems. > > ch_binary_handler+67/168] [do_execve+417/516] [sys_execve+75/124] > [system_call+52/56] > Aug 21 06:35:07 hou000752cs kernel: Code: f6 46 24 01 74 52 8b 4c 24 68 39 > 4e 14 75 49 8b 4c 24 64 31 > Aug 21 06:35:07 hou000752cs inetd[458]: pid 11124: exit signal 11 > Aug 21 06:35:07 hou000752cs kernel: Unable to handle kernel paging request > at virtual address 00ff0024 > Aug 21 06:35:07 hou000752cs kernel: current->tss.cr3 = 1463e000, %cr3 > 1463e000 > Aug 21 06:35:07 hou000752cs kernel: *pde = > Aug 21 06:35:07 hou000752cs kernel: Oops: > Aug 21 06:35:07 hou000752cs kernel: CPU:0 > Aug 21 06:35:07 hou000752cs kernel: EIP: > 0010:[locks_remove_posix+44/152] > Aug 21 06:35:07 hou000752cs kernel: EFLAGS: 00010206 > Aug 21 06:35:07 hou000752cs kernel: eax: 94629b04 ebx: be6b35a0 ecx: > 94629a94 edx: 947f6920 > Aug 21 06:35:07 hou000752cs kernel: esi: 00ff edi: 942157c0 ebp: > 94629b04 esp: 93a9bc28 > Aug 21 06:35:07 hou000752cs kernel: ds: 0018 es: 0018 ss: 0018 > Aug 21 06:35:07 hou000752cs kernel: Process in.ftpd (pid: 11125, process > nr: 30, stackpage=93a9b000) > Aug 21 06:35:07 hou000752cs kernel: Stack: 942157c0 bcc13f60 94629b04 > 94629a94 8012699a 94785f00 93a9a000 94785f00 > Aug 21 06:35:07 hou000752cs kernel:fff7 0202 93f45aa0 > 00013000 93f45a40 2aabf000 93f45adc 80135619 > Aug 21 06:35:07 hou000752cs kernel:80135626 93f45a40 08085fc0 > 0806b800 bcc13f60 80126991 be6b35a0 > Aug 21 06:35:07 hou000752cs kernel: Call Trace: [filp_close+82/92] > [load_elf_interp+677/708] [load_elf_interp+690/708] [filp > > > > Aug 21 04:02:00 hou000721cs anacron[5515]: Updated timestamp for job > `cron.daily' to 2001-08-21 > Aug 21 04:02:01 hou000721cs kernel: Unable to handle kernel paging request > at virtual address 11008010 > Aug 21 04:02:01 hou000721cs kernel: current->tss.cr3 = 145aa000, %cr3 > 145aa000 > Aug 21 04:02:01 hou000721cs kernel: *pde = > Aug 21 04:02:01 hou000721cs kernel: Oops: > Aug 21 04:02:01 hou000721cs kernel: CPU:0 > Aug 21 04:02:01 hou000721cs kernel: EIP:0010:[d_lookup+100/224] > Aug 21 04:02:01 hou000721cs kernel: EFLAGS: 00010217 > Aug 21 04:02:01 hou000721cs kernel: eax: beee9a88 ebx: 11007ff8 ecx: > 0022 edx: bee0 > Aug 21 04:02:01 hou000721cs kernel: esi: 322f6ef6 edi: ac72f00a ebp: > 11008010 esp: 8542bf3c > Aug 21 04:02:01 hou000721cs kernel: ds: 0018 es: 0018 ss: 0018 > Aug 21 04:02:01 hou000721cs kernel: Process slocate (pid: 5612, process > nr: 18, stackpage=8542b000) > Aug 21 04:02:01 hou000721cs kernel: Stack: ac72f00a beee9a88 > ac72f000 322f6ef6 000a 8012df0c aa7363e0 > Aug 21 04:02:01 hou000721cs kernel:8542bf84 8542bf84 8012e187 > aa7363e0 8542bf84 ac72f000 ac72f000 > Aug 21 04:02:01 hou000721cs kernel:8542a000 7c38 ac72f000 > 000a 322f6ef6 8012e284 ac72f000 aa7363e0 > Aug 21 04:02:01 hou000721cs kernel: Call Trace: [cached_lookup+16/84] > [lookup_dentry+275/488] [__namei+40/88] [sys_newlstat+42/140] > [system_call+52/56] > Aug 21 04:02:01 hou000721cs kernel: Code: 8b 6d 00 8b 74 24 18 39 73 48 75 > 5c 8b 74 24 24 39 73 0c 75 > > > > Aug 19 12:10:00 hou000669cs kernel: Unable to handle kernel paging request > at virtual address d2040200 > Aug 19 12:10:00 hou000669cs kernel: current->tss.cr3 = 11c09000, %cr3 > 11c09000 > Aug 19 12:10:00 hou000669cs kernel: *pde = > Aug 19 12:10:00 hou000669cs kernel: Oops: > Aug 19 12:10:00 hou000669cs kernel: CPU:0 > Aug 19 12:10:00 hou000669cs kernel: EIP:0010:[flush_old_exec+196/552] > Aug 19 12:10:00 hou000669cs kernel: EFLAGS: 00010246 > Aug 19 12:10:00 hou000669cs kernel: eax: ebx: 9b040
Re: Sound cards & Linux?
Most SB compatibles mean the SB16 'standard'. You need to add the lines soundcore sb to /etc/modules to get it to load at boot. and run "insmod soundcore" and "insmod sb" to get it to run now. On Wed, Aug 22, 2001 at 06:53:35AM -0700, David Frischknecht scribbled... > Hello, > > I just want to express my appreciation for all the help I've gotten from > the members of this list. I'm practically a Linux newbie, so all of the > configuration that's needed to get it up and running is unfamiliar to me. > I'd like to know how I could get my ESS Audiodrive sound card to work > with Linux. I know it's SoundBlaster compatible, but I'm not sure which > SoundBlaster protocol it's compatible with. Could somebody help me out > with this? Thanks a bunch. :-) > > > > David A. Frischknecht > http://www.fishnetonline.freeurl.com > > > > - > Do You Yahoo!? > Make international calls for as low as $0.04/minute with Yahoo! Messenger. > --0-320775342-998488415=:76913 > Content-Type: text/html; charset=us-ascii > > Hello, > I just want to express my appreciation for all the help I've gotten > from the members of this list. I'm practically a Linux newbie, so > all of the configuration that's needed to get it up and running is > unfamiliar to me. I'd like to know how I could get my ESS > Audiodrive sound card to work with Linux. I know it's SoundBlaster > compatible, but I'm not sure which SoundBlaster protocol it's compatible > with. Could somebody help me out with this? Thanks a > bunch. :-)David A. Frischknecht href="http://www.fishnetonline.freeurl.com";>http://www.fishnetonline.freeurl.com > size=1>Do You Yahoo!? > Make http://phonecard.yahoo.com/";>international calls for as > low as $0.04/minute with Yahoo! Messenger. > --0-320775342-998488415=:76913-- > --0-1621698773-998488415=:76913-- > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: SoundBlaster Live not recognized!
To get my SBLive to work I had to compile a special kernel. I didn't see it in 2.2.17, so I got 2.2.19 (2.4.x would work too if you have that). On the soundcard page of the kernel config, look for soundblaster live, it will build an emu10k1.o module for you. If you don't know how to rebuild the kernel, read this: http://www.linuxdoc.org/HOWTO/Kernel-HOWTO.html On Wed, Aug 22, 2001 at 07:07:38PM -0500, Juan Antonio scribbled... > Live Card. I do not know how to configure the kernel and what libraries > or programs I need. If anybody can help me and explain step by step what > I should do in the kernel and what files I have to install I will be > very pleased. > > I use Gnome. > > Thank you very much >
Re: IRQs
What is it? Brand, chipset, bus type, etc? If it's a PCI you shouldn't have to specify anything, due to the inherint magic of the PCI bus. If it's ISA, I wouldn't know, I don't have any ISA slots. On Wed, Aug 22, 2001 at 03:21:14PM -0700, David Frischknecht scribbled... > Hello, > > I was wondering how I could specify my soundcard to > use IRQ 5. I looked at the configuration in Windows, > and that's what it uses. Thanks a bunch. > > > > David A. Frischknecht > http://www.fishnetonline.freeurl.com > > > __ > Do You Yahoo!? > Make international calls for as low as $.04/minute with Yahoo! Messenger > http://phonecard.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: XF86Setup in Woody?
I just started reading this thread, but...I think I can help. Install the package xbase-clients then run xf86config It's the best X config utility I've seen. And make sure xbase-clients, xfree86-common, and xserver-xfree86 are all version 4.0.3-4. The config file will be /etc/X11/XF86Config-4. On Wed, Aug 22, 2001 at 09:12:58PM -0400, [EMAIL PROTECTED] scribbled... > so then i guess those guys keyboards don't have a shift key, huh? : ) > (forget > who kept making the keyboard : program analogies) > > anyway, good! i'm getting somewhere, however i'm getting kind of tired > of > the debian dpkg approach. however, i'm going to make one more attempt to > get > a configuration program running. > here's what's going on: > the X server is installed (e.g. '# X' gets me into the screen) but i'm > having problems with both xf86cfg and XFree86 -configure (according to > the > website you only use one '-' although i've tried 2 as well). xf86cfg > reports > that the XFree86 binary doesn't exist, and XFree86 -configure does > nothing. > As a highly skilled master of the obvious, i've deduced that I need to > install XFree86 w/ the -configure option (or perhaps just symlink to the > binary's actual location). But (although i'm just considering installing > X > using the methods on the XFree86 project's homepage) what debian package > contains xf86cfg\XFree86\files the previously mentioned are dependent > upon? > thanks > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
X Display errors
Whenever I try to run something from an Eterm or xterm I get this error: xmms: can't open display (null) But my display is set to "sabertooth:0.0". (The correct name). I've changed it to "localhost:0.0", "127.0.0.1:0.0", and "192.168.1.2:0.0". None of them work. I tried running "xhost +". The strange thing is I can run them from the enlightenment menu just fine. Below are my versions of everything that I think matters: Thanks, Jason ii enlightenment 0.16.5-4 The Enlightenment Window Manager ii xfree86-common 4.0.3-4X Window System (XFree86) infrastructure ii xserver-xfree8 4.0.3-4the XFree86 X server
mutt and an nfs mounted home directory
I have an nfs mounted home directory where the user and group ids match. I can write in the ~/.mutt directory and even edit my inbox and sentbox on the client, but when I run mutt on the client machine, it tells me that the mailbox is read only. Is there a setting in mutt I can change to make it use the file permissions to decide whether to write or not? Thanks, Jason
Re: Kernel for AMD Thunderbird
I'm running this on an Asus A7V-E and a TBird 1.2GHZ, so I can say this with some authority. Choose the most advanced option you can. On my 2.2.19 kernel I chose PPro/6x86MX, because the Athlon has all the special registers and optimizations of the i686, and then some. Don't, as someone suggested, choose K6, because you'd be limiting yourself. I hear that 2.4 has an Athlon option, but I'm not sure how well it works, I read some bad things about it on this list yesterday. (Look for athlon in yesterday's mail archive). But you can always try it, then go to another kernel if it has problems. On Thu, Aug 23, 2001 at 04:03:48PM +0300, George Karaolides scribbled... > Hi, > > I'm thinking of buying an Asus A7V266 motherboard and using it with an > AMD > Thunderbird CPU, 1.4GHz with a 266MHz FSB as an upgrade for a machine > which is currently Pentium III 800MHz and runs Debian potato, with kernel > 2.2.19. > > Does anyone know which processor type I should select in the kernel > config? My machine is currently running a kernel compiled for PPro/686MX. > In case something else must be chosen, I will have to compile before > changing motherboards, and if I don't get it right first time I'll have to > change motherboards back to re-compile, and then change motherboards > again... :) > > Best regards, > > George Karaolides 8, Costakis Pantelides St., > tel: +35 79 68 08 86 Strovolos, > email: [EMAIL PROTECTED] Nicosia CY 2057, > web: www.karaolides.com Republic of Cyprus > > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
ssh and X forwarding
I recently upgraded my boxes at home to the latest ssh from sid. Before the upgrade, I'd have the DISPLAY variable set to $HOSTNAME:10.0 and be able to run X apps across the connection. My box at work does not have this problem. I've diffed the ssh_config and sshd_config files for the two boxes and don't see anything that might cause this problem. Can anybody tell me where this is set? Thanks, Jason
[jason@whizzird.net: Re: NVidia GeForce2 MX]
I had this problem with my TNT2 at work, I switched to nvidia's proprietary driver and it went away. RMS might be upset, but I have hardware OpenGL acceleration. :) Try that driver if you're adventurous, but don't let the 1.0 version fool you, it's not the most stable. Fortunately, all of my crashes are when closing X or when closing VMWare here at work. On Thu, Aug 23, 2001 at 07:05:51AM -0500, Wayne Sitton scribbled... > I have the same card, run KDE, with no problems. I also choose the nv > option. Actually, if your running XFree86 4.X make sure you choose the > XFree86 server. and make nv the option. > > Wayne > > > On Thursday 23 August 2001 06:24, Heidelinde Meier wrote: > > > > Hello ! > > I got a problem with the graphical representation of my KDE-environment > > while using a GeForce2 MX Graphic card. I configured the screen with > > XF86-Config-4. > > > > The problem is: when I open a netscape browser window and I move it over > > other open windows like console, konqueror and so on there are > > disturbances on the other underlying windows especially at the edge and > > the scripture of the underlying windows. > > I recently observed this problem only with netscape - other applications > > don't make any problems. > > > > Is it a problem of the driver (I used the "nv"-driver when choosing the > > driver for the graphic card in the XF86-Config-file? > > > > Many thanks in advance > > Heide > > > Content-Type: text/x-vcard; charset="us-ascii"; name="hmeier.vcf" > Content-Transfer-Encoding: 7bit > Content-Description: Card for Heidelinde Meier > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] >
Switching to kernel nfs (was: mutt and an nfs mounted home directory)
On Thu, Aug 23, 2001 at 09:17:31AM -0500, Dave Sherohman scribbled... > On Wed, Aug 22, 2001 at 09:36:35PM -0700, Jason Majors wrote: > 1) Use knfsd instead of nfsd on the nfs server. Quick and easy > (although it does require a kernel reconfigure/rebuild unless you > already have nfs server support in your kernel). This is what I did. > I like this option best. How do I get it to run the kernel server instead of the daemon? I have the packages nfs-common, nfs-kernel-server, and nfs-server. I have nfs compiled into my kernel. I have nfs-kernel-server, and nfs-server in /etc/init.d. I also have S19nfs-common, S20nfs-kernel-server, and S25nfs-server in /etc/rc2.d. How do I switch it to use the kernel version? apt-get remove nfs-server? or would removing the S* links in rc2.d do the job? Or something else entirely? Thanks --Jason
Re: Switching to kernel nfs (was: mutt and an nfs mounted home directory)
I have the kernel server up, but now it won't export my directories. I have lines like: /usr/local/oggs 192.168.1.2(ro) 192.168.1.4(ro) 192.168.1.1(ro) /home 192.168.1.2(rw, no_root_squash) 192.168.1.4(rw) in my /etc/exports file. When I (re)start nfs-kernel-server I get: Exporting directories for NFS kernel daemon...exportfs: syntax error in exports file (line 7): bad option list But /etc/exports is only five lines, including all comments. When I remove the no_root_squash option, it says it starts, but I get mount: RPC: Unable to receive; errno = Connection refused on the client and /var/lib/nfs/xtab is empty. What do I have to do to get the kernel server to run? Thanks, Jason On Thu, Aug 23, 2001 at 01:22:51PM -0500, Dave Sherohman scribbled... > On Thu, Aug 23, 2001 at 10:23:31AM -0700, Jason Majors wrote: > > I have the packages nfs-common, nfs-kernel-server, and nfs-server. > > How'd you manage that? nfs-kernel-server and nfs-server conflict. > > > I have nfs compiled into my kernel. > > Assuming you have NFS server support in your kernel, you should be > able to just apt-get install nfs-kernel-server and let it do its > thing. It should be automagic from there. > > Once it's done, you should see all your nfsd processes replaced by > knfsd in ps. > > -- > With the arrest of Dimitry Sklyarov it has become apparent that it is not > safe for non US software engineers to visit the United States. - Alan Cox > "To prevent unauthorized reading..." - Adobe eBook reader license > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: Switching to kernel nfs (was: mutt and an nfs mounted home directory)
On Thu, Aug 23, 2001 at 04:48:14PM -0500, Dave Sherohman scribbled... > Try reinstalling nfs-kernel-server, portmapper, and all of their > dependencies. I was getting the same sort of problems a little while > back with both nfs and nis and that's what solved them. Apparently, > there was some kind of subtle version dependency that the package > dependencies didn't catch and it would only work if the relevant > parts were either all potato or all woody. Didn't work. :( Any other ideas out there?
Re: Switching to kernel nfs (was: mutt and an nfs mounted home directory)
And the winner of this year's Dumbass award is...ME. I was testing the mountability (is that a word?) of the nfs served directories on my firewall, because I turn the workstation off when I'm not using it (like now when I'm at "work"). The firewall doesn't have nfs-common installed. I tested it mounting under /tmp on the fileserver, and could mount. Thanks to all for the info about knfsd and the file locks especially Dave Sherohman. Incidentally, someone told me that ps would list knfsd, but I still see nfsd.
[jason@whizzird.net: Re: Network configuration]
You don't need an rc.local script. If you look in /etc/rc2.d/ you'll see lots of S scripts. These are the scripts that get run when you start the system. The 'S' is for "Start" (I guess), and there are "K" scripts for "Kill" in other related directories. The number is the order in which it will run 00 is first, 99 is last. These files are symbolic links to files in the /etc/init.d/ directory. There are two files that would be in your /etc/init.d if you installed the networking and apache packages (which you should, the package management is debian's best feature): networking and apache. If they're not there, make up your own and symlink them to /etc/rc2.d. Or if you install the packages ifupdown, net-tools, and netbase (which you might have), you'll have the networking script built for you, and you just add your settings to the /etc/network/interfaces file. If you do build your own, it's best to put one set of related startup commands in one file, so you can bring that daemon up or down, without interfering with others. On Thu, Aug 23, 2001 at 05:19:19PM -0700, bob parker scribbled... > I'm still quite new to this excellent os (Potato r3) > and am building a web server. > I have made a script - rc.local to configure my > network adapter using ifconfig and route. > At the moment I'm invoking this by hand after bootup. > My question is where do I install this script so that > it's automatically run on boot up? > > I'm also running Apache by hand, having built it from > a tarball off a magazine CD. That's what the boss > wanted!. Should I start that from inside the rc.local > script? > > Thanks > Bob Parker
Re: OT: Looking for 10/100 ISA NIC's for Linux project
I'm guessing it should be PCI...and I hope so, because I've never seen an ISA card that can do 100Mbps, and don't think the ISA bus could saturate that card. It's not that fast. If you're looking for really cheap, and not worried if your achieved thruput is only 80 or 90Mbps, just go to your local Mom-n-Pop computer store and buy their $20 10/100 card, most use the rtl8139 or tulip modules, which I've found to be very reliable and fast. My 3c905B is only a tad faster. The place where you want to make sure you get the best is your switch (not a hub!). On Thu, Aug 23, 2001 at 08:45:31PM -0500, Rich Puhek scribbled... > Gack! $70? That seems a bit pricy for an ISA card. > > 10/100 cards in an ISA slot? That's a bit odd... > > On the off chance you meant to type PCI, not ISA, I'd use the 3c905 card > from 3com. They're supported, reliable, and they're $45/each if you buy > them in a 25-pack from Datacomm. If it's a school, you can probably get > an education discount from a reseller (not sure if a charter school will > qualify for 3com's GEP program, or whatever it's called now). > > Search around out there, and you can probably find someone selling a lot > of 100 used cards for much less per card. Or, if you really want ISA and > 10 meg, go with the trusty old 3c509. Again, you should be able to find > plenty of used ones there for well under $70 each. > > > --Rich > > John Purser wrote: > > > > Hello, > > > > I'm looking for a source for nearly 100 10/100 ISA Ethernet cards for a > > linux network I'm helping with at a local Charter School. I've found some > > for around $70 but was hoping to cut that price in half if I could. Anybody > > got some leads or recommend a particular card to buy and/or stay away from? > > > > Thanks, > > > > John Purser > > > > _ > > Rich Puhek > ETN Systems Inc. > _ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED]
DISPLAY and multiple ssh connections
When I have multiple ssh connections to a server, it increments the offset for the DISPLAY by one for each connection. When connecting through my firewall using: /usr/sbin/ipmasqadm portfw -a -P tcp -L $IP_REAL 22 -R $MAGNETO 22 the second and following connections cannot connect to the display. Anybody know why? Part Two: This wouldn't bother me too much, but the app that complains is vim. Not the gui version, the console version. I have version 5.8.007-4 installed of vim-rt and vim-gtk. I can't install just vim, because it conflicts with vim-gtk, which for the most part provides the console version. Is this a vim bug, or some special feature I'm unaware of? Thanks, Jason
Re: DISPLAY and multiple ssh connections
> > This wouldn't bother me too much, but the app that complains is vim. > > Not the gui version, the console version. I have version 5.8.007-4 instal > led > > of vim-rt and vim-gtk. I can't install just vim, because it conflicts with > > vim-gtk, which for the most part provides the console version. > > Is this a vim bug, or some special feature I'm unaware of? > > No... > > You can choose either console vim ( vim package ) > or _both_ console and gtk (vim-gtk package) This is done for people who > do > n't > want to install xlibraries just to use vim. > But why does the console call to vim check the DISPLAY variable? If I unset it, vim runs just fine.
Re: Unwanted, huge messages
limit option. _Read_ _the_ _man_ _page_, search for limit. On Fri, Aug 24, 2001 at 06:04:49PM +, Vittorio scribbled... > I use mutt with fetchmail to get loads of messages from the many lists > I'm subscribed to. > > Now sometimes it happens that very long (say, exceeding 1,000,000 > octets), unwanted messages slow down the download of 'wanted' messages. > > My question is: > > When using fetchmail how can I delete messages greater than a certain > size (say 100,000 octets) directly on the POP3 server avoiding that > slowdown? > > Ciao > Vittorio > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] >
Re: mutt quickies
On Fri, Aug 24, 2001 at 02:19:12PM -0300, Miguel Griffa scribbled... > 1) How do I tell mutt to not go to /var/spool/mail/me and to start > opening ~/Mail/mbox in your ~/.muttrc (or ~/.mutt/muttrc ...my choice) add the line: set spoolfile=~/Mail/mbox > > 2) How can I change from one mbx to another? hit "c", then type the name. There are special aliases for inbox, mbox (saved), and record (sent box): "!", ">", and "<" respectively. > > Thanks in advance! > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: Running remote X apps
Check your /etc/X11/xinit/xserverrc file. If it has a line that contains "-nolisten tcp", remove that chunk. On Fri, Aug 24, 2001 at 11:14:44AM -0700, Duncan Watson scribbled... > I am having problems running apps on other machines that need to use my > display. I suspect that X is not configured to listen to the right kind > of sockets or something. > > Here is the scenerio, my machine name is pandora, ip 10.1.2.1. I telnet > into bravado (another linux machine) and check my DISPLAY. I set it via: > setenv DISPLAY 10.1.2.1:0.0 > > I then run "xterm &" on bravado. I get an error message > "/usr/X11R6/bin/xterm Xt error: Can't open display: 10.1.2.1:0.0" > > I have tried "xhost +bravado", no luck. I also tried "xhost +" as well on > my local machine. No luck. I used xauth as well. > on pandora: xauth extract file $DISPLAY > on bravado: xauth merge file > > I am obviously missing something basic. Can you help me? > > TIA, > /Duncan > > Oh BTW: the solution needs to work for generic unix boxen. I am working > with a number of solaris and sco boxen that I don't have admin control on. > The linux box above is for testing. My local box is of course Debian > linux. > -- > Duncan Watson [EMAIL PROTECTED] >~~~ climbing in the Pacific NW ~~~ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: DISPLAY and multiple ssh connections
> Is there a command line switch to tell vim to not try and use the gtk > portions? Emacs does a similar thing (tries to use X) to me if I forget > the -nw switch on it. I'm guessing it's a default to try and be the > most resource hungry editor it can be ;>. No. The switch is to go gui. And I'm not using it. When vim does come up, it comes up console mode.
Re: Where's Woody?
There are many docs, including a few install walkthroughs at http://www.debian.org/doc/ and http://www.debian.org/releases/stable/#new-inst On Fri, Aug 24, 2001 at 12:34:12PM -0600, John Purser scribbled... > I was trying to download the Woody CD images and can't find them. I saw > on > a post a few minutes ago that there might not be such a thing and that > I'll > have to upgrade Potato to get there from here. Good enough but would > someone please point me to a decent "How To" to get me started? I'll > write > back when I've hosed it completely and need further help. > > Thanks, > > John Purser > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: vmware: can't ping host
I run VMWare here at work on Debian. I set up my networking as Bridged. I don't remember exactly, but I think Host Only won't let you out to the network. Try bridged mode and see if you can connect out from your VM. And make sure you have win98's networking installed correctly (but you probably do). If you're still having trouble, tell me and I'll kill my VM-NT session and look at the setting in detail. (Can't see them while it's running). On Fri, Aug 24, 2001 at 04:12:15PM -0400, Titus Barik scribbled... > Okay, I probably screwed something up again, so if you guys could help > out it would be great. > > So I installed VMware today using the .tar.gz file available from their > website, extracted, ran ./vmware-install and installed to /usr/local. I > selected all the defaults during the install otherwise except for the > installation directory. All good so far. Installed Windows 98 SE on the > VMware VM, and it gets an IP of 172.16.66.128. All dandy. My host > machine's IP is 128.61.40.17, but I can't ping this from the VM > Windows. However, I can ping the virtual machine from the host. What did > I break? > > My ipconfig states: > > eth0 Link encap:Ethernet HWaddr 00:80:C8:FA:F0:CA > inet addr:128.61.40.17 Bcast:128.61.40.255 > Mask:255.255.255.0 > UP BROADCAST RUNNING MTU:1500 Metric:1 > RX packets:35665 errors:0 dropped:0 overruns:0 frame:0 > TX packets:12102 errors:272 dropped:0 overruns:0 carrier:272 > collisions:10621 txqueuelen:100 > RX bytes:6615530 (6.3 Mb) TX bytes:1352162 (1.2 Mb) > ~Interrupt:5 Base address:0x9000 > > loLink encap:Local Loopback > inet addr:127.0.0.1 Mask:255.0.0.0 > UP LOOPBACK RUNNING MTU:16436 Metric:1 > RX packets:95 errors:0 dropped:0 overruns:0 frame:0 > TX packets:95 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:0 > RX bytes:13625 (13.3 Kb) TX bytes:13625 (13.3 Kb) > > vmnet1Link encap:Ethernet HWaddr 00:50:56:01:00:00 > inet addr:172.16.66.1 Bcast:172.16.66.255 Mask:255.255.255.0 > UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 > RX packets:41 errors:0 dropped:0 overruns:0 frame:0 > TX packets:63 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:100 > RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) > > I am using host-only for networking. > > Debian, for great justice! > > Thanks in advance. > > Titus Barik ([EMAIL PROTECTED]) > AIM: TBarik ICQ: 1604453 > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
Re: using cd is shell script
On Sun, Aug 26, 2001 at 05:26:36PM -0700, bob parker scribbled... > Hi all, > being a lazy typist i have writen a little script that > goes like this: > > #! /bin/bash > # go-xxx where xxx is the last dir in along chain > > cd /some long dir chain/xxx > > > My question is, how can i make the change persist > after the script is done The why of it: When you execute a script it inherits the environment of the shell, and runs. It does not affect the environment of the shell. You can change this by using "." or 'source'. If you typed: $ . go-bin (assuming go-bin contains "cd /usr/local/bin"), your directory would change. You can combine this with an alias. Name your script "chdir-bin", then in your .bashrc put: alias go-bin=". $HOME/scripts/chdir-bin" # Or wherever you keep it. Then you just type "go-bin" at the shell, and bingo! You can also have these scripts accept parameters to give you greater flexibility.
Samba Serving
I'm trying to share directories through samba. I have the workgroup and server set correctly, because I can see the server in the network neighborhood on the win98 client. But it will not allow access. I used to change the windoze box to use plain text passwords...but since linuxtopia no longer exists, I can't get to the learnto that said how to do that. I'm going from the smb.conf in an install of 2.2.1a-6, with these modifications: [homes] comment = Home Directories browseable = yes read only = no create mask = 0755 directory mask = 0755 [oggs] comment = oggs on magneto writable = no locking = no path = /usr/local/oggs public = yes Does anyone have any idea how I can get these shared? The first one isn't much of a big deal to me, but sharing the oggs is. Thanks, Jason
Moving /var
I currently have /var on hdc, but want to move it to sda. I've tried mounting the new partition as var2, copying the files, changing fstab, then rebooting, but lots of programs complain. I'd guess it has something to do with the state of var at the time of the copy, vs at the time of shutdown/boot. That method works well for home, usr, etc. Is there a good way to do this for var? other than reinstalling? Thanks. Jason
ipmasqadm portfw and apache
I'd like to forward all requests on port 80 thru my firewall, however, I use VirtualHosts under apache. Is there a way to forward the port with the desired host name? Or can I do it based on the hostname desired? (eg forward a request to www.foo.com to port 81 and a request to www.bar.com to 82). Thanks, Jason
Re: ipmasqadm portfw and apache
On Wed, Aug 29, 2001 at 11:51:48AM -0700, Tim Moss scribbled... > Jason Majors wrote: > >I'd like to forward all requests on port 80 thru my firewall, however, I > >use > >VirtualHosts under apache. > >Is there a way to forward the port with the desired host name? > >Or can I do it based on the hostname desired? (eg forward a request to > >www.foo.com to port 81 and a request to www.bar.com to 82). > > > >Thanks, > >Jason > > > > > > Forwarding the port will not change the actual HTTP request which is > what the VirtualHosts depends on. I think it should be pretty > transparent (though I've never tried it). Are you having a problem doing > this or are you just asking in preparation of setting it up? > I already did it. When I forwarded to the internal box, all requests were served by the default html/ directory, not the virtual host matching the url I typed.
Re: ipmasqadm portfw and apache
Jason Majors wrote: >I'd like to forward all requests on port 80 thru my firewall, however, I >use >VirtualHosts under apache. >Is there a way to forward the port with the desired host name? >Or can I do it based on the hostname desired? (eg forward a request to >www.foo.com to port 81 and a request to www.bar.com to 82). > >Thanks, >Jason > I think I figured it out...it's not the port issue. When I add a second "NameVirtualHost foo" and "", I get the warning from apache "[warn] NameVirtualHost tmr.whizzird.net:80 has no VirtualHosts", so I'd guess that there's something in the order of the httpd.conf. When this happens the special hosts entry I created goes back to the default page for the server, but when there's only one VirtualHost, that hosts entry goes to the VirtualHost. I get the same warnings on the firewall, but virtual hosting works fine. Does anybody have experience with multiple VirtualHost entries? Or know the correct format? I'm doing: NameVirtualHost domainone NameVirtualHost domaintwo NameVirtualHost domainthree ... ... ... Thanks, Jason
Re: ipmasqadm portfw and apache
On Wed, Aug 29, 2001 at 01:39:21PM -0700, Jason Majors scribbled... > Does anybody have experience with multiple VirtualHost entries? Or know > the > correct format? > I'm doing: > NameVirtualHost domainone > NameVirtualHost domaintwo > NameVirtualHost domainthree > > > ... > > > > ... > > > > ... > > I got it working. I feel kinda dumb...for those who'd like to know how to do it: NameVirtualHost 1.2.3.4 # MUST BE AN IP! (my mistake). # I had to put the specific one before a generic ... # www to get the specific to come up. ... ...
Creating mutt mailbox aliases
How can I create a mailbox alias for mutt? To get to my debian-user mailbox I have to type "c=de" and I'm too lazy for that. (But not too lazy to look for the answer...I just can't find it :). thanks, Jason
Mutt is skipping some lines of the message
Sometimes I get a message and notice that mutt has decided that the first few lines of the message are part of the header. It doesn't happen every time though. Is any one else experiencing this? I'm using 1.3.20-1 (the latest from sid). From: Date: In-Reply-To: Message-ID: Lines: User-Agent: MIME-Version: Content-Type: Resent-Message-ID: Resent-From: X-Mailing-List: X-Loop: Precedence: Resent-Sender: Resent-Bcc: Resent-Date: No problems here. If you already have a woody system, you don't need apt-get dist-upgrade. Just apt-get upgrade.
Re: Sound Card & Gnome
On Thu, Aug 30, 2001 at 01:11:17AM +0100, Joao Pissarro scribbled... > Thnaks for replying. > > Here are the installed modules, and esound is intalled. > > jpissarro:/home/ct1dbh# lsmod > Module Size Used by > bttv 37116 1 > tuner 2088 1 > i2c 3352 2 [bttv tuner] > videodev2512 2 (autoclean) [bttv] > vmnet 16512 3 > vmppuser5920 0 (unused) > vmmon 18176 0 (unused) > parport_probe 3348 0 (autoclean) > parport_pc 7268 1 (autoclean) > lp 4756 0 (autoclean) (unused) > parport 6836 1 (autoclean) [vmppuser parport_probe > parport_pc lp] > yam28760 0 (unused) > ax25 32668 0 [yam] > usbcore41804 0 (unused) > 3c59x 18480 1 > sound 56364 0 (unused) > soundlow 368 0 [sound] > serial 19640 0 > es1371 26544 1 > soundcore 2440 7 [sound es1371] > vfat9408 0 (unused) > smbfs 24880 0 (unused) > nls_cp860 3624 0 (unused) > nfs43820 0 (unused) > lockd 41720 0 [nfs] > sunrpc 55452 0 [nfs lockd] > unix 11336 113 (autoclean) > > Here are the error when the esound is run. Kernel is the 2.2.18pre21 > (the one that comes with the distribution). > > jpissarro:/home/ct1dbh# esd > audio_alsa: no cards found!Audio device open for 44.1Khz, stereo, 16bit > failed > Trying 44.1Khz, 8bit stereo. > audio_alsa: no cards found!Audio device open for 44.1Khz, stereo, 8bit > failed > Trying 22.05Khz, 8bit stereo. > audio_alsa: no cards found!Audio device open for 22.05Khz, stereo, 8bit > failed > Trying 44.1Khz, 16bit mono. > audio_alsa: no cards found!Audio device open for 44.1Khz, mono, 8bit > failed > Trying 22.05Khz, 8bit mono. > audio_alsa: no cards found!Audio device open for 22.05Khz, mono, 8bit > failed > Trying 11.025Khz, 8bit stereo. > audio_alsa: no cards found!Audio device open for 11.025Khz, stereo, 8bit > failed > Trying 11.025Khz, 8bit mono. > audio_alsa: no cards found!Audio device open for 11.025Khz, mono, 8bit > failed > Trying 8.192Khz, 8bit mono. > audio_alsa: no cards found!Audio device open for 8.192Khz, mono, 8bit > failed > Trying 8Khz, 8bit mono. > audio_alsa: no cards found!Sound device inadequate for Esound. Fatal. I'd guess something's wrong in the alsa library. I'd suggest replying to the list, not to individuals, so everyone can see your problem. There are people who know a lot more about it than I do. When you respond list the versions of all your sound stuff. "dpkg -l|grep esound; dpkg -l|grep alsa" Incidentally...can you play sound or load esound as root? If so it's a device permission issue.
Re: Telnet/FTP to local machines [branchoff: Re: rlogin delays]
On Wed, Aug 29, 2001 at 08:25:41PM -0400, [EMAIL PROTECTED] scribbled... > No firewall, I can ping them. How do I start the telnet and FTP daemons? > > -- Deven > > Do you have them installed? FTP is wu-ftpd. Telnet is telnetd. There's also a telnetd-ssl(?), that is more secure. Be very careful with them...they're not secure communication. SSH is a better choice (don't know if its an option tho).
procmail conditions
Is there a way to OR procmail conditions? I have lots of lines like so: :0 * (^From:.*Reel\.com) /dev/null :0 * (^From:.*sonypictures\.com) /dev/null and I'd like to make them more like this: :0 * (^From:.*Reel\.com) OR * (^From:.*sonypictures\.com) /dev/null I tried to DeMorganize them like: * ! { * ! (^From:.*Reel\.com) * ! (^From:.*sonypictures\.com) } But that doesn't work. And ideas? Thanks, Jason
Re: procmail conditions
On Wed, Aug 29, 2001 at 09:03:48PM -0700, Craig Dickson scribbled... > Jason Majors wrote: > > > Is there a way to OR procmail conditions? > > Yes, like this: > > * ^(To|Cc|X-Apparently-To|From):.*@(foo|bar)\.com > $MAILDIR/foo/ This is ORing the contents of a condition. Trying to put the 20+ /dev/nulls I have into this format would be a headache...and would introduce errors if the Subject I don't want for one condition matches the From I don't want in another.
Re: nVidia GeForce Ti
> I can now get a decent resolution but X is acting very weird, the system > locks up every now and then for 5-10 seconds (the mouse cursor > dissapears when that happens) and then returns to normal. > > It's obviously not happy. :o) I've had similar problems on a TNT2, GeForce2 MX, and GeForce3 when using nVidia's drivers. When the mouse disappears you can switch to a console (Ctrl-Alt-F2) then back (Alt-F7) and the mouse comes back. This is especially useful if the cursor stops responding comletely. I think we're just stuck until nVidia writes a good driver or releases the code so the XFree86 guys can fix it.
Re: nVidia GeForce Ti
> >>I can now get a decent resolution but X is acting very weird, the system > >>locks up every now and then for 5-10 seconds (the mouse cursor > >>dissapears when that happens) and then returns to normal. > >> > >>It's obviously not happy. :o) > >> > >I've had similar problems on a TNT2, GeForce2 MX, and GeForce3 when using > >nVidia's drivers. When the mouse disappears you can switch to a console > >(Ctrl-Alt-F2) then back (Alt-F7) and the mouse comes back. This is > >especially useful if the cursor stops responding comletely. > > > >I think we're just stuck until nVidia writes a good driver or releases the > >code so the XFree86 guys can fix it. > > > Did you manage to use the 'nv' driver instead? I couldn't get the > GeForce3 to work with that. > Not with a GeForce3. I think they made enough architectural changes with the 3 that the drivers aren't compatible. I know the nVidia drivers I had at the time for my 2 weren't.