Re: [expert] C++ errors

2001-12-31 Thread eric
Ken: what version of mdk you use? 7.2 or 8.0 or 8.1? eric, [EMAIL PROTECTED] Ken Thompson wrote: #include iostream int main() { cout Hello World! endl; return(0); } Try the above :) [ken@spooky Desktop]$ ./hello1.cpp ./kello1.cpp: line 4: syntax error

Re: [expert] How can I shutdown a PC from telnet?

2001-12-31 Thread James Sparenberg
Roger, I don't know for sure exactly what is happening but I can give you some tips on how to find out where and why the shutdown command dies. First question is ... does reboot work? Second just type shutdown. If it's being found correctly in your path it should spit a Usage message

Re: [expert] help with urpmi please

2001-12-31 Thread bascule
hi charles, i am running cooker with 2.4.16 -11, i did what you described (though i wasn't having exactly the same problem) no joy, urpmi still goes through all of the rpms specified in the command line and at the end it says: found 3424 headers in cache removing 3424 obsolete headers in cache

[expert] Moving MySQL databases to hosting server - help!

2001-12-31 Thread Neil R Porter
Hi All Firstly, thanks for the permissions help on the MySQL database query. I've got a simple database application running (using html/php/MySQL) and want to be able to transfer it up to my web hosting space. They claim to support MySQL, although I have no idea how to move the actual files

Re: [expert] help with urpmi please

2001-12-31 Thread Charles A Edwards
On Mon, 31 Dec 2001 11:29:11 + bascule [EMAIL PROTECTED] wrote: hi charles, i am running cooker with 2.4.16 -11, i did what you described (though i wasn't having exactly the same problem) no joy, urpmi still goes through all of the rpms specified in the command line and at the end it

Re: [expert] Moving MySQL databases to hosting server - help!

2001-12-31 Thread Jesus Roncero
El Lun 31 Dic 2001 12:54, Neil R Porter escribió: Hi All Firstly, thanks for the permissions help on the MySQL database query. I've got a simple database application running (using html/php/MySQL) and want to be able to transfer it up to my web hosting space. They claim to Have you tried

RE: [expert] Moving MySQL databases to hosting server - help!

2001-12-31 Thread Kurki, Juhani ActeFI
Title: RE: [expert] Moving MySQL databases to hosting server - help! -Original Message- From: Neil R Porter [mailto:[EMAIL PROTECTED]] Sent: 31. joulukuuta 2001 13:55 To: Expert Mandrake List Subject: [expert] Moving MySQL databases to hosting server - help! want to be able to

[expert] Samba Question??

2001-12-31 Thread Gavin
I have 3 computer, 2 Linux (RH and ML) and one windows 98 box. Using samba, I can see all files on my 98 box. I want to do some file sharing with my 2 linux boxes, I read (from the MUO - Connectivity - SAMBA Setup I http://www.mandrakeuser.org/docs/connect/csamba.html) that you can't use

[expert] Have anybody successfully installed the Palm Emulator under 7.2

2001-12-31 Thread Peter Møller Neergaard
I have been unsuccessful at compiling the Palm Emulator source from Palm under 7.2. I wondered if anybody has been successful in doing it and could give me hints on where I go wrong. I am currently trying to compile the source version 3.3, but I had similar problems when I tried to compile the

Re: [expert] lmsensors (About an earlier discussion)

2001-12-31 Thread Tom Brinkman
On Sunday 30 December 2001 10:56 pm, Nelson Bartley wrote: As was discussed earlier (but I appear to have lost some of the messages), I installed the lm_utils package, which installed and auto started the sensord deamon. However, during boot I get a message which mentions modprobe i2c-proc

Re: [expert] InteractiveBastille question

2001-12-31 Thread Ken Nowack
Yeah, Bastille-Tk did the trick. However, now I can no longer su to root. I can log in as root just fine but no su. It gives the error File size limit exceeded I remember seeing someone else having the same issue here not long ago. Time to troll the archives to see what I can find. Thanks much

[expert] MySQL/SQL question

2001-12-31 Thread Thomas Sourmail
Sorry if that's obvious to some, I'm just starting with databases.. So, I read it's good to normalise databases and so I do, I have a table for papers, one for author and one for journal, with, in paper, the id of author and journal. So far so good, but how do I enter my data ?? Supposing I

Re: [expert] InteractiveBastille question

2001-12-31 Thread Florian
Thats not an issue you yave probably answered the question if you want to add a filesizelimit for users with YES so go through the Interactive_Bastille again and set it to NO. Cheers Florian On Monday 31 December 2001 16:26, you wrote: Yeah, Bastille-Tk did the trick. However, now I can no

Re: [expert] Samba Question??

2001-12-31 Thread Michael Viron
At 10:39 PM 12/31/2001 +0900, you wrote: I have 3 computer, 2 Linux (RH and ML) and one windows 98 box. Using samba, I can see all files on my 98 box. I want to do some file sharing with my 2 linux boxes, I read (from the MUO - Connectivity - SAMBA Setup I

Re: [expert] bastille-netfilter

2001-12-31 Thread richard
On Sat, 2001-12-29 at 14:15, daRcmaTTeR wrote: On 29 Dec 2001 09:26:51 + richard [EMAIL PROTECTED] studiouisly spake these words to ponder: I believe there is a mailing list for this, anyone know where ???. I suspect the probs I have with implemetation are outside the scope of this

RE: [expert] MySQL/SQL question

2001-12-31 Thread Mitchell, Edmund
Hi Thomas, You don't need to put your column or table names into the INSERT statement. Just put the values in the same order as the columns. So, if your papers table has the columns author_id and title, then type: INSERT INTO papers VALUES(42, 'Mu Mesons and Quark Emissions'); Then, to select

Re: [expert] MySQL/SQL question

2001-12-31 Thread Tobias Marx
Am Mon, 2001-12-31 um 16.39 schrieb Thomas Sourmail: INSERT INTO papers(title, journal_id, author_id, whatever) values ('The title', select journal_id from journal where name='The journal', select author_id from author where name='The author', etc..); in theory this will work, but not

RE: [expert] MySQL/SQL question

2001-12-31 Thread Thomas Sourmail
So, if your papers table has the columns author_id and title, then type: INSERT INTO papers VALUES(42, 'Mu Mesons and Quark Emissions'); Hum.. I knew that, but I meant I don't want to have to know that the author ID is 42, I want to look it up in the table AUTHORS. Anyway, the next post seems

Re: [expert] Gphoto2

2001-12-31 Thread ajax
Check the installation cds for a library with gphoto2 in it and install it and gtkam from the cds. I tried to do a complete install and neither of these were installed by the installer. Then run gtkam. I got my canon digital elph working this way. It doesn't seem to want to download video

Re: [expert] C++ errors

2001-12-31 Thread tester
Ken Thompson wrote: #include iostream int main() { cout Hello World! endl; return(0); } Try the above :) [ken@spooky Desktop]$ ./hello1.cpp ./kello1.cpp: line 4: syntax error near unexpected token `main()' ./kello1.cpp: line 4: `int main()' Been a long time, but shouldn't

Re: [expert] Gphoto2

2001-12-31 Thread Ken Thompson
On Monday 31 December 2001 10:18 am, you wrote: Check the installation cds for a library with gphoto2 in it and install it and gtkam from the cds. I tried to do a complete install and neither of these were installed by the installer. Then run gtkam. I got my canon digital elph working this

Re: [expert] C++ errors

2001-12-31 Thread tester
Lee Roberts wrote: I think you're right. He has to compile the program, with g++, first and then run the *executable* file. :-D At 06:23 PM 12/31/2001 +1300, Syed Irfan wrote: hmm i think i know whats wrong hes running the .cpp file as a script without compiling to compile use g++ hello.cpp

[expert] C++ Problems SOLVED

2001-12-31 Thread Ken Thompson
First let me thank every one that responded. Syed, ya hit it right on the head, I wasn't compiling before trying to run the file. I compiled using g++ as suggested and it works like a charm. I suppose in retrospect, I should have caught the problem because there was never any .o file and an IDE

Re: [expert] C++ errors

2001-12-31 Thread Ken Thompson
On Sunday 30 December 2001 08:17 pm, you wrote: Ken: what version of mdk you use? 7.2 or 8.0 or 8.1? eric, [EMAIL PROTECTED] Mandrake 8.1. -- Ken Thompson, North West Antique Autos Payette, Idaho Email: [EMAIL PROTECTED] http://www.nwaa.com Sales and brokering of antique autos and parts.

Re: [expert] C++ errors

2001-12-31 Thread Ken Thompson
Are you certain you have an iostream file? Are any other standard headers needed? The older gcc series added standard headers by default with wild abandon, but no more. 2.96 is strict but nothing compared to 3.0. Civileme Civileme, I should have all the header files installed. I did a

Re: [expert] C++ errors

2001-12-31 Thread Lee Roberts
At 09:20 AM 12/31/2001 -0900, tester wrote: Actually, will still fail: Also need # define EXIT_SUCCESS 0 before int main() Civileme It worked fine on my system without #define EXIT_SUCCESS 0. Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com

[expert] cyrillic fonts

2001-12-31 Thread Lee Roberts
Has anyone been able to use cyrillic fonts with Evolution or K-mail or Xirc or ? I can switch between English and Russian when using the advanced editor so I know the fonts are installed. Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com

Re: [expert] How can I shutdown a PC from telnet?

2001-12-31 Thread Roger
Many thanks for all your suggestions. I think I have somehow damaged the Linux installation beyond my ability to repair it and will have to reinstall it. I hate it when this happens. I did find one other clue - I get different logout menus on this PC and my server PC. Both are Mandrake 8.1

[expert] dpms?

2001-12-31 Thread Mike Tracy Holt
Hello all, I've been watching some dvd's this morning and ogle looks great! Only problem that I had sll morning was that the monitor keeps shutting off every 15-20 minutes I guess. I tried commenting out the option dpms on line in my XF86Config-4 file, and still get the same thing.

[expert] NIS Server

2001-12-31 Thread DStevenson
Hi All, Happy new year. Problem I am having is with NIS. I have never played with it before now. I am using MDK 8.0 and have currently 2 machines running this distro. I have to add a third. Now I want to add NIS to the server. I have installed the ypserv on the server, ypbind and tools on the

Re: [expert] bastille-netfilter

2001-12-31 Thread nds
richard wrote: On Sat, 2001-12-29 at 14:15, daRcmaTTeR wrote: On 29 Dec 2001 09:26:51 + richard [EMAIL PROTECTED] studiouisly spake these words to ponder: I believe there is a mailing list for this, anyone know where ???. I suspect the probs I have with implemetation are outside the scope

Re: [expert] How can I shutdown a PC from telnet?

2001-12-31 Thread nds
Roger wrote: Many thanks for all your suggestions. I think I have somehow damaged the Linux installation beyond my ability to repair it and will have to reinstall it. I hate it when this happens. I did find one other clue - I get different logout menus on this PC and my server PC.

[expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Ken Nowack
Hello again, Well, I had samba and swat both installed during the initial installation. After I got my network up and running I went to try the SWAT config tool to get samba running. It brings up a Konqueror window and gives the error cannot connect to localhost port 901 Ok, so I figure maybe

[expert] Mandrake 8.1 and Isa-Pnp Tools

2001-12-31 Thread Noah Swint
Has anyone been about to properly get isapnp to properly work with Mandrake 8.1. At boot isapnp loads, and is supported by the kernel. Yet, the module isa-pnp nor isppnp cannot be loaded. #insmod /usr/src/linux-2.4.8/drivers/pnp/isa-pnp.o /usr/src/linux-2.4.8/drivers/pnp/isa-pnp.o: couldn't

Re: [expert] dpms?

2001-12-31 Thread Larry Sword
Mike Tracy Holt wrote: Hello all, I've been watching some dvd's this morning and ogle looks great! Only problem that I had sll morning was that the monitor keeps shutting off every 15-20 minutes I guess. I tried commenting out the option dpms on line in my XF86Config-4 file,

Re: [expert] VFAT and Evolution

2001-12-31 Thread Curtis H
On Wed, 2001-12-26 at 13:23, tester wrote: Jose Luis Vazquez Gonzalez wrote: Hi, I was trying to migrate from Kmail to evolution and I found the following problem. My mail folders are on a VFAT partition at Kmail and they work fine. I wanted to do the same with the evolution ones.

Re: [expert] dpms?

2001-12-31 Thread Ken Thompson
On Monday 31 December 2001 02:17 pm, you wrote: Hello all, I've been watching some dvd's this morning and ogle looks great! Only problem that I had sll morning was that the monitor keeps shutting off every 15-20 minutes I guess. I tried commenting out the option dpms on line in my

Re: [expert] How can I shutdown a PC from telnet?

2001-12-31 Thread James Sparenberg
Doing research for something unrelated I came across something that may be related to your problem. Bad Ram, Check out this HowTo http://badmem.sourceforge.net/docu/BadMEM-HOWTO.html#BEFORESTART the software is at http://badmem.sourceforge.net/ Some of what he describes in the HowTo sounds

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Dave Sherman
On Mon, 2001-12-31 at 15:46, Ken Nowack wrote: Hello again, [snip] What the heck should I try next? How about reading the Samba docs, then editing your /etc/smb.conf file by hand? The included smb.conf file is full of comments and (commented-out) examples, which you can simply un-comment and

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread James Sparenberg
Ken, Had a simular problem when I installed 8.0 and then again with 8.1 if you go to /etc/xinetd.d and edit the swat file you will see a line that says disable=yes. Change that to disable=no and then /etc/init.d/xinetd restart. This will reload xinetd with swat enabled. James On Mon, 31

[expert] Kernel RPM Building.

2001-12-31 Thread James Sparenberg
All, For work I need to be able to create a series of Kernel RPMS to allow for consistant secure Linux systems across a narrow variety of OS versions (mostly version changes based on age of the comp and user prefs at the time of install.) I'm attempting to normalize systems without have to

[expert] MySQL drive website

2001-12-31 Thread Ken Thompson
Can someone direct me to an easy to digest low calorie howto for making a database driven website using MySQL? I can do a bit of html and wouldn't be opposed to btushing up and learning some new stuff too. -- Ken Thompson, North West Antique Autos Payette, Idaho Email: [EMAIL PROTECTED]

Re: [expert] dpms?

2001-12-31 Thread Larry Sword
Larry Sword wrote: Mike Tracy Holt wrote: Hello all, I've been watching some dvd's this morning and ogle looks great! Only problem that I had sll morning was that the monitor keeps shutting off every 15-20 minutes I guess. I tried commenting out the option dpms on line

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Ken Nowack
Ok, now we're at least getting somewhere. I went to the doc you specify. Swat was already enabled. So I figure, hey, why don't I try to restart xinted anyway, just to be sure it's running properly. service xinetd status: xinetd stopped Ok now that's odd. The services list in the MCC list it

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Ken Nowack
I just reread the last post - /etc/init.d/xinetd restart. Then looked at what I did. HrmmI used service, I'll try using the /etc/init.d/xinetd start instead. Heck, I'll even reboot just to be safe. /etc/init.d/xinetd status: xinetd stopped Fine, /etc/init.d/xinetd start Starting

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Lee Roberts
At 01:46 PM 12/31/2001 -0800, Ken Nowack wrote: Hello again, Well, I had samba and swat both installed during the initial installation. After I got my network up and running I went to try the SWAT config tool to get samba running. It brings up a Konqueror window and gives the error cannot

RE: [expert] MySQL drive website

2001-12-31 Thread William R. Nash
Try www.php.net Very easy to connect to mysql. Bill Nash -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Ken Thompson Sent: Monday, December 31, 2001 5:55 PM To: [EMAIL PROTECTED] Subject: [expert] MySQL drive website Can someone direct me to an

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Lee Roberts
Try smb start from a command line? At 03:07 PM 12/31/2001 -0800, Ken Nowack wrote: Ok, now we're at least getting somewhere. I went to the doc you specify. Swat was already enabled. So I figure, hey, why don't I try to restart xinted anyway, just to be sure it's running properly. service

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Ken Nowack
--- Lee Roberts [EMAIL PROTECTED] wrote: Try smb start from a command line? Yes, I have smb service running. Xinetd is running too. Webmin is running too. The current version of samba is installed also. swat won't connect - error cannot connect: localhost is broken webmin won't connect -

[expert] ethernet

2001-12-31 Thread Florian
Hi i have a little prob ... =) Thing is: i just installed LM8.1 on a sony VAIO PCG505 notebook (small (1.7kg, neat i-link etc. but smal 266mhz, 32MB ram, 1 pcmcia slot for network AND cdrom ) wew. Now draknet doesnt detect the pcmcia network card (what do i know what brand it is ... it

[expert] Perl Locale Problems

2001-12-31 Thread nds
I get this error everytime any program or computer uses perl: perl: warning: Setting locale failed. perl: warning: Please check that our locale settings: LANGUAGE = en_US:en, LC_ALL = (unset), LC_MESSAGES = en_US, LC_NUMERIC = en_US, LC_CTYPE = en_US,

Re: [expert] MySQL drive website

2001-12-31 Thread Michael Viron
Try http://devshed.com -- there is a lot of information there, and I seem to remember finding an article about setting up mysql based websites. If you have specific questions re: php / mysql, send me an e-mail off-list, and I'll try to answer. Michael -- Michael Viron Registered Linux User

Re: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread James Sparenberg
Ken, Actually a hand edit isn't that bad it's well documented as you go through the doc. Most important change is to workgroup (all boxes must be the same workgroup Windows and Linux... to avoid a lot of hassles) Try one more thing... ESPECIALLY if your using Netscape with it's search

Re: [expert] MySQL drive website

2001-12-31 Thread James Sparenberg
Ken, You might try PHPNuke at http://www.phpnuke.org/ don't know if this will fill the bill but it does meet the requirments. James On Mon, 31 Dec 2001 15:54:31 -0700 Ken Thompson [EMAIL PROTECTED] wrote: Can someone direct me to an easy to digest low calorie howto for making a database

RE: [expert] help with urpmi please

2001-12-31 Thread Franki
Hi all, I read this one with interest.. I was having many problems with rpmdrake and MandrakeUpdate, So in my wisdom (read lack-thereof) I updated my mandrake 8.1 to the following: kernel 2.4.16-11 (with initscript and such.) urpmi-3.1-2mdk wget-1.7.1-3mdk rpm-4.0.3-0.34 with all

RE: [expert] samba and SWAT and webmin and MCC

2001-12-31 Thread Franki
strange, I haven't had any problems with xinetd.. perhaps you should remove and reinstall it. only two rpm commands necessary.. and it might fix it.. I use xinetd for pop3 (with only_from specified) and its never caused a problem, so give it a go. I don't actually like Swat or Webmin for