MySQL & PHP
hello all, I'm posting on 2 lists because I'm not sure were the problem is, so I'm hoping that some one can help me out. I'm running a stock RH8 machine running amongst other things MySQL 3.23.52-3, Apache 2.0, PHP 4.2.2-8.0.5 When I try a simple php script that is this (sensitive information changed to protect me): My PHP test file The page produces the following output: Fatal error: Call to undefined function: mysql_connect() in /home/username/public_html/testing.php on line 5 Can you guys see what is wrong... or if there is other information that is needed that isn't there please let me know and I will post whatever information is needed to fix it. TIA, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: MySQL & PHP
Hey everyone, Thank you all for your quick responses and the problem was that I did not have mysql support installed for php... installed the required rpm and did a httpd restart and it wrks now!! Thanx again, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
/var/www/html user privs
Hello everyone, I was wondering what the implications of changing the group on /var/www/html would be. I have a small site hosted off my pc at home and I ssh into the box a lot and work on it. I just don't like having to do 'su' so that I can get into the directory to work on my page... if I change the group of /var/ww/html ONLY, AND create a group for working on the site and add the user and root to that group... that should allow normal users, in that group, to access the that folder only correct? Would this cause any problems as far as anyone here can fore see? TIA, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Apache and perl
Hello again, I don't think I have mod_perl installed on my RH8.0 box, I know that I do have perl installed though... I did an rpm -qa perl and it found perl-5.8.0-55. My first question is how do I find out if I do have mod_perl installed? Second question is, but do I need to add to install mod_perl? Because I'm not sure whether it is just a plain old rpm to install and that is it or if it is an rpm and an httpd.conf edit or JUST the httpd.conf edit. TIA, Ryan PS Sorry for the rudementary questions... I'm trying to use linux alot more so I can remember these things that don't get used EVERYDAY but are still very important! __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Perl CGI
Hey everyone, I'm just wondering how may of you out there are programming in perl for the web? If you are did you have to do anything special to get the perl scripts to work? The reason I ask this is becuase I CAN NOT get any of my perl scripts to run. I have tried to add a section to my perl.conf as per the perl docs but then I get an include error... I'm including a file that has some basic funtions that I wrote. The include error is this from the webpage: Server error! The server encountered an internal error and was unable to complete your request. Error message: Can't locate perl/mylib.pl in @INC (@INC contains: /usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0 /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.0/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.0 /usr/lib/perl5/vendor_perl .) at /home/mcdougrs/public_html/clarkson/tc442/home.cgi line 2. If you think this is a server error, please contact the webmaster Error 500 removed.the.address Tue 04 Feb 2003 02:53:37 PM EST Apache/2.0.40 (Red Hat Linux) This is a stock 8.0 install with perl-5.8.0-55, mod_perl-1.99_05-3 and Apache httpd-2.0.40-8 for the stuff that matters. But I can't get these scripts to run... They are ones I wrote in a class last year on a RH7.3 stock install. If this isn't the appropriate list I appologise and if you could point me to which list you think might be most appropriate I would appreciate it. Thanx, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Perl CGI
--- Jay Crews <[EMAIL PROTECTED]> wrote: > Does "perl/mylib.pl" exist and where? > > The error looks pretty descriptive. > It's not in INC, and probably not in $PWD/perl either. > Probably going to have to move it, or tell INC where it is. > > > > /home/mcdougrs/public_html/clarkson/tc442/home.cgi line 2. Yep the file lies right at the following location /home/mcdougrs/public_html/clarkson/tc442/perl/mylib.pl > -- Jay Crews > [EMAIL PROTECTED] Is there a way to tell INC to also look in the $PWD? Because I'm thinking it ONLY looks in the directories that were included in the error message... I don't have to give the absolute path do I? Oh well I'm thinking that this is getting a little bit off topic for the psyche list... These are specific perl questions (I'm thinking). But if anyone here can help me that would be great too. Thanx, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Perl CGI
--- Hardy Merrill <[EMAIL PROTECTED]> wrote: > Try the 'perl -V' command - the bottom of the output tells you what > your @INC contains. Here's mine: > > @INC: > /usr/lib/perl5/5.8.0/i386-linux-thread-multi > /usr/lib/perl5/5.8.0 > /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi > /usr/lib/perl5/site_perl/5.8.0 > /usr/lib/perl5/site_perl > /usr/lib/perl5/vendor_perl/5.8.0/i386-linux-thread-multi > /usr/lib/perl5/vendor_perl/5.8.0 > /usr/lib/perl5/vendor_perl > . > > Notice the last line contains a dot(".") - that means that perl > looks in your current directory last. > > HTH. > > -- > Hardy Merrill > Senior Software Engineer > Red Hat, Inc. I got all excited cuz that sounded like that could have been the problem but I have the same output, including the '.' :-( But thanx for the suggestion though. Thanx, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Perl CGI
--- Neil Bird <[EMAIL PROTECTED]> wrote: >'.' may not (prob. doesn't) equal the dir. of script, but the dir. > that the server's running 'in'. Try ref.ing the full pathname, and if > that works, you'll have to the the basename off of $0 (the running > script) and push it into @INC. > > -- > [neil@fnx ~]# rm -f .signature > [neil@fnx ~]# ls -l .signature > ls: .signature: No such file or directory > [neil@fnx ~]# exit That was completely it. I had to fully refferance the path of the file. Does anyone know if this is something new in Perl? Wow I guess I need to get a new Apache administration book and a NEW Perl book. Sorry everyone that this got off list topic, but thanx for the help! Thanx for all the help, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: cron
--- Marek <[EMAIL PROTECTED]> wrote: > Hi > > I have the following entry in scheduled cron jobs 4 times a day. What > does it actually do ? /sbin/service iptables restart >/dev/null It restarts your iptables service (or firewall) and sending the output to /dev/null so that you don't see anything. Why it is getting restarted 4 times a day I have no idea but thats what is happening. And it is using the command "service" located in /sbin to restart it. HTH Ryan __ Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day http://shopping.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: network backups with tar
> BTW, when I run the command > > # tar cvzf - /tmp/testdir | ssh [EMAIL PROTECTED] 'cat > ~/backup.tgz' > > It asks me for a password, and when I type the correct root password in, ( I > logged into the 'sending' > server as root ) , it tells me "Permission denied, please try again". I hate to say this, because I feel that your linux knowledge is more than mine, but is root login restricted via ssh to the recieving server? I know that I have done that on my box. Just a thought and please forgive me if I am way off base here. Ryan __ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: network backups with tar
> > I don't suppose there is a way to supply the root passwpord on the > > command line? this would be great, because I could then run this command > > in the task scheduler Not sure if this would work but, can you do a root:[EMAIL PROTECTED] or [EMAIL PROTECTED]:password ? I would try this out but unfortunately my box is down at the moment and I am at work, so I can't just reboot it :-( Ryan __ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Starting KDE or GNOME
Hey everyone, I know this is going to seem like a stupid question, but here it goes anyway. How do you start KDE or GNOME manually? I am trying to do XForwarding and I can get a terminal up and running on my work box (Windows 2000) on X-Win, but I want to be able to start KDE or GNOME. I have my remote host starting up X automatically so I know has started, that and I tried startx and it gave me some errors. I tried 'startkde', 'startgnome', 'kde', 'gnome' a bunch of others too. I tried searching for some sort of executable on the linux box, but with no success. Just tried a google search for 'Starting KDE or GNOME in RH8.0' didn't turn up anything too useful. I believe all I am missing is the command to start GNOME or KDE then I will be up and running. Thanx, Ryan __ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Starting KDE or GNOME
--- [EMAIL PROTECTED] wrote: > Hi Ryan, Hi :-) > try 'gnome-wm'. When I run it here where it is already running, I get > a complaint, of course: > > .Window manager warning: Screen 0 on display ":0.0" already has a > window manager; try using the --replace option to replace the > current window manager. > > Which is exactly what I'd expect. > > I might misunderstand what you're trying to do, though. Your mail > implies your X11 server (in X terminology, that's the machine right in > front of you) is running Windows 2000. More like Windows 2000 is running an X11 emulator. > In principle you can run an > X11 window manager on a remote client with X-forwarding to your local > server, although this is usually not recommended because it may > perform slowly. But I would assume that Windows 2000 considers itself > the window manager, and not allow others to window manage, so you > might get an error there, and Windows might not even appreciate being > '--replace'd :-) Oh I'm sure it would get quite angry! ;-) > I don't understand why you would want a remote host to "start up X" -- > who would see the X display? Well because I am forced to use Windows 2000 here at work and I would like to utilize some of the gui tools on my linux box... Which I am using to develope a website using php and mysql as a backend. > No idea about kde, though. > Christian __ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Starting KDE or GNOME
Sorry about all the misunderstanding. Yeah, guess my problem is that I'm not familar with where the executables are. Meaning that I don't, if they are not in my $PATH, know how to get to them. I just know that in KDE there is an icon for what I use and I can just click on it :-/. I know I know... I'm lazy and I should spend more time learning where things actually are. True, but I don't get the opportunity to use Linux as much as I would like (work, wife, etc etc) :-P Anyway thank you all so much for your help. I guess I have some more playing around to do before I find something that works for me. Many thanks, Ryan PS What ever happened to startkde? Is that only there when someone choses to use a CLI login instead of the graphical one? Or is it a RH hack? __ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Starting KDE or GNOME
--- Andrew Schott <[EMAIL PROTECTED]> wrote: > > > What ever happened to startkde? Is that only there when someone choses to > use a > > CLI login instead of the graphical one? Or is it a RH hack? > > > Yo buddy! > > Here is what my MDK 9 box has, perhaps RH is identical. But these are > the commands for starting each wm > > /usr/bin/startkde > /usr/bin/gnome-session > > Hope this helps! > > Schotty Schotty? LJr? Anyway... I got the gnome-session but no startkde. I'm using GNOME right now! Rock on! Thanx man, Ryan __ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: able to d/l redhat 9.0?
--- Saqib Ali <[EMAIL PROTECTED]> wrote: > Hi All, > > Has anyone been able to d/l RedHat 9.0 from rhn.redhat.com? > > In Peace, > Saqib Ali > -- > "I fear, if I rebel against my Lord, the retribution of an Awful Day (The Day > of Resurrection)" Al-Quran 6:15 > http://www.seagate.cc/blog/ Are you a member of rhn? If not you have to wait a week before you can get it. If you are, I have no idea I'm not a member... sorry. Ryan __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: (no subject)
--- Avi Aumick <[EMAIL PROTECTED]> wrote: > I ran chkrootkit and the following came up: > > Checking `bindshell'... INFECTED (PORTS: 600) > > What am I look at? Also what is the command that tells me what ports are > in use (I can't remember what it is). > > Avram Avram, Sorry to hear about the bindshell infection thing, can't help you out on that though. But what I can help you out on is the command that tells you what ports are in use, it's 'netstat'. Check the man pages for which switches you want to use, because I have no idea what they are. HTH, Ryan __ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://platinum.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: ip command line question
--- Stephen Liu <[EMAIL PROTECTED]> wrote: > Hi all folks Hi > On issuing following command > > # ip addr > 1: lo: mtu 16436 qdisc noqueue > link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 > inet 127.0.0.1/8 brd 127.255.255.255 scope host lo > 2: eth0: mtu 1500 qdisc pfifo_fast qlen 100 > link/ether 00:50:fc:39:3b:59 brd ff:ff:ff:ff:ff:ff > 3: ppp0: mtu 1492 qdisc pfifo_fast qlen > 3 > link/ppp > inet 202.123.68.48 peer 202.123.71.254/32 scope global ppp0 > > What does point 3. above indicate? It indicates that you are connecting to the net via the Point to Point Protocol. And this is usually used with some sort of DSL. > What command line to be issued to find the current ip address assigned > by ISP (broadband)? Actually the ip address is in point 3: "inet 202.123.68.48 peer 202.123.71.254/32 scope global ppp0" This inet line tells you your ip address, 202.123.68.48 > Thanks in advance. > > B.Regards > Stephen Liu Hope That Helps Ryan __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/psyche-list
Wireless NIC
Hi everyone, I could REALLY use some help on this one. My old NIC stopped working the other day so I decided that it would be the right time to upgrade to a wireless card, so I went on over to BestBuy and bought myself a Linksys WPC11 v.4 wireless 802.11B card. Unfortunately I cannot get it to work... I would like to have it use the WEP but if it does not I guess I'll live. So I'm running a stock 8.0 install and I tried the instrructions on a cople of different sites, if someone has this card working please let know and if at all posible point me towards a nice DETAILED HOWTO on geting it running. Thanx, Ryan PS Does anyone know if the card works out of the box with 9.0? Cuz I can definately upgrade if that will work!! :-D __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/psyche-list
RE: Wireless NIC
Hi I didn't try the non WEP nor Linksys, but I got my answer from someone on the shrike list. The problem is that the card is Realtek based now not PrismII. So they gave me a link to the realtek site to d/l the drivers... They seem to work and I just have to figure out the configuration now!! YEA And I can't get that done until I get home tonight. Thanx for the reply though, Ryan --- "Quillen, Channon" <[EMAIL PROTECTED]> wrote: > Does the card work not using WEP? > Have you tried Linksys tech support? > > -Channon > > -Original Message- > From: Ryan McDougall [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 13, 2003 7:59 PM > To: RedHat 8.0 Psyche > Subject: Wireless NIC > > Hi everyone, > > I could REALLY use some help on this one. My old NIC stopped working the > other > day so I decided that it would be the right time to upgrade to a wireless > card, > so I went on over to BestBuy and bought myself a Linksys WPC11 v.4 wireless > 802.11B card. Unfortunately I cannot get it to work... I would like to have > it > use the WEP but if it does not I guess I'll live. So I'm running a stock 8.0 > install and I tried the instrructions on a cople of different sites, if > someone > has this card working please let know and if at all posible point me towards > a > nice DETAILED HOWTO on geting it running. > > Thanx, > Ryan > > PS > Does anyone know if the card works out of the box with 9.0? Cuz I can > definately upgrade if that will work!! :-D > > __ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/psyche-list > __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/psyche-list
Re: RE: Wireless NIC
The fix is downloading the drivers from the Realtek site at: http://www.realtek.com.tw/downloads/downloads1-3.aspx?Keyword=rtl8180 Give that a try... As far as the configuration goes... Not sure on that one, I have to go home and test some stuff out first. But I can bring up the wlan0 interface without errors!! Wo h! HTH, Ryan --- [EMAIL PROTECTED] wrote: > What was the fix? Configuration? > > > > From: Ryan McDougall <[EMAIL PROTECTED]> > > Date: 2003/07/14 Mon AM 10:33:46 EDT > > To: [EMAIL PROTECTED] > > Subject: RE: Wireless NIC > > > > Hi > > > > I didn't try the non WEP nor Linksys, but I got my answer from someone on > the > > shrike list. The problem is that the card is Realtek based now not PrismII. > So > > they gave me a link to the realtek site to d/l the drivers... They seem to > work > > and I just have to figure out the configuration now!! YEA And I can't > get > > that done until I get home tonight. > > > > Thanx for the reply though, > > Ryan __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/psyche-list
Orinoco Gold card
Hi all, I hope ya'll don't mind but I'm posting to both the Shrike and Psyche lists, looking for a wider range of answers/experiences. So I am DREADING the day I bought my new wireless card... It is a Linksys WPC11 v4 card apparently based on the Realtek chipset. I went on to Linksys's website and I _cannot_ find this card ANYWHERE on their site, they have the v2.5 and the v3 cards not the v4 Anyway, I now want to get a different card one that is WIDELY used and supported in RH. I was wondering specifically about the Orinoco Gold card and if people thought it was easy to setup or if it was supported out of the box. More broadly what wireless cards are people on this list using, could you give me a hint at how easy setup was and how happy you are with the card? Thanx everyone for listening and I hope to get a ton of responses so that I can get a better idea of what I should chose for my wireless card. Thanx again, Ryan __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/psyche-list
Re: Orinoco Gold card
I have not had the chance to try any of this but there seems to be a solution to my wireless nic problems. Just in case anyone has the same card, the Linksys WPC11 v4, here is where there appears to be a solution: http://www.linuxquestions.org/questions/showthread.php?s=ccedf6b405f58637058bc0236fc91572&threadid=61832&perpage=15&pagenumber=1 It's a long thread so I don't know excatly where the solution is BUT another board directed me there with great recommendations. __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/psyche-list
MySQL help
Hello everyone, Well this is my problem. I have a Psyche box that I want to use for web developement purposes. So I installed PHP and MySQL. My trouble is that I can't get MySQL to start with a user other than root. Just to make sure I have it right, after I do the install from the CDs I would go and run the mysql_install_db? But I just read a section that said if you installed via RPM then it should send everything to where it needs to be, including a startup file in the appropriate place. But if I do a ps -aux |grep mysql, I get nothing. Can some please help me as to what it is I gotta do, please? TIA __ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.yahoo.com/
Re: MySQL help
--- Kevin McConnell <[EMAIL PROTECTED]> wrote: > > /etc/rc.d/init.d/mysql start > or > service mysql start > > Be sure to change your password as soon as you fire it > up. > > > = > Kevin C. McConnell --RHCE-- > Ok so I tried the /etc/init.d/mysqld start and it almost worked it returned this error: Initializing MySQL database: Sorry, the host 'dhcp-482-2416' could not be looked up. Please configure the 'hostname' command to return a correct hostname. If you want to solve this at a later stage, restart this script with the --force option [FAILED] So what do I do to resolve this one, do I use the force option? Sorry for my ignorance and Thanx for the help. P.S. My /etc/hosts file looks like this: # Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 localhost.localdomain localhost __ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.yahoo.com
Webmin
Does anyone know if webmin comes with RH 8.0 and if it is a good utility for Admining a MySQL database? __ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.yahoo.com/
Re: PHP & Apache 2.0
Ah good question I just found this one out the other day also. It sould work if you have the php.conf in that /etc/httpd/conf.d. But I have a question about this, and it goes along with the original question of this thread. I don't see a load module line anywhere in the httpd.conf file. Is Apache doing a little bit of a new thing with the conf file? How does it know that php is there, is it in the httpd.conf file to look in the conf.d directory for modules and load them? Just curious. Thanx --- Thomas Vander Stichele <[EMAIL PROTECTED]> wrote: > Hi, > > > Hi, > > the default installation doesn't include PHP in the httpd conf > > Is there an easy way to enable it, or do I have to recompile apache and > > PHP? > > greetz > > You sure it doesn't work ? the php.conf file now lives in > /etc/httpd/conf.d > > Thomas > > -- > > The Dave/Dina Project : future TV today ! - http://davedina.apestaart.org/ > <-*- thomas (dot) apestaart (dot) org -*-> > I'll take > a quiet life a handshake > of carbon monoxide > <-*- thomas (at) apestaart (dot) org -*-> > URGent, the best radio on the Internet - 24/7 ! - http://urgent.rug.ac.be/ > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list __ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.yahoo.com/
Resolution Help
Hey everyone, My problem is this, I cannot get my resolution any higher that 800x600. The wierd thing is that I had it working in RH7.3 but after this 8.0 install it won't go bigger than 800x600. Just to give some details I have a Gateway EV700 Monitor and a NVIDIA TNT2 M64 video card installed(stock from dell). I have tried redhat-config-xfree86 and when I restart X, by using a control-alt-backspace, my monitor goes blank and then it goes to sleep like it isn't even getting a signal. I really can't stand this 800x600 resolution so if anyone can help please, I beg of you ;-). Thanx, Ryan __ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/
Re: Resolution Help
Ok so I tried to use the xf86config but that screwed things up worse than I before, I don't think I know my stuff well enough in Linux to use that tool. I did install the NVIDIA drivers and they are working but not with resolutions higher that 800x600 :-(. Thomas here are the things you wanted me to post: XF86Config: # File generated by anaconda. Section "ServerLayout" Identifier "Anaconda Configured" Screen 0 "Screen0" 0 0 InputDevice"Mouse0" "CorePointer" InputDevice"Mouse1" "SendCoreEvents" InputDevice"Keyboard0" "CoreKeyboard" EndSection Section "Files" # The location of the RGB database. Note, this is the name of the # file minus the extension (like ".txt" or ".db"). There is normally # no need to change the default. # Multiple FontPath entries are allowed (they are concatenated together) # By default, Red Hat 6.0 and later now use a font server independent of # the X server to render fonts. RgbPath "/usr/X11R6/lib/X11/rgb" FontPath "unix/:7100" EndSection Section "Module" Load "dbe" Load "extmod" Load "fbdevhw" Load "glx" Load "record" Load "freetype" Load "type1" EndSection Section "InputDevice" # Option "AutoRepeat""500 5" # when using XQUEUE, comment out the above line, and uncomment the # following line # Option "Protocol" "Xqueue" # Specify which keyboard LEDs can be user-controlled (eg, with xset(1)) # Option "Xleds" "1 2 3" # To disable the XKEYBOARD extension, uncomment XkbDisable. # Option "XkbDisable" # To customise the XKB settings to suit your keyboard, modify the # lines below (which are the defaults). For example, for a non-U.S. # keyboard, you will probably want to use: # Option "XkbModel" "pc102" # If you have a US Microsoft Natural keyboard, you can use: # Option "XkbModel" "microsoft" # # Then to change the language, change the Layout setting. # For example, a german layout can be obtained with: # Option "XkbLayout" "de" # or: # Option "XkbLayout" "de" # Option "XkbVariant""nodeadkeys" # # If you'd like to switch the positions of your capslock and # control keys, use: # Option "XkbOptions""ctrl:swapcaps" #Option "XkbOptions""" Identifier "Keyboard0" Driver "keyboard" Option "XkbRules" "xfree86" Option "XkbModel" "pc105" Option "XkbLayout" "us"#Option "XkbVariant""" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "IMPS/2" Option "Device" "/dev/psaux" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "no" EndSection Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Device" "/dev/input/mice" Option "Protocol" "IMPS/2" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName"Gateway EV700" HorizSync30.0 - 70.0 VertRefresh 50.0 - 120.0 Option "dpms" EndSection Section "Device" # no known options #BusID Identifier "NVIDIA Riva TNT2" Driver "nvidia" VendorName "NVIDIA Riva TNT2" BoardName "NVIDIA Riva TNT2" EndSection Section "Screen" Identifier "Screen0" Device "NVIDIA Riva TNT2" Monitor"Monitor0" DefaultDepth 16 SubSection "Display" Depth 16 Modes"800x600" "640x480" EndSubSection EndSection Section "DRI" Mode 0666 EndSection Xfree.0.log: XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window System (protocol Version 11, revision 0, vendor release 6600) Release Date: 23 January 2002 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (See http://www.XFree86.Org/) Build Operating System: Linux 2.4.18-11smp i686 [ELF] Build Host: daffy.perf.redhat.com Module Loader present OS Kernel: Linux version 2.4.18-14 ([EMAIL PROTECTED]) (gcc version 3.2 20020903 (Red Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50 EDT 2002 P Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/XFree86.0.log", Time: Wed Oct 30 16:15:34 2002 (==) Using config file: "/etc/X11/XF86Config" (==) ServerLayout "Anaconda Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "NVIDIA Riva TNT2" (**) |-->Input Device "Mous
Re: Resolution Help
Well I wish I had good news to report, but I don't. I tried to just add the line: Modes "1024x768" "800x600" To the config file and that did nothing, gave me the same result... blank screen then it goes to sleep. So someone from a forum suggested: Option IgnoreEDID On. Tried it, no luck. I don't understand why this is such a hard thing... This video Card and monitor worked fine in 7.3 but for some reason won't do what I want it to in 8.0. This has me quite frustrated, if I could only get this resolution thing fixed then I would be able to use this install for some web developement stuff. Any more suggestions would be greatly appreciated. The following is the output of the Xfree86.0.log: XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window System (protocol Version 11, revision 0, vendor release 6600) Release Date: 23 January 2002 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (See http://www.XFree86.Org/) Build Operating System: Linux 2.4.18-11smp i686 [ELF] Build Host: daffy.perf.redhat.com Module Loader present OS Kernel: Linux version 2.4.18-14 ([EMAIL PROTECTED]) (gcc version 3.2 20020903 (Red Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50 EDT 2002 P Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/XFree86.0.log", Time: Fri Nov 1 00:57:03 2002 (==) Using config file: "/etc/X11/XF86Config" (==) ServerLayout "Anaconda Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "NVIDIA Riva TNT2" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard0" (**) Option "XkbRules" "xfree86" (**) XKB: rules: "xfree86" (**) Option "XkbModel" "pc105" (**) XKB: model: "pc105" (**) Option "XkbLayout" "us" (**) XKB: layout: "us" (==) Keyboard: CustomKeycode disabled (**) FontPath set to "unix/:7100" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (==) ModulePath set to "/usr/X11R6/lib/modules" (--) using VT number 7 (WW) Open APM failed (/dev/apm_bios) (No such device) (II) Module ABI versions: XFree86 ANSI C Emulation: 0.1 XFree86 Video Driver: 0.5 XFree86 XInput driver : 0.3 XFree86 Server Extension : 0.1 XFree86 Font Renderer : 0.3 (II) Loader running on linux (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.0.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.2.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,1130 card , rev 02 class 06,00,00 hdr 00 (II) PCI: 00:01:0: chip 8086,1131 card , rev 02 class 06,04,00 hdr 01 (II) PCI: 00:1e:0: chip 8086,244e card , rev 01 class 06,04,00 hdr 01 (II) PCI: 00:1f:0: chip 8086,2440 card , rev 01 class 06,01,00 hdr 80 (II) PCI: 00:1f:1: chip 8086,244b card 8086,4541 rev 01 class 01,01,80 hdr 00 (II) PCI: 00:1f:2: chip 8086,2442 card 8086,4541 rev 01 class 0c,03,00 hdr 00 (II) PCI: 00:1f:3: chip 8086,2443 card 8086,4541 rev 01 class 0c,05,00 hdr 00 (II) PCI: 01:00:0: chip 10de,002d card 10de,0001 rev 15 class 03,00,00 hdr 00 (II) PCI: 02:0a:0: chip 1317,0985 card 1317,0574 rev 11 class 02,00,00 hdr 00 (II) PCI: 02:0c:0: chip 1274,1371 card 1274,1371 rev 09 class 04,01,00 hdr 00 (II) PCI: 02:0d:0: chip 14f1,1036 card 13e0,0209 rev 08 class 07,80,00 hdr 00 (II) PCI: End of PCI scan (II) LoadModule: "scanpci" (II) Loading /usr/X11R6/lib/modules/libscanpci.a (II) Module scanpci: vendor="The XFree86 Project" compiled for 4.2.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) UnloadModule: "scanpci" (II) Unloading /usr/X11R6/lib/modules/libscanpci.a (II) Host-to-PCI bridge: (II) PCI-to-ISA bridge: (II) PCI-to-PCI bridge: (II) PCI-to-PCI bridge: (II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus 0 I/O range: [0] -1 0x - 0x (0x1) IX[B] (II) Bus 0 non-prefetchable memory range: [0] -1 0x - 0x (0x0) MX[B] (II) Bus 0 prefetchable memory range: [0] -1 0x - 0x (0x0) MX[B] (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x08 (VGA_EN is set) (II) Bus 1 I/O range: (II) Bus 1 non-prefetchable memory range:
Re: Resolution Help
Well that did it, although I did use a different ModeLine, but it worked like a charm once I got it typed(copied) in their correctly. Oh thank you so much for your help you rock!!! All of you rock for your help on this situation!! I don't suppose you know what the break down of the ModeLine is do you what each section means, I mean one part is in quotations and the rest isn't. Oh well not too big of a deal just curious. Oh by the way I used the line: ModeLine "1024x768" 65.0 1024 1048 1184 1344768 771 777 806 -hsync -vsync I think I'm going to try a little higher refresh rate kind a hurting my eyes at 65. Thanx so much, Ryan __ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/
Re: Resolution Help
Wow nice little utility... My monitor though supports "User Settings" so it remembers positions and things for different user settings. But I wish I knew about xvidtune on an older system I had. > Try xvidtune. Play around, and then click 'show' to print to stdout the > line that can be used as a modeline in XF86Config. This is useful if > you have to move your display left/right everytime you change from > windows to linux on the same machine. > > -- > Iain Buchanan <[EMAIL PROTECTED]> > If you notice that a person is deceiving you, they must not be > deceiving you very well. > > ATTACHMENT part 2 application/pgp-signature name=signature.asc __ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/
Re: remote desktop
If you have a terminal all you need to do is issue the command to startup your favorite window manager (i.e. startkde). Because X should already be running on the host box so now running the window manager is just like getting any other X app to display. No need to mess with VNC if you already have X forwarding to your machine. HTH, Ryan --- Pierre Lamb <[EMAIL PROTECTED]> wrote: > What are the steps required to get the desktop display on a remote screen. I > have setup ssh with X11 tunneling, I can get x apps to display but would like > to get the desktop to display also > > > - > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now __ Do you Yahoo!? Yahoo! Mail Plus Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Starting MySQL and Apache at boot time
Hello everyone, I just want to make sure if I have this correctly. To start these 2 up at boot time I can just rename the script in /etc/rc.d/rc#.d/K##mysql to S##mysql correct? If not please let me know how to do this... Oh yeah I only have a CLI no X on this beast!! Oh yeah and which rc#.d folder would I make the change in? If there is a CLI config tool for this could someone please let me know. TIA __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Starting MySQL and Apache at boot time
Thanx guys for the speedy response, corrections and the pointers to read up on this stuff thanx!! __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
USB Cable Modem
Hello all, I had one of my boxes using the USB connection from my Cable modem and everything was running pretty good, until I had to switch to the CLI (not a terminal... no X). For some reason some sort of output was being thrown to the screen something about Sockets... The reason I don't remember is because I of course switched to the normal CAT5 connection, no more errors... well I am working on a little server, an old laptop that I want to be a web/DB sever and a router, but I will of course need 2 network connections. I have a 3Com network card that works great but I want to use the USB connection from my cable modem to my laptop w/out these messages appearing on the screen. Has anyone else had this experience, did you fix it, if so how? Thanx, Ryan McDougall __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Getting eth0 to work
Hello everyone, I just got a Netgear MR314 Router. I am trying to get my RH8.0 system into the loop but can't seem to get it working. I only have the CLI to work with so no GUI tool can help :( (Starting to think I should have installed X and KDE). I have tried doing a ifconfig eth0 up, it brings the interface up but it isn't configured from the DHCP server that the router is using. I also tried ifup eth0 but that told me that there was no configuration for my eth0 hardware in /sbin/ifup. My Windows machine works fine but I can't get my RH8.0 working with it. If you could please help that would be amazing. TIA __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Getting eth0 to work - addendum
Sorry everyone... I forgot to mention too that eth0 isn't being started at boot time... any help on that would be greatly appreciated also! __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Getting eth0 to work
I can't run redhat-config-x whenever I try to invoke those commands I get an error saying: RuntimeError: could not open display I don't have X or any graphical user interface just the command line interface. Also how would I get the DNS servers in the /etc/resolv.conf? Ryan --- Tuan Hoang <[EMAIL PROTECTED]> wrote: > Make sure you run "redhat-config-network" and configure the device for > DHCP. It shouldn't make a difference whether eth0 is brought up at > boot or not. Also make sure you get DNS servers in /etc/resolv.conf after > you successfully bring up eth0. > > Tuan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Getting eth0 to work
Can I just make that ifcfg-eth0 file? because I don't have that on my system. I also recieved these errors wheh I ran dhclient eth0: No DHCPOFFERS received. No working leases in persistant database - sleeping /sbin/dhclient-script: configuration for eth0 not found. Thanx for all the help so far... I feel we are colse to resolving this --- "Mr. Adam ALLEN" <[EMAIL PROTECTED]> wrote: > [root@jellybelly networking]# more /etc/sysconfig/network-scripts/ifcfg-eth0 > DEVICE=eth0 > BOOTPROTO=none > ONBOOT=yes > USERCTL=no > PEERDNS=no > TYPE=Ethernet > > I'm guessing that your configuration looks like above, simply run > > dhclient eth0 > > This should manually invoke to DHCP for the interface. > > Changing BOOTPROTO to "dhcp" and PEERDNS to "yes" should do the trick > for subsequent reboots. > > > > -- > NAME: Adam Allen. > EMAIL : [EMAIL PROTECTED] > > COMMENT : insert your favourite signature comment here > > PGP : > http://search.keyserver.net:11371/pks/lookup?op=vindex&search=adam%40dynamicinteraction.co.uk > > > ATTACHMENT part 2 application/pgp-signature name=signature.asc __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Getting eth0 to work
Hello that did the trick... I just made the file ifcfg-eth0 with the stuff from before and ran ifup eth0 and it worked. I have the NETWORKING and HOSTNAME portion in the network file but I do not have a GATEWAY line, is it crucial? If it is is the address just that of the router? And I want to change the hostname of the PC but I don't know ALL of the files that need to be changed... I know there is a hosts file and then it would seem that this network file would also need to be changed because of the HOSTNAME entry, am I correct or wrong? Thank you all for your help in diagnosing my problem!! --- Michael Weber <[EMAIL PROTECTED]> wrote: > The lack of the ifcfg-eth0 file is the problem. Copy the stuff from > below, run ifup eth0 and it should come up. > > You may need to also check the /etc/sysconfig/network settings for > something sane. > > NETWORKING=yes > HOSTNAME=system.domain.com > GATEWAY=11.22.33.44 > > -Michael __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Hostname help
Hello everyone, I know that this is a pretty basic issue and I may be making too much of it, but I was wondering about setting my hostname, especially with the hostname command (I figure that sets whatever needs to be set, but if not please let me know if there is another CLI command/program to do it). Let me give you some background before I delve into my questions. I have 2 computers behind a Netgear MR314 router, the 2 pcs can talk to each other... I can ssh into my RH8.0 box but I cannot see my webpage, because it did not start due to fully qualified domain issues. My specific questions are about the fully qualified name, how to set it behind this firewall and which files need to be edited? I have dhcp so how do I but a line in the /etc/hosts file? Please be patient with my lack of knowledge on this, I am hoping you all might be able to help me out with that. TIA, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: Hostname help
Thank you sosososososo much for replying... Like I said before please excuse my stupidity on this one... But don't I need to own the domain foo.com, or is it because I'm behind this router that it is safe to do whatever I want? TIA --- James Francis <[EMAIL PROTECTED]> wrote: > Simply edit /etc/sysconfig/network file. Change the HOSTNAME= line to your > FQDN. e.g. HOSTNAME=foobar.foo.com, foo.com is your domain and foobar is > your hostname. Also, change your the hosts file to also reflect the FQDN. > With DHCP, you will need to put the IP address in there that is dynamically > assigned to you. Another alternative is to specify your ServerName in > /etc/httpd/conf/httpd.conf, but I prefer changing your hostname via the > network file. After the change, reboot, do a hostname, and you should see > the FQDN you set it too. > > JMF __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: Hostname help
Yeah I have RoadRunner in NC and they dynamically assign me my hostname... Doesn't that suck? So I can't even *really* use that because it changes with the ip something like clt168-XXX.carolina.rr.com... Something like that anyway, oh well! Thank you guys for the help I'm gonna do the hostname stuff right now!! Thanx for the help --- James Francis <[EMAIL PROTECTED]> wrote: > Michael is right. I made an assumption you had a domain already. > hostname.localdomain would work. You could use anything you want for the > hostname part in that example. Your ISP may also assign a hostname for you > which you could use. AT&T assigned some goofy hostname (can't remember what > it was) to me originally, which I was able to use as .attbi.com. > > JMF __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: Hostname help
Alright guys I hate to bring this up again so soon but I have some more questions and issues I would greatly appreciate help with. This is what my /etc/sysconfig/network file says: NETWORKING=yes HOSTNAME=thalia.lan.home my /etc/hosts file contains the following: # Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 localhost.localdomain localhost 192.168.0.3 thalia.lan.home thalia localhost 192.168.0.2 izanseth.lan.home izanseth But I am still unable to use my linux pc name from my Windows box to communicate to my linux box. My router still doesn't even recognise my hostname from my linux box either... I have sent them an e-amil to see if they can help. Keep you fingers crossed!!! __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re:Hostname help
Yes I can ping the linux box from the windows box, I cannot however ping my windows box from my linux box but I think that is because of my Norton Firewall running on it... I tried to enter the hosts in the lmhosts file but the examples weren't too good so I don't know if they are close to right or not, but it didn't work... So I will just assume they are wrong. Here is what is in my lmhosts.sam file minus all of the comments: 192.168.0.3 thalia #PRE#DOM:lan.home 192.168.0.2 izanseth #PRE#DOM:lan.home Thanx, Ryan --- Tomas Larsson <[EMAIL PROTECTED]> wrote: > Can you ping the Linux box from Win with IP. > Make sure that you enter all hosts in LMHOSTS file in Win. > > With best regards > > Tomas Larsson > > Verus amicus est tamquam alter idem > > > All messages originating from me are scanned with the latest updates of > Norton Antivirus 2K2. > > > -Ursprungligt meddelande----- > > Fran: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]For Ryan McDougall > > Skickat: den 13 december 2002 08:07 > > Till: [EMAIL PROTECTED] > > Amne: RE: Hostname help > > > > > > Alright guys I hate to bring this up again so soon but I have some more > > questions and issues I would greatly appreciate help with. This is what my > > /etc/sysconfig/network file says: > > NETWORKING=yes > > HOSTNAME=thalia.lan.home > > > > my /etc/hosts file contains the following: > > # Do not remove the following line, or various programs > > # that require network functionality will fail. > > 127.0.0.1 localhost.localdomain localhost > > 192.168.0.3 thalia.lan.home thalia localhost > > 192.168.0.2 izanseth.lan.home izanseth > > > > But I am still unable to use my linux pc name from my Windows box to > > communicate to my linux box. My router still doesn't even > > recognise my hostname > > from my linux box either... I have sent them an e-amil to see if > > they can help. > > Keep you fingers crossed!!! > > > > __ > > Do you Yahoo!? > > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > > http://mailplus.yahoo.com > > > > > > > > -- > > Psyche-list mailing list > > [EMAIL PROTECTED] > > https://listman.redhat.com/mailman/listinfo/psyche-list > > > > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
RE: Hostname help
--- Craig White <[EMAIL PROTECTED]> wrote: > huh? > > what router? I just got a Netgear MR314 Cable/DSL router for an early X-mas gift. > who them? > most importantly, what are you trying to do that you can't do? > Communicate? I'm sure you can communicate...did you try ping? Your right I can communicate I can ping and SSH and get the webpage using ip addresses but hostnames will not work from my windows box to my linux box. I just tried and I can ping windows from linux using hostname.. but thats probably because I have my hostname config down pretty solid in linux by now, and I turned my firewall off in windows. Thanx again, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Installing other features
Hello everyone, I have decided that my laptop needs to have X on it and I would like to run enlightenment as my WM... anyway... I was wondering if there is an easy way to install XFree86 and all the dependancies from the install CDs... Like running the install program to select which packages I need installed? If there isn't how do I search which rpms are on the CDs? Do I have to basically ls and grep the RPM directory on the CDs? TIA, Ryan __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Chkconfig priority levels
Hello all, I am trying to make a script to start Folding@homes linux client. But when I ran: $ chkconfig --add folding It told me that my script didn't support chkconfig... So I read the man page for chkconfig --add and my specific question is... What are my choices for priority levels and what do they mean? And/or where can I get info on my options for chkconfig priority levels? TIA __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Chkconfig priority levels
WOW Thank you so much for the reply, and man is that easy! All that I can say is thanx! Ryan --- "Taylor, ForrestX" <[EMAIL PROTECTED]> wrote: > Take for example, /etc/init.d/apmd. Line three is: > > # chkconfig: 2345 26 74 > > This tells chkconfig that it should start in runlevels 2-5 and it should > start at number 26, and shutdown at number 74. These are arbitrary > numbers, that allow you to start and stop service before/after other > services. E.g., if you needed an internet connection to start your > program, it should start up after network (10) and it should end before > network (90). Other than that, you can decide where it should start and > stop. > You should also take a look at rc5.d or rc3.d (depending on the runlevel > you normally run in) to see a list of start/stop numbers for each > service. The K at the beginning is the stop order, and the S is the > start order. Thus S10network means that the network script starts in > position 10. > > Forrest > -- > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list
Re: Chkconfig priority levels
So do you think that 99 would be a good start and stop number? I think a lot of people from a forum I go to use those start and stop numbers for anything that they the user make up. Are there any general rules of thumb that people "follow", seeing as how they are arbitrary? > --- "Taylor, ForrestX" <[EMAIL PROTECTED]> wrote: > > Take for example, /etc/init.d/apmd. Line three is: > > > > # chkconfig: 2345 26 74 > > > > This tells chkconfig that it should start in runlevels 2-5 and it should > > start at number 26, and shutdown at number 74. These are arbitrary > > numbers, that allow you to start and stop service before/after other > > services. E.g., if you needed an internet connection to start your > > program, it should start up after network (10) and it should end before > > network (90). Other than that, you can decide where it should start and > > stop. > > You should also take a look at rc5.d or rc3.d (depending on the runlevel > > you normally run in) to see a list of start/stop numbers for each > > service. The K at the beginning is the stop order, and the S is the > > start order. Thus S10network means that the network script starts in > > position 10. > > > > Forrest > > -- > > > > > > > > -- > > Psyche-list mailing list > > [EMAIL PROTECTED] > > https://listman.redhat.com/mailman/listinfo/psyche-list > > > __ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > > > > -- > Psyche-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/psyche-list __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- Psyche-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/psyche-list