RE: LILO
Chris, to see your options at the boot prompt, just press the tab key. that will give you a list of available partitions lilo is configured to boot from. if you want to change lilo options, boot into linux, by typing in linux at the boot prompt, and edit your /etc/lilo.conf file. the default=win option is what you want to change if you want the machine to boot into linux by default. If you make a change to the file, you must run /sbin/lilo to write the changes out to your mbr. hope this helps out!! jason > > I could not ask this one more ignorantly :-) > > How do I make LILO work, or what prompt would I see if it were? When I > installed Linux, I set it to boot from hard drive (making win defaul, > however) and also made a boot floppy. I'm stuck using the boot floppy > because I don't know how to choose Linux. What's the "boot:" > prompt about? > If I don't put the disk in, it goes straight to windows without > any second > thoughts, so I'm assuming I do not have LILO set up. Where would > it be, and > how would I configure it to ask me from the start (without a boot floppy) > which OS I want to load? Much thanks, bye. > > -Chris > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
apt-get upgrade size mismatch question
hello all, i'm having a small problem with apt-get and was wondering if anyone can help out. i'm running woody by the way. everyday i run apt-get update and apt-get upgrade, but i always get these errors when performing the upgrade. Failed to fetch ftp://ftp.twoguys.org/debian/dists/woody/main/binary-i386/admin/devfsd_1.3.1 0-1.deb Size mismatch Failed to fetch ftp://ftp.twoguys.org/debian/dists/woody/main/binary-i386/libs/libgmp2_2.0.2 -8.deb Size mismatch Failed to fetch i usually have to go to /var/cache/apt... to manually install the debs, which is a real pain. anyone know why it fails to install because of a size mismatch?? a workaround for this would be nice. thanks!! Jason
RE: How do I start | stop a daemon under debian
adrian, daemons are located in /etc/init.d to start lpd for example # /etc/init.d/lpd start to stop # /etc/init.d/lpd stop to control which runlevel a daemon is stopped/started automatically, use the command update-rc.d. as an example: # update-rc.d -f lpd add hope this helps you out! Jason > > How do I start | stop a daemon under debian ? I have Debian 2.2 Potato. I > understand that I have to use "ln -s" in order to start a daemon automatic > after reboot. > > Is it the same for stopping forever a daemon that was set up to > start after > reboot ? > > Adrian Nims >
RE: /etc/rcx.d... how should be setup?
Use the command update-rc.d, you can easily manage the rc directories with it jason > > > Hi all, > > I would like to ask a question that has come to my mind... > > How should be the /etc/rcx.d directories managed ? (replace x with a > number) > I currently have runlevel 2 with gdm set and 3 without it. But is it > there any program in debian that could manage this without breaking > the package system? > I'm afraid that if I uninstall gdm, it won't find the K01gdm I've put > in /etc/rc3.d to stop gdm. > > Thanks >
RE: supported hardware
If your hardware is listed somewhere on this page, debian will work http://www.linuxdoc.org/HOWTO/Hardware-HOWTO.html Jason > > I am thinking of installing Debian on my PC. > Could somebody send me a list of supported hardware? > Thanks, > Dimitar > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Error compiling kernel
Hi, You need to install binutils, as you are missing the as86 assembler. Also, i would run make bzImage, instead of make zImage, compression on the kernel will be better. Jason -Original Message- From: Gutierrez Family [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 06, 2000 11:46 PM To: debian-user@lists.debian.org Subject: Error compiling kernel Hi everyone, I tried to re-compile the kernel (to include generic SCSI support for my scanner) and ran into problems. Here's what I did - as far as I can remember (following the instructions in the README file found in the kernel source directory): 1) logged in as root 1) ran the xconfig program and selected my options 2) ran 'make dep' (from within /usr/src/kernel-source-2.2.17/) 2) ran 'make zImage' ( also from /usr/src/kernel-source-2.2.17/) and it compiled for quite a while until I got the following message: "nm vmlinux | grep -v '\(compiled\)\|\(\.o$\)\|\( [aU] \)\|\(\.\.ng$\)\|\(LASH[RL]DI\)' | sort > System.map make[1]: Entering directory `/usr/src/kernel-source-2.2.17/arch/i386/boot' as86 -0 -a -o bootsect.o bootsect.s make[1]: as86: Command not found make[1]: *** [bootsect.o] Error 127 make[1]: Leaving directory `/usr/src/kernel-source-2.2.17/arch/i386/boot' make: *** [zImage] Error 2 navi:/usr/src/linux# " Do you know how I can get the kernel compiled fully? Thanks in advance.
RE: Error compiling kernel
oops, my bad. you need the bin86 package. sorry about that. jason > -Original Message- > From: Jason Holland [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 07, 2000 6:18 AM > To: Gutierrez Family; debian-user@lists.debian.org > Subject: RE: Error compiling kernel > > > Hi, > You need to install binutils, as you are missing the as86 assembler. > Also, i would run make bzImage, instead of make zImage, compression on the > kernel will be better. > > Jason > > -Original Message- > From: Gutierrez Family [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 06, 2000 11:46 PM > To: debian-user@lists.debian.org > Subject: Error compiling kernel > > > Hi everyone, > > I tried to re-compile the kernel (to include generic SCSI support for my > scanner) and ran into problems. Here's what I did - as far as I can > remember (following the instructions in the README file found in > the kernel > source directory): > > 1) logged in as root > 1) ran the xconfig program and selected my options > 2) ran 'make dep' (from within /usr/src/kernel-source-2.2.17/) > 2) ran 'make zImage' ( also from /usr/src/kernel-source-2.2.17/) and it > compiled for quite a while until I got the following message: > > "nm vmlinux | grep -v '\(compiled\)\|\(\.o$\)\|\( [aU] > \)\|\(\.\.ng$\)\|\(LASH[RL]DI\)' | sort > System.map > make[1]: Entering directory `/usr/src/kernel-source-2.2.17/arch/i386/boot' > as86 -0 -a -o bootsect.o bootsect.s > make[1]: as86: Command not found > make[1]: *** [bootsect.o] Error 127 > make[1]: Leaving directory `/usr/src/kernel-source-2.2.17/arch/i386/boot' > make: *** [zImage] Error 2 > navi:/usr/src/linux# " > > Do you know how I can get the kernel compiled fully? > > Thanks in advance. > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: UNSISCRIBE
Not that this was the correct address to send this to, but AT LEAST you could spell it right! please see the following link on the CORRECT way to do this! http://www.debian.org/MailingLists/subscribe Jason > -Original Message- > From: James Grant [mailto:[EMAIL PROTECTED] > Sent: Friday, September 08, 2000 8:36 AM > To: debian-user@lists.debian.org > Subject: UNSISCRIBE > > > UNSISCRIBE > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Stuck with NT and Lilo
FYI, there is a little program called Bootpart, that will allow you to add linux to the nt boot manager menu. having done that, you would no longer need the floppy. floppies are slow, and die often! you will, of course, need lilo installed, but pointing to the root partition of your linux installation, and NOT the mbr. :) http://www.winimage.com/bootpart.htm jason > > lilo.conf is where you describe what bootable partitions are available. > > To enter information about your cdrom, etc., you need to edit the file > /etc/fstab. See man fstab and man MAKEDEV for more information. > > Cheers, > Jason. > > --On Wednesday, September 13, 2000 14:28 +0100 Ziad Afra > <[EMAIL PROTECTED]> wrote: > > > > > > > Hi all, > > > > I am a bit stuck here with my new install of debian 2.2. The > problem is I have > > installed Windows nt on to an ntfs drive and later on I wanted > to install > > debian, > > thing is as you all know I need to have had a small fat16 > partion in order to > > run lilo from. I didnt have tha7t at the time due to > circumstances, so now I > > run Debian > > off a floppy boot disk which I created on first installtion. > Now I am stuck, I > > need to configure my cdroms` and other hard disks but the lilo.conf file > > doesnt exist now does it! > > So I am stuck > > > > My boot floppy has several files including the kernel > > > > ldlinux.sys > > linux > > message.txt > > syslinux.cfg > > > > "DISPLAY message.txt > > TIMEOUT 40 > > PROMPT 1 > > DEFAULT linux > > APPEND root=/dev/hda6 ro " > > > > ^^ is on my syslinux.cfg file > > > > > > Ok now what I need to know is how can i reconfigure my current > setup so as I > > can get my cdrom to work as a cdr(its eide so i have to make it > in to a scsi > > device!), but in doing this > > I need to edit the /etc/lilo.conf file, which I dont have (due > to installing > > the boot record on a floppy). > > > > 1: how do i setup my boot floopy disk with the new scsi > supported kernel ? > > 2: Can i export the boot device information in to a file e.g. > boot.bin and > > dump that on to my ntfs drive or the linux partion and inform > boot.ini about > > it? > > > > a`la ---> > > > > [boot loader] > > timeout=30 > > default=multi(0)disk(0)rdisk(0)partition(1)\WINNT > > [operating systems] > > multi(0)disk(0)rdisk(0)partition(1)\WINNT="Windows NT > Workstation Version > > 4.00" multi(0)disk(0)rdisk(0)partition(1)\WINNT="Windows NT Workstation > > Version 4.00 [VGA mode]" /basevideo /sos > > multi(0)disk(0)rdisk(0)partition(1)\boot.bin="linux debian 2.2" > choice 1? > > multi(0)disk(0)rdisk(0)partition(3)\="Linux Debian 2.2" choice 2? > > > > > > I am stuck and I cant rebuild my machine as NT is important for > my job (yuck!) > > > > > > cheers all! > > > > > > zed > > > > > > > > > > > > > > > > -- > > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < > > /dev/null > > > > > > > > > > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
apt-get size mismatch with woody
hey all, ever since i upgraded to woody, i've been getting a size mismatch with apt-get. Get:2 ftp://ftp.us.debian.org woody/main tetex-lib 1.0.7+2807-2 [33.4kB] Failed to fetch ftp://ftp.us.debian.org/debian/dists/woody/main/binary-i386/tex/tetex-bin_1. 0.7+2807-2.deb Size mismatch E: Unable to fetch some archives, maybe try with --fix-missing? [EMAIL PROTECTED]:~# i've tried running apt-get with --fix-missing, but it doesn't help. anyone have any ideas or suggestions on how to fix this? thanks! jason
RE: apt-get size mismatch with woody
Yep, usually running apt-get update twice fixes it for me also. A few times i had to manually install all the updates. Yuk! :) Thanks for the replies! Jason > > Jason Holland wrote: > > > > hey all, > > ever since i upgraded to woody, i've been getting a size mismatch with > > apt-get. > > > > Get:2 ftp://ftp.us.debian.org woody/main tetex-lib > 1.0.7+2807-2 [33.4kB] > > Failed to fetch > > > ftp://ftp.us.debian.org/debian/dists/woody/main/binary-i386/tex/te > tex-bin_1. > > 0.7+2807-2.deb > > Size mismatch > > E: Unable to fetch some archives, maybe try with --fix-missing? > > [EMAIL PROTECTED]:~# > > > > i've tried running apt-get with --fix-missing, but it doesn't > help. anyone > > have any ideas or suggestions on how to fix this? thanks! > > I get this every so often too. I just rerun apt-get update. What seems > to happen is that the last byte of the packages isn't being downloaded > for some reason. > Rerunning apt-get update grabs this final byte and everything works > perfectly after this. I always put it down to the fact that we have to > run through a webcache here (which quite often doesn't work as it > should), but it could be down to the debian servers/mirrors or apt > *shrug*. I've never looked into it as rerunning fixes it. > > Hope this helps, > > Gareth > -- > Gareth Bowker | [EMAIL PROTECTED] > PhD Research Student | http://users.aber.ac.uk/tgb96/ > Space Robotics Team | Office: (01970) 622403 > University of Wales, Aberystwyth | Mobile: (07971) 219986 >
RE: apt-get size mismatch with woody
Is there anyway to bypass the size check? I didn't see anything in the man page. Just curious.. Jason > > Gareth Bowker wrote: > > > > > I get this every so often too. I just rerun apt-get update. What seems > > to happen is that the last byte of the packages isn't being downloaded > > for some reason. > > Oops, I actually meant apt-get upgrade, not update. It's normally > grabbing the lists that causes that problem for me, although the cause > is always the same (missing final byte) > > Gareth > -- > Gareth Bowker | [EMAIL PROTECTED] > PhD Research Student | http://users.aber.ac.uk/tgb96/ > Space Robotics Team | Office: (01970) 622403 > University of Wales, Aberystwyth | Mobile: (07971) 219986 >
RE: apt-get size mismatch with woody
yeah, that would be important. looks like I'm gonna be looking at some source code today. and to think my day started out boring. thanks! jason > > > > Is there anyway to bypass the size check? I didn't see > anything in the man > > page. Just curious.. > > Having never looked into the details of how apt works (well, I did once > but I've since forgotten) I'd have thought that the final byte is > probably quite important - after all, it may not decompress > properly/work at all without it, so telling it not to perform the size > check wouldn't achieve anything. You'd probably just end up with broken > packages... > >
RE: SB 1024 Live not working, *sigh*!
have you tried the creative opensource site??? http://opensource.creative.com/ You will find the latest daily source snapshots for the SB Live card. I managed to get it working at home. Jason > > Hello fellow coneheads. > > I have a soundblaster 1024 Live, and I cant seem to get it > working. I tried > Alsa, but no support was given (I have Potato 2.2, kernel > 2.2.14), so I went > to www.alsa.org downloaded the latest alsa drivers and programs, > recompiled > tried to install and I get a module dependency error and nothing happens. > No further instructions on how to install (include modules, ...?) > are given. > > What have I done wrong?. > What is oss, esound, esd? are these alternatives to alsa or other > complements to go with it? > > Ultimatley What do I need to get my sb working?, kernel modules? (would a > kernel recompile be enough?) or do I need alsa, or something alike. if so, > what?, and combined (or excluding) what? > > Thanks for your time, and happy birthday to anyone who it there birthday!. > > Bye, Mark. > > Mark Sanchez > [EMAIL PROTECTED], [EMAIL PROTECTED] > > Unable to mount root file system, Kernel Picnic, try again later (after > lunch maybe;) > > > __ > Do You Yahoo!? > Talk to your friends online with Yahoo! Messenger. > http://im.yahoo.com > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: ssh1<->ssh2
Better yet, install openssh. it has both sshv1 and sshv2 support. http://www.openssh.com Jason > > In potato I would like to have ssh2 with ssh1 compatibility. I > installed ssh-nonfree for ssh1, also installed ssh2, and set in > /etc/ssh2_config the option Ssh1AgentCompatibility to > "traditional".Both daemons were fired up by the installer, and > they are now running simultaneously. Is this right? > > The situation now is that two potato PC-s having both ssh1 and 2 > refuse to link up by ssh2, the error msg being "Incorrect protocol > version ...". However, they accept ssh1 connection from each > other. If anyone has an idea how to revive ssh2, please let me > know. > > Geza Gyorgyi > Eotvos University, Budapest, Pf. 32, 1518 HUNGARY > [EMAIL PROTECTED] > > > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Viper V550
According to http://www.xfree86.org/cardlist.html its the SVGA server. Jason >Debs, > >Can anybody help me to find the xserver for the Diamond Viper V550? > >thx Ton
RE: Problems Installing PHP 4.0
Hey, PHP needs the apache source dir to properly compile. Your php configure line should look more like this $./configure --with-apache=../apache_1.3.12 --with-interbase --with-apxs $ make $ make install You then must tell apache to use the php4 module $ cd ../apache_1.3.12 $ ./configure --activate-module=src/modules/php4/libphp4.a You neglected to mention if you are using a package of apache, or if you have the source available. So i assumed you have the source dir somewhere. Hope this helps you out. Jason > > Hi > > I'm triying to install in my Debian system PHP4 with Apache and Interbase > support. > > I follow the Installation Instructions for PHP 4.0.: > > $gunzip php-4.0.x.tar.gz > $tar -xvf php-4.0.x.tar > $./configure --with-interbase --with-apxs > $make install > > Then I modify httpd.conf adding the following lines: > > LoadModule php4_module /usr/lib/apache/1.3/libphp4.so > > ... > > AddType application/x-httpd-php .php > > > Then I try to restart the service: > > /usr/sbin/apachectl restart > > And I get the following error > > Syntax error on line 100 of /etc/apache/httpd.conf: > Cannot load /usr/lib/apache/1.3/libphp4.so into server: > /usr/lib/apache/1.3/libphp4.so: undefined symbol: _dl_default_scope > > > Can you help me? > > Thanks in advance. > > Antxon ALonso > [EMAIL PROTECTED] > > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: how do you find MAC address of a computer
'winipcfg' under windows 95/98 'ipconfig /all' under NT 'ifconfig | grep HWaddr' under linux Jason > [EMAIL PROTECTED] wrote: > > Hello, I am trying to configure webramp router. It keeps asking me MAC > > address of the computer. Do any of yoy know how to find out the MAC > > address? Is it the same as network cards Ethernet ID ? If so, how do we > > get at this number? Since I installed it thru windows, i don't have any > > utility that will display the network card info? I have realtek > RTL8029 in > > my windows computer? > > ifconfig under Linux, winipconf (or maybe it's winipconfig - I use Windoze > so rarely I can't remember) under Windoze. The MAC address is > the Ethernet > card's hardware address. > -- > Mike Werner KA8YSD | "Where do you want to go today?" > | "As far from Redmond as possible!" > '91 GS500E| > Morgantown WV | Only dead fish go with the flow. > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: LILO and Printer
Try putting the option 'prompt' at the top of your lilo.conf and running /sbin/lilo to write the changes. You also might want to increase the 'timeout' option as well. Jason > > > On Sat, Jul 22, 2000 at 06:55:57PM +1000, Chris Marsh wrote: > > Hi, > > I am a newbie to Debian having just installed a frozen version of > > Potato. I'm used to RedHat and am having problems with LILO > and setting up > > my printer. > > > > LILO: No changes allow me to select which OS to enter on > bootup. I can > > change it to Windows or Linux, but not to choose between them. > I do this > > by editing lilo.conf and then running lilo. In Redhat this sets up > > automatically, so I'm at a bit of a loss. > > Please list your lilo config file (/etc/lilo.conf? sorry, I use > grub, and you should too, it is better than lilo). > > > > > Printer: Can't find anywhere in KDE2 to setup a printer. Am used to > > printtool, but can't find it. Did I miss installing something, > if so what? > > Debian has printool. $ apt-get install printool > You could also try magicfilter or apsfilter? > > > > > Thanks for your help! > > > > Chris Marsh > > > > > > -- > > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > > > > -- > Pat Mahoney <[EMAIL PROTECTED]> > > > Dare to be naive. > -- R. Buckminster Fuller > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Windows 2000 boot loader
i wouldn't replace it, but simply add linux to the menu so each os can safely coexist. here is a little utility that will do that for you, provided you install LILO at the beginning of your root partition, and NOT the mbr. http://www.winimage.com/bootpart.htm Jason > -Original Message- > From: Matthew Sherborne [mailto:[EMAIL PROTECTED] > Sent: Sunday, October 15, 2000 3:49 PM > To: debian user > Subject: Windows 2000 boot loader > > Has anyone succesfully replaced the Windows 2000 boot loader with LILO ? > > I have a Win2000/DOS boot machine, but I'm afraid to attempt installing > LILO on hda in case Win2000 needs to be there. It's my work computer and > if I stuff it up I'll be in big trouble. > > Matthew Sherborne <>
RE: disk files too large to fit on floppy disks
try this # dd if=imagefile of=/dev/fd0 or whatever device your floppy is Jason > > Hello Zach, > > Have you used rawrite or dd? The disk-files are disk-images, this means, > they should be copied bit by bit to a disk, and not by some tools which > use the file-system, which is on the disk. > By writing the raw images, they should fit absolutely exactly on one disk. > Regards, > Daniel > > On Sun, 15 Oct 2000, Zach Smith wrote: > > > Hello, > > I tried copying the Debian base disk files to > > actual floppy disks, and they are too large by > > about 30kB. I had to reformat my copy disks > > to use 81 tracks, which is risky. I am just now > > continuing this process, getting disk write errors... > > A better solution would be to recreate the files > > in the smaller size. > > Thanks > > Zach > > > > > > __ > > Do You Yahoo!? > > Yahoo! Messenger - Talk while you surf! It's FREE. > > http://im.yahoo.com/ > > > > > > > > -- > > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > > > > > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: What's with the Oracle for inux?
Jonathan, I don't know what version that magazine had, but if you got to http://technet.oracle.com, and register, you can download, or order a free version of Oracle 8i (8.1.6) for linux, either enterprise or standard edition. its a pretty sweet deal! kudos to oracle! Jason > > Hi, > > I've seen Oracle 8i on a CD ROM in a Magazine and was wondering > if this was > a Linux version of the Lite or Personal edition? I looked on > their web site > and found no mention of Linux for eiether and don't see them > giving away the > Standard. > > Anyone know what version and/or limitations it has? > > Thanks, > > Jonathan > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: oracle8i
Juan, I've installed Oracle 8i on a woody box. I didn't use any documentation, I am not sure if there is any, but I just ran the installer off the cd. it worked perfectly. Jason > > Hi! > > I would like to know if there is a possibility to install oracle in > debian and if there is some > documents about it. > > regards > > /Juan Carlos > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: What's with the Oracle for inux?
The download size is i think 300 megs?? I would order the cd though. It comes in a few weeks, and its a full working, unlimited version. I can't remember anything about the license though, that is probably where they get you. Jason > > Hi, > > Very. But for us poor miserable slobs here in 56k land, what's > the dl size? > No limitations on use, ie 60 days? > > Thanks. > > > I don't know what version that magazine had, but if you got to > > http://technet.oracle.com, and register, you can download, or > order a free > > version of Oracle 8i (8.1.6) for linux, either enterprise or standard > > edition. its a pretty sweet deal! kudos to oracle! > > Jonathan > >
RE: Installing LILO in MBR or in another partition
> In "Running Linux", the example lilo.conf includes the line > >boot = /dev/hda this is used if LILO will be the controlling boot manager for the system. The bios will read this first when the system is turned on. > > This will install LILO into the master boot record (MBR) of hda. The > explanation continues "If you give a partition device name (such as > /dev/hda2), instead of a drive device, LILO will be installed as a > secondary boot loader on the named partition. (Debian users should > always do this.)" Here, you can install LILO at the root of another partition and use another boot manager to "point" to that partition and boot debian. for instance, NT boot manager, or Partition Magic's boot manager, or system commander or anything else. that sounds like what you are doing. > > I can't find an explanation of why Debian users cannot put LILO into > the MBR of the disk. I've currently got grub in the MBR (the result > of installing Mandrake in a spare partition after installing Debian). > To boot Debian, grub then runs LILO installed in /dev/hda2. It's not > terribly elegant. there really isn't any reason not to, unless you are dual booting and, depending on what other os you have, you want LILO to be responsible for managing that. > > Please could someone explain whether it is safe to install LILO in the > MBR? Alternatively, what *can* I put in the MBR to replace the > current installation of grub (whose configuration is sitting in the > Mandrake partition)? It is safe to install LILO in the MBR, given a few factors such as the size of your drive. the kernel must exist in the first 1024 cylinders because of limitations in LILO. run /sbin/lilo -U to remove lilo from the root of /dev/hda2, then just change your lilo.conf line to say boot = /dev/hda and rerun /sbin/lilo to install in your MBR. it should safely overwrite grub, but just in case it doesn't, make sure you create a boot disk before attempting this, so you can get back into your system. hope this helps! jason
RE: apt-get through a proxy ?
I set my shell env settings http_proxy and ftp_proxy and it works perfect. Jason > > I can't go through our intranet proxy, although I configure my > apt.conf file to use it... > > Is there a HOWTO about 'apt-get' ? (and other 'apt' programs?) > > Please show me an URL, where I can see a usable 'apt.conf' file > using a proxy... > > Thanks. > > -- > GYULAI Mihály http://gyulai.freeyellow.com Rejtő Jenő művei, Linux > > Volt már olyan, hogy csak a tagline-t olvastad, a levelet nem ? > Did you find yourself just reading the tagline only? > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Exec CGI
Do you have this in your httpd.conf AddHandler cgi-script .cgi ?? You need this to map the cgi-script handler to all .cgi scripts. And you probably can take that extra Options line out, you don't need to tell apache Options ExecCGI twice. Also, your directory definition probably should look like this So you grab everyone's home directory. Hope this helps. Jason > > Hi, > > I am wondering how to execute .cgi out of the users public_html > directory. I thought I had it right by adding the line to > access.conf file? > > > AllowOverride all > Options ExecCGI > Options Indexes FollowSymLinks ExecCGI > Order allow,deny > Allow from all > > > I do have .cgi extentions working fine out of the main www > directory. If I > view the error.log I see a line that says that Option Exec is off?? > > Thanks > > Eileen Orbell > Software & Internet Applications > Capitol College > mailto:[EMAIL PROTECTED] > mailto:[EMAIL PROTECTED] > Don't Fear the Penguin. > > > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: question about my 2.4 test10 kernel
yes, grab the latest modutils http://www.kernel.org/pub/linux/utils/kernel/modutils/v2.3/ the latest is 2.3.19. There are quite a few changes you need to learn about. I suggest reading Documentation/Changes in your 2.4 kernel source tree. Jason > > i make 2.4.0 test 8 kernel before,by the common steps below: > make dep;make clean;make bzImage;make modules;make modules_install > but i met problem in my new compiled 2.4.0 test 10 kernel,after > reboot,i cannot > insmod any modules,i check the /lib/modules/2.4.0test10 dir,it > seems that this version kernel's module directory is so special > soany way to resolve it?? > thanx all > -- > »¶ÓʹÓà 21CN µç×ÓÓʼþϵͳ http://www.21cn.com > Thank you for using 21cn.com Email system > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: question about my 2.4 test10 kernel
oops, and woody contains 2.3.19 if your running it. Jason > -Original Message- > From: Jason Holland [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 08, 2000 9:43 AM > To: [EMAIL PROTECTED]; debian-user@lists.debian.org > Subject: RE: question about my 2.4 test10 kernel > > > yes, grab the latest modutils > > http://www.kernel.org/pub/linux/utils/kernel/modutils/v2.3/ > > the latest is 2.3.19. > > There are quite a few changes you need to learn about. I suggest reading > Documentation/Changes in your 2.4 kernel source tree. > > Jason > > > > > i make 2.4.0 test 8 kernel before,by the common steps below: > > make dep;make clean;make bzImage;make modules;make modules_install > > but i met problem in my new compiled 2.4.0 test 10 kernel,after > > reboot,i cannot > > insmod any modules,i check the /lib/modules/2.4.0test10 dir,it > > seems that this version kernel's module directory is so special > > soany way to resolve it?? > > thanx all > > -- > > »¶ÓʹÓà 21CN µç×ÓÓʼþϵͳ http://www.21cn.com > > Thank you for using 21cn.com Email system > > > > > > -- > > Unsubscribe? mail -s unsubscribe > > [EMAIL PROTECTED] < /dev/null > > > > > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Num lock activated by default, at start
I do this in a script for tty in /dev/tty[1-9]*; do /usr/bin/setleds -D +num < $tty done The relevant information being the setleds command. Jason > > How do I make my numlock pad active from start? > Thanks, > Antonio. > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: System.map
You can recreate your System.map by running make install in /usr/src/linux, or wherever your kernel source is that you recently recompiled. Jason > > Recently I started getting a message when I do a ps -ef | grep *something. > > The message reads about my system map not matching my kernel. I recently > recompiled a kernel to include msdos support, but that is all I've done. > > Anyone help with this? > > > > [EMAIL PROTECTED]:~> ps -ef | grep netscape > {no_halt} {init_task_union} > Warning: /boot/System.map-2.2.15 does not match kernel data. > {no_halt} {init_task_union} > Warning: /boot/System.map does not match kernel data. > > Thanks so much, > > D. Ghost > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Oracle bI 2nd request
Hi Stan, you don't need anything extra to install Oracle 8i in Debian. java comes with oracle, you need no extra java packages. If your not building a production machine, 64MB would probably work, but I would not run X at the same time, otherwise, go with 128MB. Hope this helps Jason > I posted yesterday, and unfortunately, have recieved no replies. > > I have a fresh potato install, and wish to install Oracle 8I on it. > Most of the information I have is for RedGAt. > > has anyone made this work on Debian? If so, whatr do I need to use > this, other than the base install with working X & Gnome? > > For instance I am totaly unfamiliar with Java, yet I know the Oracle > installer is Java based. What packages do I need to add to > allow this > to work? > > Also Oracle seems to recomend a minimum of 128M RAM. I really am not > building a production machine, and I have Oracle runing on > HP PA=RUSC > boxes with this amount of RAM. Surely I can't really need > that much for > just a small test instance? > > Anyone who has this working, I would love to hear from you. > > Thanks. > > -- > 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. > > > -- > Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null > >
RE: Oracle bI 2nd request
> > Cool. thnaks. > > I would have sworn somewhere that I had seen that the > Oracle installer required > a particular JRE, Blcakdown I think. I think previous versions required this. Earlier than 8.1.6. But Oracle was nice enough, and smart enough, to include this in 8i for us. :) > > In any case, I will plow on ahead, and see how it goes. > > I pretty much _have_ to run X to isntall, since the Oracle > installer is an X > app. BTW we are both talking about *I, right? Not not just > Oracle 8 which does > not use the Java based installer. Yes, the oracle installer does kinda require a gui. Though, you could just export your display to a desktop if you didn't want the extra overhead of X while installing. Yes, I am talking about Oracle 8i, 8.1.6 for linux. Jason
RE: Ok heres my problem
It looks like the vfat partition type is not supported by the kernel your running. Are you using modules?? If so, try loading it before you try and mount the partition. modprobe vfat also, are you sure its a vfat partition? second, are you sure that is the correct partition number? fdisk -l /dev/hda will help out with that. just making sure. jason > > mount -t vfat /dev/hda2 /mnt/windows/ > mount: wrong fs type, bad option, bad superblock on /dev/hda2, > or too many mounted file systems > (aren't you trying to mount an extended partition, > instead of some logical partition inside?) > > > what i have is 2 hd one on an ata66 card and one is ide -- > i am trying to mount the ide that has win98 on it > but anytime i seem to want to do it -- this error pops his head up > > Thanks > Alan > > > > *** > * .~.Alan Todd * > * /V\ Infoave.net * > * // \\ Web Development * > * /( )\ ICQ : 159944 * > * ^^-^^ E-Mail : [EMAIL PROTECTED] * > * Phone : 803-802-7416 * > *** > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: Secured FTP?
You can use scp, secure copy, included with openssh. It has the same syntax as rsh, but traffic is entrypted. Jason > > hi, > > Unfortunately I haven't found a solution to the following yet: > > I need a secure(1) file transfer method (passwords and data travelling > encrypted through the network) which retrieves the authentication info > from a file other than /etc/shadow or etc/passwd but a file of the same > format(2) and where users are restricted to manipulate only in their home > directories(3). > > /I managed to set up proftpd, it does (2) and (3) but not the most > important (1)/ > > Is there a way to do these using debian packages? > If not, non-debian-specific solutions are welcome, too :) > > Thanx: > pocok > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: Lilo Question
Hi, > After hours and hours of aggravation I was finally able to get both > Windoze and Debian installed on my wife's compaq presario. Because of > partioning problems (I think) I had to install win98 in the first > partition and it finally worked fine. I will copy some of the files from > the CD to drive, as suggested by folks here on the list. Everyone goes through this, its a rite of passage. :) > > My problem now is that when I installed and configured the kernel for > libranet debian, it overwrote the mbr and now I can't boot windoze from > the hd. Lilo just gives me linux. > > I will get to the man page as soon as I'm not so tired, in the meantime, > I have a couple of questions: > > 1.) Can I use the Liloconfig tool to include windoze in my lilo > configuration. I know this is a dumb question, I'm just overly cautious > about blowing my /mbr because I have a LS-120 floppy drive that so far > has not allowed me to make any boot floppies. I also have linuxconf on > the machine. > i don't know about liloconfig. but if you add these lines to your /etc/lilo.conf file, you should have no problems other=/dev/hda1 label=windows and rerun /sbin/lilo to rewrite the changes. that is assuming windows is on the first hard drive (hda), partition 1. > 2.) Because of this lack of boot floppies, is there a bullet-proof way > to configure LILO for both OS's? > > thanks > hope that helps. Jason
RE: HELP!! with lilo.conf
What does your lilo.conf file look like? You should have something like this append="ether=0,0,eth1" in your image section Jason > > > I have a network set up (one other machine) and have now decided to go > to cable for Internet access (phone service here is painfully slow, and > won't be going to DSL within the next decade). I installed another card > (rtl8139), which the BIOS recognises, but the kernel does not. > > The Ethernet and Boot HOW-TOs both prescribe including the following in > lilo.conf, to force the kernel to search for the second card: > > ether=0,0,eth1 > > or > > ether=12,0x320,eth1 > ether=10,0x300,eth0 > > > When I do this, and run lilo, it tells me I have a syntax error (in both > cases), and will not process anything past the offending entry. > > What am I doing wrong, and what do I do to correct it, please? > > Just for the record, ifconfig eth1 gets a "device cannot be found" > response. > > TIA > > Cam > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: modprobe module problem (char-major-10-135)
Sven, To get rid of that, put this line in your /etc/modules.conf file alias char-major-10-135 off Jason > > Hello debs, > > How do I fix the following? > > modprobe: modprobe: Can't locate module char-major-10-135 > > This appears when booting my potato box. Why does this come up? > I mean, what is missing / wrong? > > Cheers > Sven > -- > c:\> deltree /y \windows > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: modprobe module problem (char-major-10-135)
Pete, I'm not sure about that. I always edit it by hand, just because I've become comfortable doing that. if there is another way, or official way of making changes to this file, I'd like to hear about it. Anyone?? Jason > > i thought we weren't supposed to modify that file by hand? > > is that the "proper" way of doing it, or is there an official > debian method > that doesn't involve editing that file by hand? > > pete > > On Sat 16 Dec 00, 8:02 PM, Jason Holland said... > > Sven, > > To get rid of that, put this line in your /etc/modules.conf file > > > > alias char-major-10-135 off > > > > Jason > > > > > > > > Hello debs, > > > > > > How do I fix the following? > > > > > > modprobe: modprobe: Can't locate module char-major-10-135 > > > > > > This appears when booting my potato box. Why does this come up? > > > I mean, what is missing / wrong? > > > > > > Cheers > > > Sven > > > -- > > > c:\> deltree /y \windows > > > > > > > > > -- > > > 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] > > > > -- > Just upgraded to Woody? Don't have permission to run X? linux > In Xwrapper.config, change allowed_users from root to console. - > --._. > To err is human, to forgive is divine. [EMAIL PROTECTED] /v\ > To oink is porcine, to meow is feline.http://www.dirac.org/p // \\ > -- ^^ ^^ > GPG Fingerprint: B9F1 6CF3 47C4 7CD8 D33E 70A9 A3B9 1945 67EA 951D rules >
RE: The better ftp server for Debian...
i use proftpd, its pretty sweet. the config file syntax is a lot like apache config files. its stable, good performance, and more secure that wu-ftpd i think. just my personal $0.02. later Jason > > Hi, > > Could you recommend the best ftp server for my Linux-Debian box? > > Thanks, > > -- > .|, > -*- Rogelio E. Castillo Haro >'/'\`[EMAIL PROTECTED] >/`'o\ > /#,o'`\ > o/`"#,`\o Feliz Navidad !!! > /`o``"#,\ > o/#,`'o'`\o > /o`"#,`',o\ >o`-._`"#_.-'o >_|"|_ >\=%=/ > """ > > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: Low SBLive volume
I did. Until i used aumix to change the volume, and it fixed the problem. No more low sound. :) Jason > > >Finally can hear sound, but with low volume and when I try to move the > >control in the mixer the sound vanishes. > > I have a similar problem. When I installed my SBLive, the volume > is low in both > Linux and Windoze compared to my previously installed SB16. I can > increase the > main volume to its maximum level and it's acceptable, but, it seems like I > shouldn't have to do that. I'm using the kernel 2.2.18pre21 > module for sound. > Anyone else have a similar problem? > > Scott > > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: depmod question
Peter, what modultils version are you using?? the 2.4 series requires at least version 2.3.18 or above. check your /usr/src/linux-2.4/Documentation/Changes file for other relevant software updates you might need to make. If that is not the problem, imm.o is the driver for an Iomega parallel port scsi adapter. Do you have one of those in your box?? If not, get rid of that in your kernel config and recompile. Hope this helps! Jason > > i *just* downloaded and compiled 2.4.0-12 for the very first time. after > my very first reboot with this kernel, i'm getting: > > # depmod -a > depmod: *** Unresolved symbols in > /lib/modules/2.4.0-test12/kernel/drivers/scsi/imm.o > > > i'm curious - i compiled this kernel by the book. what is causing this > message and what is the fix? >
RE: incorrect kernel version
Try looking at the top of your /usr/src/linux/Makefile VERSION=2 PATCHLEVEL=2 SUBLEVEL=16 or whatever... Jason > -Original Message- > From: Robert Newton [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 19, 2000 12:27 PM > To: debian-user@lists.debian.org > Subject: incorrect kernel version > > > I've installed a patch on my 2.2.17 kernel (win4lin). The new kernel > compiles and boots however it now thinks that it is a 2.2.12 kernel > (Identifies itself this way at the start of the boot). > Needless to say, it has a little difficultly loading modules. > > The kernel that was compiled before installing the patch still boots > without a problem. > > I thought it would be easy to find where the kernel version is set but > so far I have been unsuccessful. If someone happens to know how this > is done could you please let me know. > > Note: The file version.h still says 2.2.17 > > rob > > Robert Newton > [EMAIL PROTECTED] > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: depmod question
> > i originally compiled imm support as a module because you never > know when a > friend will come over with one of these things... > > well, i recompiled the kernel and modules without imm support, > and there are > no complaints from depmod. > > but this kind of sucks! it's precisely the reason why i tend to built > monolithic kernels instead of modular kernels. stuff always seems to go > wrong sooner or later. not serious stuff, but really annoying messages > which are rather unpleasing to watch scroll by... > I've had the same types of problems. It seems the ppa and imm kernel drivers are fairly old. The documentation is a bit out of date, at least for anything above 2.2.x. Have you tried sending a message to the linux kernel list?? I bet someone on there would know if there is a dependency needed, but not documented anywhere for the 2.4 series. Thats what my best guess is. Jason
RE: depmod question
pete, ok, i've been digging up some info on this. It seems that zip drives on the parallel port require the lp module to be loaded. # modprobe lp # modprobe imm Possibly you need parallel port printer support compiled in your kernel??? Maybe its puking on that, just a long shot. Jason > -Original Message- > From: Peter Jay Salzman [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 19, 2000 1:30 PM > To: Debian user mailing list > Subject: Re: depmod question > > > On Tue 19 Dec 00, 1:08 PM, Jason Holland said... > > Peter, > > what modultils version are you using?? the 2.4 series > requires at least > > version 2.3.18 or above. check your > > /usr/src/linux-2.4/Documentation/Changes file for other > relevant software > > updates you might need to make. If that is not the problem, > imm.o is the > > driver for an Iomega parallel port scsi adapter. Do you have > one of those > > in your box?? If not, get rid of that in your kernel config > and recompile. > > i originally compiled imm support as a module because you never > know when a > friend will come over with one of these things... > > well, i recompiled the kernel and modules without imm support, > and there are > no complaints from depmod. > > but this kind of sucks! it's precisely the reason why i tend to built > monolithic kernels instead of modular kernels. stuff always seems to go > wrong sooner or later. not serious stuff, but really annoying messages > which are rather unpleasing to watch scroll by... > > pete >
RE: Instaling dbi in debian
yes, install cpan and use cpan to install dbi. ppm i believe is for active perls port to windows. cpan is the unix equivalent. Jason > > I have installed Perl 5, it works ;-) > > I have installed Mysql, it works also > > Now someone tell me about DBI ? > > Is there an easy way to install this (apt-get install DBI) > > Also my book on perl and mysql says about using PPM, but this I > guess needs > instaling too ;-) > > Any help getting this up and running greatfully taken !! > > Cheers > > James. > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: Instaling dbi in debian
http://www.cpan.org cpan is pretty awesome for installing perl modules. Jason > > > OK, can you tell me how to do this, apt-get could not find it, > neither could > dselect ;-( > > Cheers for your help ;-) > > James. > - Original Message - > From: "Jason Holland" <[EMAIL PROTECTED]> > To: "james (home)" <[EMAIL PROTECTED]>; > Sent: Wednesday, December 20, 2000 8:35 AM > Subject: RE: Instaling dbi in debian > > > > yes, install cpan and use cpan to install dbi. ppm i believe is for > active > > perls port to windows. cpan is the unix equivalent. > > > > Jason > > > > > > > > I have installed Perl 5, it works ;-) > > > > > > I have installed Mysql, it works also > > > > > > Now someone tell me about DBI ? > > > > > > Is there an easy way to install this (apt-get install DBI) > > > > > > Also my book on perl and mysql says about using PPM, but this I > > > guess needs > > > instaling too ;-) > > > > > > Any help getting this up and running greatfully taken !! > > > > > > Cheers > > > > > > James. > > > > > > > > > > > > -- > > > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > > > with a subject of "unsubscribe". Trouble? Contact > > > [EMAIL PROTECTED] > > > > > > > > > > > >
RE: Instaling dbi in debian
http://search.cpan.org/search?dist=CPAN is the link to the source. you can either search for perl modules using cpan from the command line, or http://search.cpan.org after compiling and installing cpan, installing a bundle from the command line is as easy as # cpan cpan> install DBI it compiles and installs automatically for you, including any dependencies needed for each perl module package. hope this helps. Jason > > > http://www.cpan.org > > cpan is pretty awesome for installing perl modules. > > Jason > > > > > > > OK, can you tell me how to do this, apt-get could not find it, > > neither could > > dselect ;-( > > > > Cheers for your help ;-) > > > > James. > > - Original Message - > > From: "Jason Holland" <[EMAIL PROTECTED]> > > To: "james (home)" <[EMAIL PROTECTED]>; > > Sent: Wednesday, December 20, 2000 8:35 AM > > Subject: RE: Instaling dbi in debian > > > > > > > yes, install cpan and use cpan to install dbi. ppm i believe is for > > active > > > perls port to windows. cpan is the unix equivalent. > > > > > > Jason > > > > > > > > > > > I have installed Perl 5, it works ;-) > > > > > > > > I have installed Mysql, it works also > > > > > > > > Now someone tell me about DBI ? > > > > > > > > Is there an easy way to install this (apt-get install DBI) > > > > > > > > Also my book on perl and mysql says about using PPM, but this I > > > > guess needs > > > > instaling too ;-) > > > > > > > > Any help getting this up and running greatfully taken !! > > > > > > > > Cheers > > > > > > > > James. > > > > > > > > > > > > > > > > -- > > > > 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: lilo
check out mkboot. its a pretty sweet way to create a boot floppy in case of emergencies. :) jason > > Hi all > > Well I was wondering can one transfer lilo onto a stiffy and boot from > that? > > Scenario: > You reinstall windows (wich is on the same drive as linux) and it > overwrites your mbr.After wich you suddenly and to your horror discover > that the dog lying in the corner looks so content beacause he has just > devouered you bootdisk!! > > What now? > I realize you will need lilo.conf in there somewhere to specify your > root partition. > > I am not searching the mail archives (witch I normally do) but posting > to all my groups beacause this is an emergency. > So forgive me if it was already explained > > Cheers from sunny South-Africa > > Stefaans > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: how to reply to messages
reply works for me. see, it just did! :) jason > > Hi all... just a curious question: whenever I > reply to a message, I have to manually enter the > debian-user@lists.debian.org address. (well, I > cut and paste) I was just wondering why the > list's "reply to" address isn't set > to [EMAIL PROTECTED] > > thanks.. > *we now return you to your regularly scheduled > email* > > xucaen > > __ > Do You Yahoo!? > Yahoo! Shopping - Thousands of Stores. Millions of Products. > http://shopping.yahoo.com/ > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: perl cgi and mysql
have you tried DBD-mysql?? > > Can anyone point me into the right direction > > I would appreciate some sample code. > > I have created a database within mysql, its fine, I can get Perl > to talk to > it. > > I need to know how to create the htm and I guess a perl/cgi code > to talk to > the database. > > what I am trying to create is 2 web pages. > > 1:-which will show the current database > 2:-which will allow a user to add data to the database > > any example code, ideas or need more info please mail me I am getting > desperate on this one. > > Thanks > > James. > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: emu10k1 module
Anthony, In /etc/modules.conf alias sound emu10k1 should do the trick. Jason > > I have auto module loading compiled into my kernel. How do I > specify that when an application attempts to access the sound > hardware that the kernel should install the emu10k1 module into the > running kernel? Right now, the kernel installs the soundcore module > only. > > Thanks, > Anthony > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: 2.4.0 and 3com 905c
> A long time ago, in a galaxy far, far way, someone said... > > > i've been using stock kernel 2.2.17 that came with potato. it > > recognized my 3com nic (as 3com 3c905c) and works wonderfully. > > > > i would like to ungrade to kernel 2.4.0 (now that it's stable). > > after rebooting a custom 2.4.0, i can't seem to get the nic > recognized > > by the kernel. in the recompile, i specified 3com (and the 900 > > series). > > > > does anyone know how i can get the 3com nic (that 2.2.17 sees as > > 3c905c) to be recognized by 2.4.0? > > 2.4.0 has known problems with 3com PCI ethernet cards. I > think there are > patches available, but I don't know where. > > The 3c59x driver in 2.4.0-test11 works great through - maybe you could > drop that in and see what you get. > > Beyond that your options are: > * stick with 2.2.x > * wait for 2.4.1 > I've had no problems with the 2.4 series and my 3com cards (3c900 and 3c509b). Perhaps you have an IRQ or IO conflict. Jason
RE: [2.4.0] migration to devfs
Devfs has a compatibility mode which can be turned on. it enables the old device paths, like /dev/hda4, to coexist with the new paths, though mount will report the new path. Jason > > > On Sat, Jan 06, 2001 at 01:34:07PM -0500, S.Salman Ahmed wrote: > > > > I have one question regarding devfs: does it offer any performance > > improvements over the traditional non-devfs setup, or is > devfs simply a > > 'structural' change ? > > i fail to see how typing: > > /dev/ide/host0/bus0/target0/lun0/part1 > > instead of /dev/hda1 or /dev/wd0a whenever i need to do anything > related to raw devices is a performance improvment. nor is writing > huge kludgy initscripts or bloated daemons just so i can do: > > chgrp wheel /dev/somedevice > chmod 660 /dev/somedevice > > and have it stick. (past reboots) > > as for anyone attempting to make the silly claim that /dev has > thousands of devices and thus incurs the evil ext2fs directory > slowness ask them why they are not turning /usr/bin into a fake > filesystem. > > [EMAIL PROTECTED] eb]$ ls -1 /dev | wc -l >1222 > [EMAIL PROTECTED] eb]$ ls -1 /usr/bin | wc -l >2109 > [EMAIL PROTECTED] eb]$ > > the only directory on my system which i can even percieve the > slightest slowdown is /var/lib/dpkg/info, and even then its hardly > noticable nor anything to cry about: > > [EMAIL PROTECTED] eb]$ ls -1 /var/lib/dpkg/info | wc -l >5289 > [EMAIL PROTECTED] eb]$ > > better solutions to ext2 directory performance is fix the filesystem, > reiserfs does not have this problem and i think ext3 does not either. > > the only other argument i ever hear is whining about device files with > no corrosponding device, well i could care less. if i will never will > have the device and it bothers me THAT much rm -f /dev/somedevice*. > otherwise its nice to know exactly what permissions some hardware will > have before installing it. /dev is not a database of what hardware is > installed, that belongs to /sbin/lspci and /proc (though proc is a > hideous mess, everything except processes should have been moved to > /kern long ago) > > anyway thats just my rant on the subject, if you like devfs use it, > but leave it an OPTION so i can leave it off. (and not an `option' > like proc has become where you have the option to turn off and have a > useless broken system) > > -- > Ethan Benson > http://www.alaska.net/~erbenson/ >
RE: [2.4.0] migration to devfs
> > > On Sat, Jan 06, 2001 at 06:38:16PM -0600, Jason Holland wrote: > > Devfs has a compatibility mode which can be turned on. it > enables the old > > device paths, like /dev/hda4, to coexist with the new > paths, though mount > > will report the new path. > > it does that though a kludge daemon. the same kludge required to > allow chown/chgrp/chmod to work. > > that is unacceptable, the only acceptable option is to allow: > > CONFIG_DEVFS_FS=n > haha! i happen to agree that the path names are ridiculous. however, i'd rather have a 100 devices to look through, than 5000 without devfs turned on. isn't it nice to have a choice? Jason
RE: FrameBuffer and XF86
> SubSection "Display" > Depth 32 > Modes "default" > Virtual 1024 768 > EndSubSection > EndSection Take the Virtual line out Jason
RE: FrameBuffer and XF86
well, i can tell you that is one of the problems for sure. you need to post the rest of your xfconfig file for us though. maybe somebody will see something else. Jason > -Original Message- > From: Tommy Wu [mailto:[EMAIL PROTECTED] > Sent: Saturday, January 06, 2001 7:51 PM > To: [EMAIL PROTECTED] > Cc: 'Debian User' > Subject: Re: FrameBuffer and XF86 > > > "Jason Holland" <[EMAIL PROTECTED]> wrote: > > > > SubSection "Display" > > > Depth 32 > > > Modes "default" > > > Virtual 1024 768 > > > EndSubSection > > > EndSection > > Take the Virtual line out > > I've tried this. There is no different for me. They still > be a large virtual screen. > > -- > > Tommy Wu > mailto:[EMAIL PROTECTED] > http://www.teatime.com.tw/~tommy > ICQ: 22766091 > Mobile Phone: +886 936 909490 > TeaTime BBS +886 2 3151964 24Hrs V.Everything > > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact > [EMAIL PROTECTED] > >
RE: SSH
incorrect. openssh is NOT licensed at all. it includes ssh v1, ssh v2 and sftp-server. Jason > -Original Message- > From: Joris Lambrecht [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 18, 2001 3:11 AM > To: 'Benjamin Pharr'; debian-user@lists.debian.org > Subject: RE: SSH > > > Only SSH 1 is OPEN. From what i recall SSH2 and following are licensed > (payware) > > check out www.ssh.com or www.openssh.org > > greetings, > > J.L. > > -Original Message- > From: Benjamin Pharr [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 18, 2001 10:04 AM > To: debian-user@lists.debian.org > Subject: SSH > > > While logging into my Debian box using ssh I noticed that it > is setup to > use SSH version 1 by default. This protocol is widely known to have > security problems. Does anyone know why Debian is still > using it? Below I > have pasted a link from the official ssh.org FAQ. > > http://www.employees.org/~satch/ssh/faq/ssh-faq-1.html#ss1.8 > > Ben Pharr > > > -- > 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: Woody vs 2.4.0 (+framebuffer)
I have compiled everything from 2.4 test5 on up to 2.4.1 pre8 on my woody box, using gcc 2.95.2 and it has worked fine, without any compiler complications. to disable framebuffer you will need to recompile. Jason -Original Message- From: Joris Lambrecht [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2001 3:28 AM To: 'debian-user@lists.debian.org' Subject: Woody vs 2.4.0 (+framebuffer) Hi, First, Yesterdaynight (like 4am today :) i've started compiling the 2.4.0 once more and this time i took the time for a read (it happens) Apparently, woody comes with a compiler the 2.4.0 readme advices against ... they advice a version prior to 2.95.2 or something and even warn the current (2.95.2) is not REALLY safe. So, i tried a rollback to the version that was recommended (the also mention egcs) but could not find this anywhere in the packageslists i use. (i have archives active for potato as well as testing (woody)) Does anyone know of any real complications ? Second, I've enabled framebuffer support but this screws my video in textmode when i jump to a console from X. How do i disable this without the need to recompile ? (i'm currently using XFree86 4.0.2 with a Matrox G200 8MB, i've also installed the matrox beta driver) Thanks, J.L