RE: php on RH8 -- make better code not war.
While this is more of a PHP suggestion than RH or linux specific, just noticed you might change your code in the future to be more efficient... $db = mysql_connect ("localhost","user","pass") or die ("Could not connect to mySQL server."); mysql_select_db ("mymaindb",$db) or die ("Could not select Database"); $result = mysql_query("SELECT * FROM theTable",$db); if (!$result) $errorString .= "Error :: ".mysql_errno($db)." :: ".mysql_error($db)."".$sql."\n"; if (mysql_num_rows($result) > 0 )$row = mysql_fetch_assoc($result); Then all your fields from "theTable" will be in $row['name'], $row['age'], etc... (if you had results, otherwise you'll get errors) mysql_result() is old and IMHO depricated. http://us2.php.net/manual/en/function.mysql-result.php Use this instead. You'll keep more of your hair, and look cool to all the other kids. http://us2.php.net/manual/en/function.mysql-fetch-assoc.php Another handy dandy trick is this, bequethed upon me by Rasmus himself... while(list($myVariableName,$sqlFieldName)=each($row)) { $$myVariableName = $sqlFieldName; } Now all your fieldnames are in a variable of the same name ;-) Like $name, $age, etc... Daevid Vincent http://daevid.com > -Original Message- > test code: > > #!/usr/local/bin/php > $db = mysql_connect(localhost, "user", "pass"); > mysql_select_db("mymaindb",$db); > $result = mysql_query("SELECT * FROM theTable",$db); > printf("l1: %s\n", mysql_result($result,0,"some_column")); > ?> -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: php on RH8
Well, you could try this: # rpm -ihv php-4.2.2-17.i386.rpm --force --nodeps Daevid Vincent http://daevid.com > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Kalin Mintchev > Sent: Friday, September 12, 2003 11:45 PM > To: Red Hat Mailing List > Subject: Re: php on RH8 > > > On 12 Sep 2003, Jason Dixon wrote: > > > On Fri, 2003-09-12 at 18:25, Kalin Mintchev wrote: > > > > > > > > > > Redhat cannot always provide the latest RPM for every > software included in its > > > > > distro. > > > > > > php 4.3.0 is 6 months old > > > > If you're really as hard up as you claim you are, you have > one option. > > Download the source rpm, build the rpm from Red Hat's spec. > > > > > ftp://mirror.cs.wisc.edu/pub/mirrors/linux/redhat/rawhide/SRPM S/SRPMS/php-4.3.3-2.src.rpm > sudo rpmbuild --rebuild php-4.3.3-2.src.rpm > sudo rpm -ivh /usr/src/redhat/RPMS/i386/php* i got the rpm from tedhat. i get this: # rpm -ihv php-4.2.2-17.i386.rpm --force error: Failed dependencies: libcrypto.so.4 is needed by php-4.2.2-17 libssl.so.4 is needed by php-4.2.2-17 my openssl is newer then these > > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: Watching TV in Windows as a client in VMWare
Doubtful. Vmware is a software emulation of most of your hardware. It installs it's own virtual video driver, virtual ethernet card, virtual soundcard, etc. specialized hardware like a TV Tuner would not generally be supported in such an environment. Daevid Vincent http://daevid.com > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] > Sent: Friday, September 12, 2003 11:14 AM > To: [EMAIL PROTECTED] > Subject: Watching TV in Windows as a client in VMWare > > > Is it possible to access a TV card in Windows installed > in a virtual machine in VMWare Workstation running in > Linux? > > Regards, > > Romildo > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
ps aux | grep VS. ps ax | grep ?!
Could someone explain to me why I get a different result (actually technically no results) when using "ps aux" piped to grep, but "ps ax" works exactly as it should? Why does the "u" switch hose grep? [EMAIL PROTECTED] ps ax | grep "nessus" 577 ?S 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24098 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24220 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24512 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24618 ?SN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24759 ?SN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24763 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24812 ?SN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 24910 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 25032 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 25093 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 25372 ?RN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 25374 ?SN 0:00 /usr/local/sbin/nessusd -D -a 127.0.0.1 26042 ?RN 0:04 /usr/local/sbin/nessusd -D -a 127.0.0.1 26520 pts/0S 0:00 grep nessus [EMAIL PROTECTED] ps aux | grep "nessus" root 26542 0.0 0.1 1472 460 pts/0S18:47 0:00 grep nessus Daevid Vincent http://daevid.com -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: Using VM Ware to create a Windows VM on a Linux server.
No, you don't modify your partitions or anything. You just run vmware, start a new VM, and then you basically have a 'new machine' in which to install what you want. I believe you have to allocate a certain amount of space for the 'virtual drive', just like you allocate RAM and which hardware to give the VM. One really slick thing you can do on a dual boot machine, is assign the raw partions to the VM. So on my notebook, I can use winxp to run my RH8 dual boot partition in a VM, say, to get web/php/mysql while I develop on my Homesite IDE. Then later I can boot into linux for real, and everything is all there and works the same. It's incredibly sexy. > Actually, I am not thinking I need a filesystem for VMWare. > I just wasn't > sure whether the Windows Workstation VM would have to reside > on a specific > filesystem. My goal is to have a couple of Windows VMs with > which to test > connectivity to my apps and database. I thought that I would > need to create > an fs "winxp" of size "Mb" and mount it. Then when I > create my VM, I > would create it on that fs. If I am in error, please let me > know before I > get too far and can't come back. > Thanks! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
FW: RedHat8 and hostap vs wvlan-ng -- help needed
What is the better driver to install on RedHat 8 for an Engenius 200mW PCMCIA card on my notebook. This will be used for general online use and kismet(etc.) Which one is most supported, most stable, easiest to configure? Honestly, I've tried both and had limited success with each, but then again, I'm no WiFi expert and a friend helped me do the HostAP, but it never worked to get online or for kismet. Currently, I've got the wvlan-ng drivers installed and while I can get Kismet to work and detect nodes, I can't get online (either with or without WEP)?! I don't know what I'm doing wrong. There are certainly some 'warnings' that the modules pop about symbols and versions and such. And there are a million config files it seems. *sigh* I'm thinking of just gutting my kernel RPM tree and starting over with a fresh RPM install. I really want this working before DEFCON which is august 1-3rd. Is there a kind soul out there who would be willing to sit down with me and get this working? I could buy you lunch/dinner or mebbe I have some piece of gear I could trade you? But I really do need some help VERY soon. I'm looking for a solution that will grow with my system, not just a quick and dirty hack. I want it so that when a new version of the wvlan-ng or hostap driver comes out, I will know enough about what we did that I could reasonably upgrade. I don't think that's too much. I'm not a novice at all FWTW. I'm in the Seattle area. http://daevid.com 425.985.1752 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: RHN...worth it or not (and reverting from RH9 to RH8)
Count this as a third. I gladly pay the measly $60 for my RHN account on each box I have. I think RedHat does an excellent job and I want them to be around. They're my distribution of choice. Unrelated, but related still in a way... I have to say that I upgraded to RH9, but after spending days trying to get my system back to my RH8 state with all the extras I just said fsckit and ghosted my image back to RH8. This is no fault of RedHat per say, but I just think there is more support out there for RH8 rpms and finding RH9 rpms was getting to be tiresome. I think I'll wait a generation till RHX. In the past couple weeks, I had an epiphany that it's better to have a system that is solid and works and I can be productive, than trying to always be on the bleeding edge... VMWare was the 'killer ap' that I needed to work for me. I just couldn't seem to get the networking working in RH9 as seemlessly as it did with RH8, and as a php/mysql/web developer, I need to have VMWare running on my notebook (connected to the raw partition dual boot!) so I can code pages in Homesite but seem the really work. That is by far the absolute slickest thing ever... Daevid Vincent http://daevid.com -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: RH9 home networking
I strongly suggest looking into "shorewall" as a "front end" for iptables. Makes life hell of a lot easier. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Steve Howard > Sent: Friday, July 04, 2003 8:13 AM > To: [EMAIL PROTECTED] > Subject: Re: RH9 home networking > > > Yes, why are you all making this so difficult? > > I use my machine exactly as you want to set up yours. > It is a RH9 machine that is > Firewall/Gateway/WebServer/FTPServer for my home network. The > Internet connection sharing is done with iptables forwarding > and masquerading packets. > > First you need to make sure that your network is setup > properly. Login as root. Edit the /etc/hosts file and make > sure that it contains information about any hosts that you > want on your network. You can "man hosts" to find out about > this file. Then edit the /etc/network file to show some of > the following if they apply: GATEWAYDEV=eth0, > HOSTNAME=hostname.whatever.whatever, > DOMAINNAME=whatever.whatever. Enable packet forwarding by > editing the /etc/sysctl.conf file, set net.ipv4.ip_forward > =1. Then add four rules to iptables by issuing the following > commands as root (You may want to make a copy of > /etc/sysconfig/iptables first.) > > /sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE > > /sbin/iptables -A FORWARD -s 192.168.1.0/24 -j ACCEPT > > /sbin/iptables -A FORWARD -d 192.168.1.0/24 -j ACCEPT > > /sbin/iptables -A FORWARD -s ! 192.168.1.0/24 -j DROP > > This is assuming that your Internet connection is at eth0 and > your private network is 192.168.1. > > Save the rules after you make sure they work by issuing > /sbin/iptables-save > /etc/sysconfig/iptables > > Now you can go to each machine on your private net and set > static IPs to the values you listed for them in the > /etc/hosts file and their gateway will be the static IP that > you gave eth1. You could set it up as a proxie and use DHCP > to set your networked machines IPs but that would be a > different e-mail. Bada Bing shared Internet connection > > To do it right it helps to have a good book. I recommend the > Redhat Bible (Negus), I don't know if the 9 version is out > yet, I'm still using the 8 version. > > If you want to set it up by clicking in a check box, get windows. > > PS. I'm sure that I left out alot, do the same as I did, buy > a book (I have five big fat Linux books). You will not ever > get everything you need to know from this list(or get windoze). > > Steve > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: RH 8 iso's: updated?
I don't believe they/RedHat updates the .iso Having said that, you simply install, then (before you do anything!) run the 'up2date' applet and it will download like 200MB of update rpms and install them for you. Pretty painless, just takes time and bandwidth. You could always go Shrike (RH9)... d > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of mark > Sent: Wednesday, July 02, 2003 10:03 AM > To: [EMAIL PROTECTED] > Subject: RH 8 iso's: updated? > > > I may finally be pushed to go to 8.0 from 7.3 (many updates), > to get a > consistant and stable system (esp. in X) > > Is anyone aware of a source of iso's of RH 8 that have at > least some months > of updates; that is, that is not as it was released last fall? > > mark > -- > "I don't want to see a single war millionaire created in the > United States > as a result of this world disaster," Franklin D. Roosevelt > warned as WWII > loomed. > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Host_ap and wlan0 not fully working...
I'm having issues with one last remaining issue with my 100mW NL2011CD PLUS EXT2 card (basically the EnGenius/Senao/Intersil one). I can't get it to "work" for getting online, however it does work fine with "kismet" and also "wavemon". I've searched google and found a few other references to this, but no solution was posted. Anyone have ideas? This is with RedHat 9 (shrike) from fresh install. [EMAIL PROTECTED] X11]# ifup wlan0 Error for wireless request "Set ESSID" (8B1A) : SET failed on device wlan0 ; Invalid argument. [EMAIL PROTECTED] X11]# ifconfig wlan0 wlan0 Link encap:Ethernet HWaddr 00:02:6F:01:B9:AF UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:10 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:100 RX bytes:0 (0.0 b) TX bytes:3720 (3.6 Kb) Interrupt:3 Base address:0x100 [EMAIL PROTECTED] X11]# iwconfig wlan0 IEEE 802.11b ESSID:"test" Mode:Master Frequency:2.422GHz Access Point: 00:02:6F:01:B9:AF Bit Rate:11Mb/s Tx-Power:3 dBm Sensitivity=1/3 Retry min limit:8 RTS thr:off Fragment thr:off Encryption key:off Power Management:off Link Quality:0 Signal level:0 Noise level:0 Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0 dmesg outputs: hostap_crypt: registered algorithm 'NULL' hostap_cs: 0.0.3 - 2003-05-18 (Jouni Malinen <[EMAIL PROTECTED]>) hostap_cs: setting Vcc=33 (constant) hostap_cs: CS_EVENT_CARD_INSERTION prism2_config() hostap_cs: setting Vcc=33 (from config) Checking CFTABLE_ENTRY 0x01 (default 0x01) IO window settings: cfg->io.nwin=1 dflt.io.nwin=1 io->flags = 0x0046, io.base=0x, len=64 hostap_cs: index 0x01: Vcc 3.3, irq 3, io 0x0100-0x013f divert: allocating divert_blk for wlan0 hostap_cs: Registered netdevice wlan0 prism2_hw_init() prism2_hw_init: initialized in 9194 iterations wlan0: NIC: id=0x8003 v1.0.0 wlan0: PRI: id=0x15 v0.3.0 wlan0: STA: id=0x1f v1.3.4 wlan0: defaulting to host-based encryption as a workaround for firmware bug in Host AP mode WEP wlan0: defaulting to bogus WDS frame as a workaround for firmware bug in Host AP mode WDS wlan0: Host AP mode does not support 'Any' essid wlan0: prism2_open wlan0 unsupported ioctl(0x8947) -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: [OT] phpGroupware
Did you even attempt to try google? It is the first entry! http://www.google.com/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=twiggi Or how about: http://twiggi.sourceforge.net/ *sigh* > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Zoki > Sent: Sunday, June 29, 2003 11:44 PM > To: rhlist > Subject: Re: [OT] phpGroupware > > > Le 28/06/2003 19:57, « Thomas E. Dukes » <[EMAIL PROTECTED]> a écrit : > > > > > Don't have a clue what this is. I have twiggi and > squirrelmail working > > but I can't seem to figure this one out. > > > *** What's twiggi? > > -- > Cheers, > Zoran. > > "Home is where you hang your @" > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: Apache RPMs?
> I don't like the way they changed the structure of the > httpd.conf file. Takes too long to get used to. :-p Yeah, but having the .conf files just dropped in a directory is pretty sexy... -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: Was it an "upgrade" or "install (fresh)?
I am doing this right now on my Dell i8200 I was fine with RH8. then I upgraded over it to RH9 and ran into "issues" with stuff not working right and all that -- especially my WiFi (Prism) card. I formatted and installed fresh RH9. Now I'm spending more time than I should re-configuring and tracking down rpms for things I use (that SHOULD be included damnit!) like: Gkrellm & extras I8ktools NTFS module Prism WiFi card support (hostap) Xine & extras Xmms - mp3 version Ximian Evolution Bluefish Opera mySQL v4 phpMyAdmin ...to name a few. I still can't figure out how to get my touchpad/mouse-stick and USB optical mouse to all work. I copied my XF86Config file from RH8 (where it worked fine) and run it with RH9, but no love :( *sigh* > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Jefferson Smith > Sent: Thursday, June 26, 2003 7:54 AM > To: [EMAIL PROTECTED] > Subject: Re: Was it an "upgrade" or "install (fresh)? > > > My experience is that the more you have "changed" from the > default install > of previous version, the more problems you will have when you > "upgrade". I > also had more trouble when I upgrade if I skip versions, i.e. > 6.2 upgraded > to 9 (does that even work?). The problem is how hard it is > for scripts to > automatically import your old configuration to work on the > newer version of > the software. Even more magic needed if the available > features are so > different, or the way they are saved. Since "install" means delete > everything old and start over, you get everything set up the way the > distributor got it to work. The problem is, I spend much time > getting things > configured again the way I need them. > --jeffs > > >Was it an "upgrade" or "install (fresh)? > > > >I "upgraded," from RH8 to RH9 by selecting "upgrade" on the RH9 disc. > >(as opposed to fresh "install"). After system lock-ups, not > being able > >to recover from 'screensaver mode', and other mayhem, > decided on a fresh > >"install." > > > >Result: Red Hat utopia. > > > >Of course, I might have misunderstand your use of the word > 'upgrade.' - > >but that isn't the point. > > > >What has everyone else found; upgrade v. fresh install? > > > > >[EMAIL PROTECTED] wrote: > > > > > >Subject: Upgraded RH8.0 to RH9.0 > > >... > > >"I just upgraded my IBM Laptop, ThinkPad T22, to RedHat > 9.0 from RH8.0 > >and now the system is extremely unstable...(sic)" > > _ > Add photos to your messages with MSN 8. Get 2 months FREE*. > http://join.msn.com/?page=features/featuredemail > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
What is the difference between kernel-sources....rpm and kernel...src.rpm?
Can someone tell me what the difference is between "kernel-sources-2.4.20-19.9.rpm" and "kernel-2.4.20-19.9.src.rpm". The .src. File is like 35MB! The -sources- file is 39MB. How come the .src. File doesn't show up in a "rpm -qa | grep kernel" command and how can I uninstall it now that I've installed it? It would make sense to me that the .src. File is the source code to the kernel, but I don't see anything in /usr/src/linux until AFTER I install the "kernel-sources" file. I don't get it. http://daevid.com -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: How come I'm missing entries from the dhcpd.leases file?
Steve, thanks for the reply, however I don't think your suggestion is working for me either :( http://daevid.com/examples/dhcp/ shows the TiVos and ReplayTV for example, and there is no start/end lease time for them. Am I using the command right and in the right place? I thought the 'top' stuff was global. Do I need to use 'option' in front of it? Here is my /etc/dhcpd.conf file (and I did restart dhcpd of course): --dhcpd.conf-- [EMAIL PROTECTED] etc]# cat dhcpd.conf # $OpenBSD: dhcpd.conf,v 1.1 1998/08/19 04:25:45 form Exp $ # # DHCP server options. # See dhcpd.conf(5) and dhcpd(8) for more information. # # Network: 192.168.1.0/255.255.255.0 # Domain name: my.domain # Name servers: 192.168.1.3 and 192.168.1.5 # Default router: 192.168.1.1 # Addresses:192.168.1.32 - 192.168.1.127 # # shared-network LOCAL-NET { ddns-update-style interim; option domain-name-servers 204.127.198.4, 63.240.76.4, 206.191.191.1, 216.254.21.212; max-lease-time 600; default-lease-time 600; update-static-leases on; subnet 192.168.1.0 netmask 255.255.255.0 { option routers 192.168.1.1; range 192.168.1.2 192.168.1.20; option domain-name "daevid.com"; option netbios-name-servers 192.168.1.1; } subnet 10.10.10.0 netmask 255.255.255.0 { option routers 10.10.10.1; range 10.10.10.1 10.10.10.30; option domain-name "wireless.daevid.com"; option netbios-name-servers 10.10.10.1; } host tivo.daevid.com { hardware ethernet 00:0B:AD:08:38:C3; # TiVo Turbo-Net MAC fixed-address 192.168.1.19; # bind this card to this IP always } host tivo2.daevid.com { hardware ethernet 00:0B:AD:31:AA:A6; # TiVo Turbo-Net MAC fixed-address 192.168.1.18; # bind this card to this IP always } host replay.daevid.com { hardware ethernet 00:80:45:31:D8:29; # ReplayTV MAC fixed-address 192.168.1.3; # bind this card to this IP always } host orinoco.daevid.com { hardware ethernet 00:02:2D:3C:7C:FB; # Orinoco Gold MAC fixed-address 10.10.10.69; # bind this card to this IP always } host prizm.daevid.com { hardware ethernet 00:02:6F:01:B9:AF; # EnGenius Prizm MAC fixed-address 10.10.10.70; # bind this card to this IP always } host cisco.daevid.com { hardware ethernet 00:07:EB:31:87:4E; # Cisco Airnet 350 MAC fixed-address 10.10.10.71; # bind this card to this IP always } # this is legacy stuff eric said i need. subnet 12.0.0.0 netmask 255.0.0.0 { } --dhcpd.conf-- > > Okay, my dhcp client web page is pretty much done... > > http://daevid.com/examples/dhcp/ > > The .tgz file is linked at the bottom if you want it. > > > > What I don't understand is why my dhcpd.leases file doesn't > > have an entry for my notebook (10.10.10.69) yet I specifically > > put this entry in /etc/dhcpd.conf > > > > host orinoco.daevid.com { > >hardware ethernet 00:02:2D:3C:7C:FB; > >fixed-address 10.10.10.69; > > } > > > > So I do get assigned the IP and everything works from a > > network standpoint, but why doesn't the > > /var/lib/dhcp/dhcpd.leases file have an entry that should > > look something like: > > [snip...] > > Try adding: "update-static-leases" to your dhcpd.conf file. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
How come I'm missing entries from the dhcpd.leases file?
Okay, my dhcp client web page is pretty much done... http://daevid.com/examples/dhcp/ The .tgz file is linked at the bottom if you want it. What I don't understand is why my dhcpd.leases file doesn't have an entry for my notebook (10.10.10.69) yet I specifically put this entry in /etc/dhcpd.conf host orinoco.daevid.com { hardware ethernet 00:02:2D:3C:7C:FB; fixed-address 10.10.10.69; } So I do get assigned the IP and everything works from a network standpoint, but why doesn't the /var/lib/dhcp/dhcpd.leases file have an entry that should look something like: lease 10.10.10.69 { starts 1 2003/06/23 08:40:11; ends 1 2003/06/23 08:50:11; binding state active; next binding state free; hardware ethernet 00:02:2D:3C:7C:FB; client-hostname "locutus"; } Yet I don't. :( In fact, it seems that ANY devices that I assign an IP using the MAC (such as TiVo, Replay, other servers), don't have entries in the dhcpd.leases file?! Why is that? Is this a bug or by design? I'm running a RedHat 8.0 system with the following RPMs: dhcpcd-1.3.22pl1-7 dhcp-3.0pl1-26 This was also an extreme amount of work just to simply see the active leases and 'client-hostname' associated with an IP/MAC?! Seems to me there should have been a tool included with dhcpd that does this at the command line. *sigh* -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: extending iptables
http://www.shorewall.net/ Excellent package. Makes setting and administering iptables a million times simpler... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Mohammed Awad > Sent: Friday, June 20, 2003 12:58 PM > To: [EMAIL PROTECTED] > Subject: extending iptables > > > Hi all, > If I need to add a new match type to iptables, should I only > add it into the kernel or also I have to use the userspace > tool to add the new match through the shared libraries? > Mohammad -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: how to make konqueror faster
People generally say Opera is fast. I use lynx myself for most of the quick stuff like grabbing a file or something. If you just load your browser however and leave it, spawning new windows is pretty quick. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Reuben D. Budiardja > Sent: Friday, June 20, 2003 6:41 AM > To: [EMAIL PROTECTED] > Subject: Re: how to make konqueror faster > > > On Friday 20 June 2003 05:35 am, root_sharif wrote: > . is there are any- file browser ..which > > serves faster browsing... > > I use "cd" and "ls" (and "rm", & "cp")... it's way fast... > > sorry.. couldn't resist :) > > RDB > > > > > > thanks for ur time > > -- > Reuben D. Budiardja > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: Why is RH9 slower than Windows98SE. Any advice?
Of course TWM is going to run faster, but it looks like ass! You guys are skirting around the problem and trying to cover up the fact that KDE/Gnome or any other 'pretty' window manager is going to take resources be they memory, cpu, hd or gpu. Sheeeit, a minimum XP machine these days is like 384MB RAM, 40GB HD, CPU > PIII 800Mhz and 32MB-128MB video card. If you want a responsive system that looks great, in true Microsoft fashion, you just need to throw hardware at it. You can't get blood from a stone, and you can't expect to run a nice Window manager these days without modern gear. It's that simple. My advice to the original poster is, remove all daemons in /etc/rc.d/init.d/ that aren't needed for the workstation. Mebbe try forcing an inittab of 1 (single user mode) [but I'm not sure if you can run Xwindows in that mode or not (since that is 5)]. Make sure you have a video-card that is supported well and fully in X-windows. nVidia makes great ones (I run my dell i8200 notebook at 1600x1200 and it's awesome). You're mostly in 2D, so video RAM is more important than video MegaPixels performance (3D). Make sure the drivers for the card are in fact loaded and the current ones! Turn on DMA (it's off by default in RH). Get 7200 RPM hard drives and use the 80pin ribbon cables. Watch out for memory leaks. I used to use Gnome with RH8 until I discovered that their default terminal had a leak and my system would start to crawl after a while. Switched to KDE and no problems. Leave your systems ON. Linux likes to maintain itself and run stuff on crontabs. If you power down at night, then next time you power up, about an hour into it (I think it is), you'll notice a lot of shit running -- it's playing 'katsup' with anacron, trying to do all the stuff it couldn't do last night. Now having said all that. I do notice that for certain tasks, WindowsXP is definitely snappier. Like loading IE. Part of that is b/c IE is so ingrained into the OS, it's right there all the time for you. Same with many other 'common' features like MSN, Word, Outlook, etc. Plus, to be honest, Microsoft (as much as I hate them as a company and they make generally bloated/crappy products) have in fact done WinXP right and have had a decade to perfect a GUI. That's a fact. It's a solid and reliable OS IMHO. I've not seen a BSOD in years it seems. And while Linux is very stable too for server side, the desktop side is only a couple years old but maturing rapidly. You can't expect it to be the same until video card drivers are optimized for Linux too. Most of the drivers are hacks for the most part and reverse engineered. (nVidia actually makes a proprietary Linux driver however). http://daevid.com > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Todd A. Jacobs > Sent: Friday, June 20, 2003 8:52 AM > To: [EMAIL PROTECTED] > Subject: Re: Why is RH9 slower than Windows98SE. Any advice? > > RH9 is dog-slow out of the box. Most of the blame probably belongs to > KDE/GNOME, though. I dumped them in favor of TWM, and my > system now runs faster than it did running 8.0. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: arp vs. ifconfig discrepencies?
> "arp -n" Show's what addresses are resolved via arp. > > the ip on eth0 (something .64) isn't resolve via arp. It > knows what it is without the use of arp. > > So, the .1 arp entry you see there is the gateway MAC address > for comcast. > It's not your box. It's your upstream router (not your > cablemodem, but one more hop upstream). So that answered the IP differences. I don't like the answer, but it makes sense. As for the MAC addresses -- yeah, sorry, we 'spoof' the MAC on my NIC to be like the MAC of my old router. This is because AT&T / Comcast sucks balls and won't give out static IP addresses anymore, so I didn't want to have to deal with DNS changes for all my virtual hosts when I switched from a Linksys WiFi Router to using a linux box as router/dhcp/firewall/wifi/etc. I hear that on the 30th of this month, when the actual change from attbi to comcast occurs, I'll get re-assigned a new dynamic IP again (and so I'll stop spoofing at that point I suppose). G... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Bret Hughes > Sent: Monday, June 16, 2003 2:15 PM > To: [EMAIL PROTECTED] > Subject: Re: arp vs. ifconfig discrepencies? > > > On Mon, 2003-06-16 at 09:43, Michael Schwendt wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > On Mon, 16 Jun 2003 00:02:32 -0700, Daevid Vincent wrote: > > > > > Hey, how come my 'arp -n' tells me my eth0 is > "12.228.88.1" when my > > > ifconfig (which is the real IP) says "12.228.90.64"?? > > > > It doesn't do that in your example: > > > > > ifconfig > > > eth0 Link encap:Ethernet HWaddr 00:06:25:91:FF:C8 > > > inet addr:12.228.90.64 Bcast:255.255.255.255 > Mask:255.255.252.0 > > > > > arp -n > > > Address HWtype HWaddress > Flags Mask Iface > > > 12.228.88.1 ether 00:09:12:86:48:54 C eth0 > > > > - -- > > I was about to post the same thing but to further clarify Michael's > answer, the hw addresses are different. Perhaps the *.1 > address is the router on the 12.228.88.0 subnet? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
why does "arp" show inactive machines?
I am writing an open source web page that I can't believe doesn't exist already. basically i want to see all the active DHCP clients on my network AND their nice windows names. GRRR... Anyways, here is what I have so far if you want to see it: http://daevid.com/examples/dhcp/index.php when the script is finished I'll post it up for anyone to use on their own servers... Does anyone know why "arp -n" (what i'm using) shows machines that are NOT even turned on? like my notebook shows up despite having been off for several hours? Is there a way to get a real time list of the machines on my network?!? I thought that's what "arp" did, but apparently not. :( D BTW, can't this list software be smart enough to auto-convert from HTML posts to plaintext? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
why does "arp" show inactive machines?
Title: Message I am writing an open source web page that I can't believe doesn't exist already. basically i want to see all the active DHCP clients on my network AND their nice windows names. GRRR... Anyways, here is what I have so far if you want to see it: http://daevid.com/examples/dhcp/index.php when the script is finished I'll post it up for anyone to use on their own servers... Does anyone know why "arp -n" (what i'm using) shows machines that are NOT even turned on? like my notebook shows up despite having been off for several hours? Is there a way to get a real time list of the machines on my network?!? I thought that's what "arp" did, but apparently not. :( d
arp vs. ifconfig discrepencies?
Hey, how come my 'arp -n' tells me my eth0 is "12.228.88.1" when my ifconfig (which is the real IP) says "12.228.90.64"?? [dae51d=pts/0]11:[EMAIL PROTECTED]:{/home/dae51d/public_html/examples/dhcp}> ifconfig eth0 Link encap:Ethernet HWaddr 00:06:25:91:FF:C8 inet addr:12.228.90.64 Bcast:255.255.255.255 Mask:255.255.252.0 UP BROADCAST NOTRAILERS RUNNING MULTICAST MTU:1500 Metric:1 RX packets:11724800 errors:0 dropped:0 overruns:0 frame:0 TX packets:2464495 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:100 RX bytes:2909486063 (2774.7 Mb) TX bytes:797368198 (760.4 Mb) Interrupt:5 Base address:0xa000 eth1 Link encap:Ethernet HWaddr 00:D0:B7:83:16:A2 inet addr:192.168.1.1 Bcast:192.168.1.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:1913154 errors:0 dropped:0 overruns:0 frame:0 TX packets:2250060 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:100 RX bytes:256301680 (244.4 Mb) TX bytes:2040670059 (1946.1 Mb) Interrupt:11 Base address:0x8000 wlan0 Link encap:Ethernet HWaddr 00:02:6F:03:AE:00 inet addr:10.10.10.1 Bcast:10.10.10.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:303449 errors:0 dropped:343 overruns:0 frame:0 TX packets:431279 errors:421 dropped:857 overruns:0 carrier:0 collisions:0 txqueuelen:100 RX bytes:23081995 (22.0 Mb) TX bytes:349882103 (333.6 Mb) Interrupt:9 Base address:0x100 [dae51d=pts/0]11:[EMAIL PROTECTED]:{/home/dae51d/public_html/examples/dhcp}> arp -n Address HWtype HWaddress Flags Mask Iface 192.168.1.6 ether 48:54:E8:26:23:38 C eth1 10.10.10.69 ether 00:02:2D:3C:7C:FB C wlan0 192.168.1.4 ether 00:A0:CC:E7:73:6E C eth1 192.168.1.3 ether 00:80:45:31:D8:29 C eth1 192.168.1.2 ether 00:10:5A:9C:5D:89 C eth1 12.228.88.1 ether 00:09:12:86:48:54 C eth0 192.168.1.19 ether 00:0B:AD:08:38:C3 C eth1 192.168.1.18 ether 00:0B:AD:31:AA:A6 C eth1 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
How do I see the dhcp leases?
I've searched the web, but I can't find any way to see all the leases my dhcp server is handing out? Is there some command line (ideally) or GUI or something that will list all the active IP addresses and "names"? By names I mean, all the computer names I see in network neighborhood on windows. "cat /var/lib/dhcp/dhcpd.leases" lists ALL leases for several past days -- some of which are not current. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: GUI Tape Drive Frontend
http://www.arkeia.com/downloadlight.html Free for linux users :-) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of James Pifer > Sent: Friday, May 30, 2003 5:37 PM > To: RedHat List > Subject: GUI Tape Drive Frontend > > > Hi. I've just installed a new RH9 system that has an Onstream tape > drive. Looks like the OS sees it. What backup utilities are > recommended > and are there GUI/X frontends for them? I did some googling but mostly > got info overload. > > Of course I'm interested in scheduling backups as well. Not > sure if that > would involve cron or something directly in the backup software. > > Thanks, > James > > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: backup scripts
I've just spent the past few days writing this backup script... http://resume.daevid.com follow the link for it. It will do weekly full backups on Sunday and daily diff backups. It also does daily dumps of all databases in the mysql db directory then combines them into a single .tgz file for storage. It is best if you have /backups as a separate device because I mount it rw and then ro when finished storing the backups. Simply list what you want at the top and use the exclude file to omit what you don't. Ideally I'd like to make it so it only backs up the mysql databases that have changed (diff), but I'm not sure how to determine that, as the directory doesn't seem to change it's date as I would expect, if the contents within are updated. Hmmm. Ideas? Daevid Vincent http://daevid.com Ps. And yes, I sent that as a link in my resume because I'm unemployed and would love any offers for coding work with PHP, Linux, SQL, etc... ;-) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Messmer > Sent: Wednesday, May 28, 2003 9:05 PM > To: [EMAIL PROTECTED] > Subject: Re: backup scripts > > > Richard Humphrey wrote: > > Is > > anyone using another method (cpio,dump etc) > > I use cpio and this script: > http://phantom.dragonsdawn.net/~gordon/backup/backup > > > and which do you prefer and > > why? > > tar is fine for getting a directory and its contents, but for > anything > more complex, it's much harder to live with. cpio and dump are both > able to back up a directory without its contents, which is > important if > you expect that permissions may change (and should be restored) in an > incremental backup. tar handles only the most basic of situations. > > Also, if your filesystem has any features outside of the > standard POSIX > spec, dump will be the only tool which will back up and restore them. > This is important to consider when using XFS and ACLs, for instance. > > If you're backing up more than one machine, I recommend using cpio or > dump in conjunction with amanda, or another backup spooler. > > More important, I think, than any other advice is this: > Make sure your backups work. Attempt to restore your backups > to a clean > machine, or alternate root directory. It doesn't matter what > you use if > they don't work. If you're satisfied with the restore, then the > question of tar vs. cpio vs. dump is less important. > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: PHP can't connect to MySQL on localhost
You could either ln -vs /tmp/mysql.sock /var/lib/mysql/mysql.sock Or you could edit you /etc/my.cnf and add the following: [client] socket=/tmp/mysql.sock [mysqld] socket=/tmp/mysql.sock (or both) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Reuben D. Budiardja > Sent: Friday, March 28, 2003 3:49 PM > To: [EMAIL PROTECTED] > Subject: Re: PHP can't connect to MySQL on localhost > > > On Friday 28 March 2003 05:31 pm, Ed Wilts wrote: > > On Fri, Mar 28, 2003 at 05:18:36PM -0500, Reuben D. Budiardja wrote: > > > Hi, > > > I have PHP that I compiled from source (PHP-4.3.0) with > mysql support > > > (./configure --with-mysql). > > > > > > I installed mysql from Redhat RPM (Redhat 7.3), and then > start the mysql > > > daemon by: > > > $> /etc/rc.d/init.d/mysqld start > > > > > > Connecting to mysql using the console is fine. But when > trying it with > > > php, I got: > > > > > > Can't connect to local MySQL server through socket > '/tmp/mysql.sock' (2) > > > in /usr/local/apache/htdocs/ambs/inc/rb_mysql_class.inc on line 10 > > > > Did you install the php-mysql rpm? > > The php was compiled from source, so I didn't use the RPM. I > found out that > redhat mysql rpm set the socket in /var/lib/mysql/ instead of > /tmp/mysql.sock, which I guess is the default. > > That's the thing that I often find out about Redhat RPM... > sometimes it just > uses it's own "config" that can be a bit confusing if I > combine with stuff I > compile myself oh well... > > RDB > -- > - > /"\ ASCII Ribbon Campaign against HTML > \ / email and proprietary format > X attachments. > / \ > - > Have you been used by Microsoft today? > Choose your life. Choose freedom. > Choose LINUX. > - > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
RE: Red Hat Linux 9 | Get the latest Linux early (fwd)
Rober! This is *NOT* spam. http://www.redhat.com/mktg/rh9iso/ And the email I got FROM RH has my username and info in it. It is most certainly from RedHat, and it most certainly is v9.0. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Robert P. J. Day > Sent: Monday, March 24, 2003 12:00 PM > To: [EMAIL PROTECTED] > Cc: redhat mailing list > Subject: Red Hat Linux 9 | Get the latest Linux early (fwd) > > > > Red Hat list admin: > > A number of folks received the following on the Red Hat mailing > list recently. The overwhelming evidence is that it is spam, > given the return address of redhat.chtah.com. > > If this is indeed what happened, it seems appropriate to > bar all *.chtah.com postings to any and all red hat mailing > lists, yes? The links contained in the message are a *clear* > attempt to get subscribers to sign up for a completely bogus > service, with the proceeds going directly to chtah.com. > > The faster this domain can be blacklisted, the less chance > there is of someone being fleeced. > > Thanks for your attention. > > rday > > -- Forwarded message -- > Date: Mon, 24 Mar 2003 19:21:04 - > From: Red Hat <[EMAIL PROTECTED]> > Reply-To: Red Hat > <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Red Hat Linux 9 | Get the latest Linux early > > Dear rob day: > > You may know that Red Hat Network is the best way to keep your > systems running the latest errata and always up to date. What you > might not know is that Red Hat Network passed the one million users > mark earlier this year. We've listened to valuable feedback and have > added two items of interest to keep those users happy - early release > of Red Hat Linux 9 ISOs and improved technical support. > > Beginning March 31, 2003, paid subscribers to Red Hat Network will > have access to Red Hat Linux 9 ISOs - a full week before retail store > and Red Hat FTP availability. Also, Red Hat Network subscribers will > receive dedicated Red Hat Network Technical Support. > > Learn more about the benefits of being a Red Hat Network Subscriber: > http://redhat.chtah.com/a/tA$f1ahAJPSNNAMoxTCAHU7fyyN/rhat1 > > To purchase a Red Hat Network subscription: > http://redhat.chtah.com/a/tA$f1ahAJPSNNAMoxTCAHU7fyyN/rhat2 > > Thanks again for using Red Hat Linux. We appreciate all feedback > from our users and hope you enjoy Red Hat Linux 9. > > Sincerely, > > Red Hat > > --- > > The above email is intended for people who have opted-in to receiving > email from Red Hat. If you think that you have received this email in > error, please accept our apologies. Simply click on the link in the > section below and we'll make sure you do not receive this kind of > email from Red Hat again. > http://redhat.chtah.com/a/tA$f1ahAJPSNNAMoxTCAHU7fyyN/rhat3?t= VALUEtVALUE -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
RE: [Fwd: Red Hat Linux 9 | Get the latest Linux early]
Or more specifically from 8.1 ?? I can't see there being 0.9 versions worth of changes since 8.1 (which wasn't even released). This reeks of marketing spin. *sigh* That really makes me sad to see RH pulling a slimey microsoft move. I remember when they (m$) released Visual J and it STARTED at v6.0 so they could release it as part of their Visual Studio environment. This was at best a v1.0 product. Didn't they do that with "Word" as well? Make it version 6 to compete with WordPerfect 6?? > -Original Message- > From: Jody Cleveland > > > I doubt it... > > > > http://www.redhat.com/mktg/rh9iso/ > > So, does anyone know what's new/ improved/ changed from 8? > > Jody -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
RE: [Fwd: Red Hat Linux 9 | Get the latest Linux early]
I doubt it... http://www.redhat.com/mktg/rh9iso/ > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Ric Tibbetts > Sent: Monday, March 24, 2003 11:39 AM > To: [EMAIL PROTECTED] > Subject: Re: [Fwd: Red Hat Linux 9 | Get the latest Linux early] > > > It has to be a typo. > > Ric > > On Mon, Mar 24, 2003 at 01:48:24PM -0600, John Nichel wrote: > > Red Hat 9 What happened to 8.1? > > > > Original Message > > Subject: Red Hat Linux 9 | Get the latest Linux early > > Date: Mon, 24 Mar 2003 19:18:21 - > > From: "Red Hat" <[EMAIL PROTECTED]> > > Reply-To: "Red Hat" > > <[EMAIL PROTECTED]> > > To: [EMAIL PROTECTED] > > > > Dear John: > > > > You may know that Red Hat Network is the best way to keep your > > systems running the latest errata and always up to date. What you > > might not know is that Red Hat Network passed the one million users > > mark earlier this year. We've listened to valuable feedback and have > > added two items of interest to keep those users happy - > early release > > of Red Hat Linux 9 ISOs and improved technical support. > > > > Beginning March 31, 2003, paid subscribers to Red Hat Network will > > have access to Red Hat Linux 9 ISOs - a full week before > retail store > > and Red Hat FTP availability. Also, Red Hat Network subscribers will > > receive dedicated Red Hat Network Technical Support. > > > > Learn more about the benefits of being a Red Hat Network Subscriber: > > > > To purchase a Red Hat Network subscription: > > Thanks again for using Red Hat Linux. We appreciate all feedback > > from our users and hope you enjoy Red Hat Linux 9. > > > > Sincerely, > > > > Red Hat > > > > > > > > > > -- > > redhat-list mailing list > > unsubscribe > mailto:[EMAIL PROTECTED]> subject=unsubscribe > > > https://listman.redhat.com/mailman/listinfo/redhat-list -- Ric Tibbetts Linux registration number: 55684 If you want to help advertise Linux - point your friends to http://counter.li.org/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
RE: [Fwd: Red Hat Linux 9 | Get the latest Linux early]
I was just thinking the exact same thing!? As John Stewart says on the daily show "Whhh?" > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of John Nichel > Sent: Monday, March 24, 2003 11:48 AM > To: [EMAIL PROTECTED] > Subject: [Fwd: Red Hat Linux 9 | Get the latest Linux early] > > > Red Hat 9 What happened to 8.1? > > Original Message > Subject: Red Hat Linux 9 | Get the latest Linux early > Date: Mon, 24 Mar 2003 19:18:21 - > From: "Red Hat" <[EMAIL PROTECTED]> > Reply-To: "Red Hat" > <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > > Dear John: > > You may know that Red Hat Network is the best way to keep your > systems running the latest errata and always up to date. What you > might not know is that Red Hat Network passed the one million users > mark earlier this year. We've listened to valuable feedback and have > added two items of interest to keep those users happy - early release > of Red Hat Linux 9 ISOs and improved technical support. > > Beginning March 31, 2003, paid subscribers to Red Hat Network will > have access to Red Hat Linux 9 ISOs - a full week before retail store > and Red Hat FTP availability. Also, Red Hat Network subscribers will > receive dedicated Red Hat Network Technical Support. > > Learn more about the benefits of being a Red Hat Network Subscriber: > > To purchase a Red Hat Network subscription: > Thanks again for using Red Hat Linux. We appreciate all feedback > from our users and hope you enjoy Red Hat Linux 9. > > Sincerely, > > Red Hat > > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
How to get secureCRT and term to look right?
I use SecureCRT 3.4.3 to ssh into my RH8 box all the time, but curses based programs (like setup or iptraf) don't look quite right -- where the graphics should be, there are funky characters? Can someone tell me what the proper settings for the session should be? My SecureCRT Session Terminal Emulation is set to "Linux" with ANSI Color checked on, and my bash/tcsh terms are set TERM=linux. I've tried VT100 as well, but neither seem to work. Is there something else I should do? The "TERM=linux" could be legacy settings. I've been running Linux for like 5 years or more, and migrate my .rc scripts from server to server. Should it be something else now a days? And if so, what? And what do I set SecureCRT to as well? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
RE: Need procmail recepie for >100k attachments.
I am, but I don't want to limit for ALL my users, just me ;-) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Mikkel L. Ellertson > Sent: Friday, February 28, 2003 8:53 PM > To: [EMAIL PROTECTED] > Subject: Re: Need procmail recepie for >100k attachments. > > > On Fri, 28 Feb 2003, Daevid Vincent wrote: > > > Anyone have a procmail recepie for those idiots who insist > on sending > > large file attachments? > > > > Ideally I'd like it to reply to them a message, and then remove the > > attachment and only save the message, or else just delete the whole > > thing. Sometime people (like my sister!) send me 1MB .mov files that > > just jam up my mailbox and kill my bandwidth. > > > If you are running your own mail server, you can set a message size > limit in Sendmail or Postfix. (Probably others as well...) With > fetchmail, you can use the -l option to limit the size of message you > retrieve. > > Mikkel > -- > > Do not meddle in the affairs of dragons, > for you are crunchy and taste good with ketchup. > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Need procmail recepie for >100k attachments.
Anyone have a procmail recepie for those idiots who insist on sending large file attachments? Ideally I'd like it to reply to them a message, and then remove the attachment and only save the message, or else just delete the whole thing. Sometime people (like my sister!) send me 1MB .mov files that just jam up my mailbox and kill my bandwidth. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Problems with kernel-2.4.18-24.8.0 and sendmail.
Everything was going fine until I upgraded a stable server to "kernel-2.4.18-24.8.0.rpm", now sendmail (and possibly other stuff that I've not found or care to debug) STB constantly. I have to keep issuing an "/etc/rc.d/init.d/sendmail restart". Anyone else have this issue? "kernel-2.4.18-14.i686.rpm" worked fine, and I'm switching back. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
FW: TrueMobile 1180 petition...
Title: Message FYI -Original Message-From: amiklas <[EMAIL PROTECTED]> [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 8:17 PMTo: [EMAIL PROTECTED]Subject: [linux-dell-laptops] Re: TrueMobile 1180Hi, I've posted the petition at: http://www.PetitionOnline.com/BCM4301/petition.html I figure if we can show Broadcom that there _is_ interest in having drivers for Linux, it can only help. People contacting Broadcom privately for the spec can point to this petition to demonstrate that releasing the spec is worthwhile. -- Andrew --- In [EMAIL PROTECTED], "Mark Feit <[EMAIL PROTECTED]>" <[EMAIL PROTECTED]> wrote: > Dossy writes: > > > > I think you'd sooner get a driver written by reverse engineering the > > Windows XP drivers for the TrueMobile 1180 than you would by trying > to > > get the petition signed. > > Hm, I don't know if you're trying to say that Broadcom isn't going to > be responsive or that nobody would sign the petition. Reverse > engineering the Windows driver is possible, but violates the license > agreement that comes with it. That approach won't make Broadcom want > to help us, which does the Linux community more harm than good. > > The fact of life in the Linux world are that it takes awhile to get > support for the latest and greatest devices developed. Except in > situations where the vendor won't release a driver or the specs to > write one, drivers for a device do eventually get written. The > support we have now for other wireless chipsets took time, too. The > driver situation now is very, very good compared to what it was when I > started using Linux in 1994. ... > -- Mark --Please post your X config files in the group links or databaseTo unsubscribe, email: [EMAIL PROTECTED]FAQ: http://www.whacked.net/ldl/faq Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
GUI for WiFi 802.11b configurations?
Is there any work being done on a GUI for setting up WiFI 802.11b networking? Currently, I have to manually edit and maintain a text file for all my WEP keys and ESSIDs, etc. I would like it to be brain-dead simple like it is on WindowsXP. It just detects the networks, I click the one I want, and it knows the key. This is useful for my home LAN vs. work LAN vs. coffee shops vs. bus route vs... -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
How do I set the timezone on redhat via PHP? Ie. How to convert GMT to symbolic link?
Given that I have a GMT offset via the select box below, how the hell do I turn that into a symbolic link to one of these files? How do I know which file to link too?!!! UGH. This is such a stupid way to set the timezone, why didn't RedHat just have a file with the offset in it? Something like "echo -0800GMT > /etc/timezone" would have been sufficient doncha think? PHP's date("O") function = "-0800". [dae51d=pts/0]12:50am@daevid:{/etc}> ll /etc/localtime lrwxrwxrwx1 root root 39 Dec 13 11:26 /etc/localtime -> /usr/share/zoneinfo/America/Los_Angeles [dae51d=pts/0]12:50am@daevid:{/etc}> ls /usr/share/zoneinfo/ Africa Australia Cuba Etc GMT0 Iceland Japan MST Poland right UCTzone.tab America Brazil EET Europe GMT-0 Indian Kwajalein MST7MDT PortugalROCUniversal Zulu Antarctica Canada EgyptFactory GMT+0 Iran Libya Navajo posix ROKUS Arctic CETEire GB Greenwich iso3166.tab MET NZ posixrules Singapore UTC AsiaChile EST GB-Eire Hongkong Israel Mexico NZ-CHAT PRC SystemVWET AtlanticCST6CDTEST5EDT GMT HSTJamaica Mideast Pacific PST8PDT Turkey W-SU And since I couldn't figure out a graceful way to do this programatically, I just typed them all out. Time Zone ";?> >GMT -12 Hours >GMT -11.5 Hours >GMT -11 Hours >GMT -10.5 Hours >GMT -10 Hours >GMT -9.5 Hours >GMT -9 Hours >GMT -8.5 Hours >GMT -8 Hours >GMT -7.5 Hours >GMT -7 Hours >GMT -6.5 Hours >GMT -6 Hours >GMT -5.5 Hours >GMT -5 Hours >GMT -4.5 Hours >GMT -4 Hours >GMT -3.5 Hours >GMT -3 Hours >GMT -2.5 Hours >GMT -2 Hours >GMT -1.5 Hours >GMT -1 Hours >GMT 0 Hours >GMT +0.5 Hours >GMT +1 Hours >GMT +1.5 Hours >GMT +2 Hours >GMT +2.5 Hours >GMT +3 Hours >GMT +3.5 Hours >GMT +4 Hours >GMT +4.5 Hours >GMT +5 Hours >GMT +5.5 Hours >GMT +6 Hours >GMT +6.5 Hours >GMT +7 Hours >GMT +7.5 Hours >GMT +8 Hours >GMT +8.5 Hours >GMT +9 Hours >GMT +9.5 Hours >GMT +10 Hours >GMT +10.5 Hours >GMT +11 Hours >GMT +11.5 Hours >GMT +12 Hours -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: RedHat 8 and Dell Notebooks
> How well does RedHat 8.0 run on current Dell notebooks? I'd > like NOT to have to fool around with any special > configurations to get it going. I have an i8200 and it works great. Most everything worked fine, but as for "not fool around" well, get used to that if you want to run Linux. There are always things you're going to need to tweak to get it working. But that's part of learning... However, I think everything on that notebook does work if you're willing to put the energy into getting it to; whatever consolation that is. I love it! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
How the hell do I get technical support via redhat.com?
Is it me? Am I just retarded? How the hell does one ask technical support a question with this site? I just want the email address or something, and there are all these vague instructions that don't seem to work. WTF!? https://www.redhat.com/apps/support/ What the hell is the "Product ID" and where do I find that? I have two systems registered with RHN, one that I paid a $60 service for. I tried to put the number of that machine in there, but it doesn't work. Ugh!!! I appreciate there is a need for some database/ticket tracking system, but IMHO there should be a straight email address too. That's redhat's problem to enter it in and categorize it. So here I am, and I still can't ask someone at redhat my problem, and I've got no way to enter it into a bug system and so I'm screwed. Thanks redhat. Oh, and the SPAM 'special offer' on the right hand side of some of their pages shows "Maximum Linux" as a partner and you can get a free CD and issue. Um, guys, that magazine has been dead for over a year now... Hello?! (I know, I helped to invent it!) -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
In need of a UPS
The battery light on my UPS is on now all the time. It's fairly old and I think it's time I got rid of it. First, where do I go to throw out a UPS? I can't imagine it's good to just chuck it out with the garbage... I would think it needs recycling or containment or something. Secondly, can anyone suggest a (cheap) UPS that will work with RedHat 8.0 relatively painlessly? I really only just need this to shutdown gracefully when appropriate (so I don't need it to power my monitor or speakers or any extra crap either). Otherwise, I really don't care about any bells and whistles, unless they're free. I don't want to have to make a custom cable or anything funky either. I want to be able to purchase the parts, plug them in, run some .rpm or install.sh or something and be good to go. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: Glibc updates killing MySql
That page is very out of date for RH8. it talks about version 2.1.3-28 and my stock RH8 came with [root@daevid root]# rpm -qa | grep "glibc" glibc-2.2.93-5 glibc-kernheaders-2.4-7.20 glibc-utils-2.2.93-5 glibc-common-2.2.93-5 glibc-devel-2.2.93-5 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of Brian Ashe > Sent: Saturday, December 07, 2002 8:32 AM > To: Robert Canary > Subject: Re: Glibc updates killing MySql > > > Hello Robert, > > Saturday, December 7, 2002, 11:18:32 AM, you textually orated: > > RC> The last Glibc updates killed connections to MySql. > > Actually, the "last" glibc updates were specifically released > to fix that problem. ;) > > RC> Anyone know yet if the new updates have the same issues? > Or will we > RC> have to do something to the MySql? > > You should go here... https://rhn.redhat.com/errata/RHSA-2002-197.html > > > This errata has been updated to work with programs querying > DNS from extremely small stack sizes, such as MySQL. > > Have fun, > -- > _ > Brian Ashe CTO > [EMAIL PROTECTED] Dee-Web Software Services, LLC. > http://www.dee-web.com/ > - > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: CRM help!
http://www.relata.org/ DÆVID. "A good friend will come and bail you out of jail...but a true friend will be sitting next to you in the holding cell, laughing and saying -'That was fucking awesome!'" > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of C. Linus Hicks > Sent: Thursday, December 05, 2002 1:44 PM > To: [EMAIL PROTECTED] > Subject: Re: CRM help! > > > On Thu, 2002-12-05 at 15:31, Simpson, Doug wrote: > > I was just in a meeting where my sales dept is going to ram down my > > throat a CRM that is VERY MS certric. Please does anyone have any > > idea for a CRM that is a bit more Linux friendly and or > just less MS > > centric. Please Help! > > You didn't specify open source, so, how about this - it's > expensive, but Oracle Apps runs on Linux. > -- > C. Linus Hicks <[EMAIL PROTECTED]> > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
How do I get the little "up2date" icon back in my pannel?
I think I accidentally updated, then exited out of the little round (red/green/blue) icon that sits in KDE on the right hand side near the clock. Then I probably shutdown (saving changes of course) and now I want the little guy back! How do I do that? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
How do you QUIT x-windows in RH8?
So, um, how do I shut down X-windows in RedHat 8.0 (for that session only). Here's the thing, if I logout, I'm prompted to login again right. There is no option to exit X all together, only reboot and shutdown. If I CTRL+SHIFT+BACKSPACE (I think that's it) to kill X (which normally works), it just restarts again. WTF!? Ugh. It seems that RH8.0 has a memory leak in Gnome, and I was thinking that if I shut it down, it would free that up and then I could restart it (that is until the leak is fixed in a future version). As it stands, my machine just keeps getting slower and slower until I have to reboot. Weak sauce. d -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: How do I add MySQL to existing RH 7.3 server?
http://www.mysql.com/downloads/mysql-3.23.html Download all the .rpm files and "rpm -Uvh *.rpm" Configure as desired (/etc/my.cnf) and have fun. DÆVID. "A good friend will come and bail you out of jail...but a true friend will be sitting next to you in the holding cell, laughing and saying -'That was fucking awesome!'" > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of Ken Morley > Sent: Tuesday, December 03, 2002 10:49 AM > To: '[EMAIL PROTECTED]' > Subject: How do I add MySQL to existing RH 7.3 server? > > > This is probably a really stupid question, but I'm a Linux > newbie, so give me a break... > > When I setup my Linux 7.3 box, I intended to use it as a mail > server, so I purposely kept the installation simple. I now > want to install Spam Assassin, which can make use of the > MySQL package. > > I put the RH CD and started Gnome RPM, but I can't seem to > find any mention of MySQL. What do I have to do to add this > to my existing installation? > > Many thanks! > > Ken Morley > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: Linux seems pokey with 684MB RAM
I use GRUB. Is there an equivillent command for that? > -Original Message- > From: [EMAIL PROTECTED] > > Try to add "append="MEM=684M" into /etc/lilo.conf > Then run lilo... -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Linux seems pokey with 684MB RAM
I'm loving my new Dell i8200 notebook computer, and adding 512MB to the stock 128MB was a HUGE improvement, however I'm noticing that while WindowsXP (home) seems to just fly along and IE opens up quickly, Outlook running all the time, trillian, HomeSite, etc... The RedHat 8.0 side of things is pokey as hell. Just having mozilla running takes like a minute for it to load?! Then if I add in "Quanta" or "Star Office", forget it. I got this to be a mobile workstation so that I could get my PHP/mySQL coding done anywhere. But as it stands, it's not working out so well that way. It takes too long to do anything. It's embarrassing. I thought that Microsoft was always writing bloated software, but now I'm starting to doubt that. I could add another 512MB RAM (it's only like $175), but I'm not sure that is the problem, is it? Why wouldn't 684MB on a 2.0Ghz P4 be more than enough for what I'm doing? Suggestions? I've already reduced the amount of RAM that mySQL uses and Apache uses, but I don't know what else to do. [root@dhcppc6 test]# free total used free sharedbuffers cached Mem:643140 632108 11032 0 3924 56616 -/+ buffers/cache: 571568 71572 Swap: 522072 116012 406060 Here is what I have running currently as of that 'free' [root@dhcppc6 test]# ps aux USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 1 0.0 0.0 1336 436 ?S15:01 0:03 init root 2 0.0 0.0 00 ?SW 15:01 0:00 [keventd] root 3 0.0 0.0 00 ?SW 15:01 0:00 [kapmd] root 4 0.0 0.0 00 ?SWN 15:01 0:00 [ksoftirqd_CPU0] root 5 0.0 0.0 00 ?SW 15:01 0:00 [kswapd] root 6 0.0 0.0 00 ?SW 15:01 0:00 [bdflush] root 7 0.0 0.0 00 ?SW 15:01 0:00 [kupdated] root 8 0.0 0.0 00 ?SW 15:01 0:00 [mdrecoveryd] root12 0.0 0.0 00 ?SW 15:01 0:00 [kjournald] root70 0.0 0.0 00 ?SW 15:01 0:00 [khubd] root 228 0.0 0.0 00 ?SW 15:01 0:00 [kjournald] root 282 0.0 0.0 00 ?SW 15:01 0:00 [knodemgrd] root 555 0.0 0.0 2056 516 ?S15:02 0:00 /sbin/dhclient -1 -q -lf /var/lib/dhcp/dhclient-eth0.leases - root 596 0.0 0.0 1400 536 ?S15:02 0:00 syslogd -m 0 root 600 0.0 0.0 1336 360 ?S15:02 0:00 klogd -x rpc617 0.0 0.0 1484 444 ?S15:02 0:00 portmap rpcuser636 0.0 0.0 1528 612 ?S15:02 0:00 rpc.statd root 691 0.0 0.0 1456 444 ?S15:02 0:00 /sbin/cardmgr root 730 0.0 0.0 1328 412 ?S15:02 0:00 /usr/sbin/apmd -p 10 -w 5 -W -P /etc/sysconfig/apm-scripts/ap root 778 0.0 0.1 3276 728 ?S15:02 0:00 /usr/sbin/sshd root 792 0.0 0.0 2092 612 ?S15:02 0:00 xinetd -stayalive -reuse -pidfile /var/run/xinetd.pid ntp806 0.0 0.2 1916 1908 ?SL 15:02 0:00 ntpd -U ntp root 863 0.0 0.1 5040 1048 ?S15:04 0:00 sendmail: accepting connections smmsp 873 0.0 0.1 4852 836 ?S15:05 0:00 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue root 883 0.0 0.0 1372 344 ?S15:05 0:00 gpm -t ps/2 -m /dev/mouse root 903 0.0 0.0 1512 560 ?S15:05 0:00 crond xfs936 0.0 0.2 4848 1868 ?S15:05 0:00 xfs -droppriv -daemon root 945 0.0 0.1 4944 880 ?S15:05 0:00 smbd -D root 949 0.0 0.1 3784 896 ?S15:05 0:00 nmbd -D daemon 967 0.0 0.0 1368 496 ?S15:05 0:00 /usr/sbin/atd root 979 0.0 0.0 3108 480 ?S15:05 0:00 rhnsd --interval 120 root 986 0.1 0.1 3984 944 ?S15:05 0:11 tclsh /usr/bin/i8kmon -- -d root 987 0.0 0.0 1308 232 ?S15:05 0:00 i8kbuttons -u aumix -v +5 -d aumix -v -5 -m aumix -v 0 -r 100 root 989 0.0 0.0 1316 340 tty1 S15:05 0:00 /sbin/mingetty tty1 root 990 0.0 0.0 1316 340 tty2 S15:05 0:00 /sbin/mingetty tty2 root 991 0.0 0.0 1316 340 tty3 S15:05 0:00 /sbin/mingetty tty3 root 992 0.0 0.0 1316 340 tty4 S15:05 0:00 /sbin/mingetty tty4 root 993 0.0 0.0 1316 340 tty5 S15:05 0:00 /sbin/mingetty tty5 root 994 0.0 0.0 1316 340 tty6 S15:05 0:00 /sbin/mingetty tty6 root 995 0.0 0.1 12752 1080 ?S15:05 0:00 /usr/bin/gdm-binary -nodaemon root 1040 0.0 0.2 13524 1324 ?S15:05 0:00 /usr/bin/gdm-binary -nodaemon root 1041 0.2 3.3 297212 21660 ? S< 15:05 0:20 /usr/X11R6/bin/X :0 -auth /var/gdm/:0.Xauth daevid1405 0.0
RE: Tips to avoid full system restart?
I've had RPM's freeze on me too. I find that if I kill the task then: rm -f /var/lib/rpm/__db.* I can get them to work again. YMMV -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
How to set hostname so it's not dhcppc?
Just installed RH8 on my notebook which uses DHCP to get on my LAN/internet. This in turn keeps asigning my notebook name to be "dhcppc6" -- which aside from being asthetically unappealing, also causes X/Gnome to give a warning each time it starts. How can I set my notebook's hostname to be say, "localhost" or "dell" or something and STAY that way? I've tried "hostname localhost" and it sets it for that session but then gets reset. Ugh. I "grep 'hostname' /etc/" and saw rc.sysinit has some stuff, but didn't seem obvious where to change? DÆVID. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: mailing-list has broken ?
Procmail is the best, most useful program on my linux box. And bless you for that recepie ;-) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of Hal Burgiss > Sent: Friday, November 15, 2002 5:51 AM > To: [EMAIL PROTECTED] > Subject: Re: mailing-list has broken ? > > > On Fri, Nov 15, 2002 at 12:15:25PM +0100, lazzaro ciccolella wrote: > > > > Anybody know if the mailing-list is broken? > > Mr Petrie is broken! > >:0 >* ^Subject: .*out of (the )?office >/dev/null -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: virus
The short answer is no. but there really aren't any "Virii" for Unix/Linux. Trojan horses and the like yes. But if you use your system as a normal user, you really can't do much damage. Just don't execute untrusted binaries as root or something stupid like that. > -Original Message- > does rh8 come with a virus program, or do you need to install > one yourself? What is the best virus program to run under linux? -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
What are some fully functioning Notebooks for RedHat Linux
I'm finally willing and able to take the plunge and get a nice notebook/laptop computer to dual boot (RH) Linux and Windows. The problem is of course, which one to purchase. I'm willing to spend up to $2000 or so, but there is no resource to tell me which one will be the least troublesome. I'm feeling incredibly frustrated and I can see why there are substantially less Linux notebook users (and development). Nobody wants to be the guinea pig and buy something that won't work. Conversely, I have no doubt in my mind that the Windows partition will work nearly flawlessly with every part of the notebook. http://www.linux-laptop.net/ is nice and all, if you are either a current owner and looking for 'help', but as a new purchaser, it's quite useless without doing tons of research and comparing every little detail, wading through countless pages there. A simple 'poll' whereby each submitter could rate their satisfaction would be incredibly useful, especially if summarized with the 'top 10 best notebooks'. Alas, Mr. Harker has no such feature. :( I am looking for EVERYTHING (or as close to it) to work. This shouldn't be an unreasonable request for a $2000 piece of hardware: X-windows > 1024x768 res (pref with OpenGL or other 3D acceleration, but not required) Sound (minimum wave support/soft midi-synths would be nice though) Internal Modem (this seems to be a huge problem) NIC (10/100Mbs) WiFi (802.11) CD-R DVD APM/power management (ie. No locking up or crashing) Parallel/Serial Pointing device USB External monitor support (dual monitor would be wonderful) PC Card slots Firewire mebbe? IrDA mebbe? Is there a list of Linux notebook retailers anywhere? Perhaps that could narrow down my search. RedHat should maintain a list on their website of notebooks that are fully (or even mostly) compatible. I mean, it's in their best interest to direct folks to hardware that will work with their software right? Don't they have deals with various notebook vendors to bundle RH with them? I would assume that means ALL the hardware works right? Who are the vendors? *sigh* -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: How do I get PHP working with Apache on RH 8?
Title: Message downgrade to apache 1.3 and PHP... that's what i did. PHP and Apache 2.0 don't jive so well -- known issue. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of DaveSent: Tuesday, October 29, 2002 9:31 PMTo: [EMAIL PROTECTED]Subject: Re: How do I get PHP working with Apache on RH 8? I have the as-shipped Apache and PHP packages installed via the Package Mgmt. Admin. software. Apache works Ok for static HTML pages, but will not for PHP. I have tried AddType, LoadModule, etc. in the httpd.conf file but to no avail. What do I have to do to get it working? Thanks, Dave
RE: Screensaver in redhat 8.0
Are you running X as root? I don't think xscreensaver will work then. DÆVID. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:redhat-list-admin@;redhat.com] On Behalf Of Matthew Kerry > Sent: Saturday, October 26, 2002 1:51 PM > To: [EMAIL PROTECTED] > Subject: Re: Screensaver in redhat 8.0 > > > I've no idea why this is happening, but I have the same > thing. Looking around a few of the forums it appears this is > a common theme and it only seems to affect KDE and not Gnome. > Looks like this might be a general bug with the new release > of RH8.0. Is anyone able to offer any suggestions? > > Thanks > Matt > > > Hi all; > > I just upgraded from 7.3 to 8.0. Everything seems to have > gone smoothly except for the one small fact that the > screensaver no longer works. > When the set time is reached, it'll just blank the screen > instead of running the selected screensaver. > > Any ideas? > > Thanks, > Mike -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Is this a hack attempt?
I run RH8.0 so this sure seems suspicious to me: 1-0 25065 0/508/508 _ 6.42 128 0 0.0 130.31 130.31 12.237.249.145 daevid.com GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0 4-0 25068 0/519/519 _ 5.86 139 0 0.0 143.76 143.76 12.237.249.145 daevid.com GET /MSADC/root.exe?/c+dir HTTP/1.0 5-0 25069 0/518/518 _ 5.84 142 0 0.0 99.62 99.62 12.237.249.145 daevid.com GET /scripts/root.exe?/c+dir HTTP/1.0 6-0 25070 0/531/531 _ 6.44 114 0 0.0 129.48 129.48 12.237.249.145 daevid.com GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../.. 7-0 25071 0/525/525 _ 6.93 117 0 0.0 139.17 139.17 12.237.249.145 daevid.com GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd. 8-0 25214 0/503/503 _ 5.83 136 0 0.0 118.91 118.91 12.237.249.145 daevid.com GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0 9-0 25774 0/271/271 _ 4.87 133 0 0.0 119.94 119.94 12.237.249.145 daevid.com GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0 10-0 26526 0/457/457 _ 5.36 335 0 0.0 100.78 100.78 12.229.31.145 daevid.com GET /MSADC/root.exe?/c+dir HTTP/1.0 14-0 26531 0/334/334 _ 3.51 119 0 0.0 89.96 89.96 12.237.249.145 daevid.com GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd. And so now is there a way I can make a file of IP/domains that are banned from contacting my server (all ports)? -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Apache 1.3 and redirecting a virtual domain to a web page?
Anyone know how to set up Apache 1.3 (RH8.0) such that http://resume.daevid.com will serve the file http://daevid.com/resume.shtml And while we're at it, how about http://foo.daevid.com to go to http://daevid.com/foo/ This one I think I can do with a regular like any others, but I have a feeling there may be a better way? I've tried to use: RedirectPermanent http://mp3.daevid.com http://daevid.com/mp3 RedirectPermanent http://resume.daevid.com http://daevid.com/resume.shtml But it didn't work (I think redirects only work with a local path). D. -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: mysqld rh8.0, connect tcp error?
You should really join the mysql lists for this question, but I'll tell you what I suspect it is. The RH8 has a glibc that breaks mysql (among other things). http://lists.mysql.com/cgi-ez/ezmlm-cgi?1:mss:122632 Temporary solutions: - downgrade glibc or - run MySQL server with --skip-name-resolving option I have had limited luck by upgrading mysql to the latest RPMs just released the other day on their site. It is peculiar, but only some mysql clients work now and others don't. which is better than nothing at the moment. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:redhat-list-admin@;redhat.com] On Behalf Of Sherif D Mohamad > Sent: Wednesday, October 23, 2002 1:51 PM > To: [EMAIL PROTECTED] > Subject: Re: mysqld rh8.0, connect tcp error? > > > I do not know the error : error query string > But you have to login locally as root to mysql first and > enable login from other IPs , look at : > http://www.mysql.com/documentation/mysql/bychapter/manual_MySQ L_Database_Adm inistration.html#Adding_users To use : Grant on somedatabase.sometable to AUser@AHost Identified ... -> continue - Original Message - From: "Lewi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 23, 2002 4:06 AM Subject: mysqld rh8.0, connect tcp error? > I have installed rh8.0, with mysql server installed from redhat I can > connect to mysql server only from this server, if I connect from > another server, there is error said something like this: "error query > string" > > I have try connect with tcp : > mysql -u root -p -h myserver > and get status connection normally > > I have searching in google about this kind of problem, but none of solution > > -- > ichtus > -- > Lewi Supranata .K > ICQ: 50643061 > About Me : http://lewi.f4boys.com > Homepage : http://mercury7.petra.ac.id/~ichtus > GnuPG Public Key : http://mercury7.petra.ac.id/~ichtus/ichtus-keys2 > > > > -- > redhat-list mailing list > unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: redhat 8.0, apache 2 and PHP and glbc and mysql
Title: Message there is a known (now) issue with the RH8.0 glibc i believe it was and mysql with remote logins... so if you used say a windows client to connect to a linux mysql db, you couldn't unless you downgrade the glibc. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Jason StaudenmayerSent: Saturday, October 19, 2002 5:44 AMTo: '[EMAIL PROTECTED]'Subject: RE: redhat 8.0, apache 2 and PHP Have anyone heard about when this might get fixed? I have downgraded and so far so good. Has anyone noticed anything else not quite working well. I'm in the process of swapping out two Linux boxes one is 7.0 and the other 7.1 . They run my firewall and VPN services along with web proxy. I hope these all work well. -Original Message-From: Daevid Vincent [mailto:[EMAIL PROTECTED]] Sent: Friday, October 18, 2002 6:40 PMTo: [EMAIL PROTECTED]Subject: RE: redhat 8.0, apache 2 and PHP yes. downgrade to the 1.3 version of apache (and 4.1 of PHP too i think) that's what i did. php and apache 2 don't jive so well. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Jason StaudenmayerSent: Friday, October 18, 2002 7:56 AMTo: '[EMAIL PROTECTED]'Subject: FW: redhat 8.0 -Original Message-From: Jason Staudenmayer Sent: Friday, October 18, 2002 10:12 AMTo: '[EMAIL PROTECTED]'Subject: redhat 8.0 Has anybody found a fix for Apache and PHP?
RE: redhat 8.0, apache 2 and PHP
Title: Message yes. downgrade to the 1.3 version of apache (and 4.1 of PHP too i think) that's what i did. php and apache 2 don't jive so well. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Jason StaudenmayerSent: Friday, October 18, 2002 7:56 AMTo: '[EMAIL PROTECTED]'Subject: FW: redhat 8.0 -Original Message-From: Jason Staudenmayer Sent: Friday, October 18, 2002 10:12 AMTo: '[EMAIL PROTECTED]'Subject: redhat 8.0 Has anybody found a fix for Apache and PHP?
RE: Can't start KDE 3.0.0 in RH8.0 - SOLVED
Okay. Well I guess I'm partially an idiot, and partially I feel duped. running "startx" in fact DOES run KDE just with the 'bluecurve' theme (in fact, according to the faq, you should NOT run 'startkde' anymore). That's my first mistake. I thought 'bluecurve' was a whole different, RedHat proprietary _window manager_ (since I'm used to KDE's look), not just a theme. The second mistake is the 'desktop switching tool' is "stupid". By that I mean, it doesn't know WHICH desktop you're running!!! So every time, it just defaults to the top/'Gnome' button being selected, consequently, I assumed that 'bluecurve' was in Gnome or related to it somehow (when in fact I was in KDE all the time). Leaving the button on "Gnome", saving, and restarting proved a bit more fruitful, in that now I was running in Gnome -- however, it STILL LOOKS like 'bluecurve'. So the very fact that RedHat made their bluecurve 'theme' look the same under both gnome and kde is what was throwing me off. UGH! I can see how some might like that idea, but the least they could have done was change the background or something, so I know. The only way I figured it out, was to go into some "about" sections and noticed one would talk 'kde' and the other would talk 'gnome'. Very frustrating. D. -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: Apache
I only caught part of this, so excuse me if I'm giving the wrong advice, but from what I see, it sounds like you're trying to do something like I did. My quick solution rather than run DNS was to simply edit my /etc/hosts file (and consequently edit my windowsXP hosts file as well. [root@daevid netsaint]# cat /etc/hosts # 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.254 daevid.com www.daevid.com ftp.daevid.com daevid 192.168.0.254 daevid.net www.daevid.net ftp.daevid.net 192.168.0.254 daevid.org www.daevid.org ftp.daevid.org 192.168.0.254 antagonyst.com www.antagonyst.com ftp.antagonyst.com antagonyst 192.168.0.254 dameincain.com www.dameincain.com ftp.dameincain.com dameincain And then in windows just use the same file. > All the same, you'd probably do yourself a service to not use > absolute paths in your links. I strongly agree. Or if you must, then learn the basics of PHP and use an 'include' file with the url, so you can change it in one place and have it be global :) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:redhat-list-admin@;redhat.com] On Behalf Of Gordon Messmer > Sent: Thursday, October 17, 2002 9:45 PM > To: [EMAIL PROTECTED] > Subject: Re: Apache > > > On Wed, 2002-10-09 at 13:50, Ted Hilts wrote: > > > > The content of this information which I moved from the > Apache server > > in > > Texas onto my LAN Apache server contains references like: > > http://www.name.com/directory/file.html and > ... > > In other words, there are full path (including domain name) > references > > through out the hundreds of thousands of files. > ... > > Any help on this would be appreciated. I am trying to do this a > > simply > > as possible. > > OK, the easiest way to take care of this would be to run your > own name server for your internal LAN. Configure an > authoritative zone for the hostname "www.name.com" that > points to your internal server. When you want to test the > content on the public server, comment out that section of > /etc/named.conf and restart the named server. -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RedHat 8.0 continues to be problematic...
Well, I thought things were looking up. I downgraded Apache 2.0 back to the normal version to get PHP and mySQL working. Learned a lot in the process about Apache ;-) One thing I noticed is that Bluecurve graphical interface (while pretty) doesn't have any icons at the bottom. All the 'spots' are just gears. What happened there? Shouldn't there be something useful in each of those spots? KDE just doesn't work at all. Won't even load. :( But here's the real kick in the balls. I noticed that my rhn account showed 835 packages to be updated. Clearly this is an indication the server and rhn are out of synch. So several times I try to have it automate a synch. Each time I check back, I notice nothing has changed. So I figure I'll remove the server from rhn and just re-register it from scratch. No biggie right? I do the delete, then try to run "rhn_register" and get a "command not found". Hmm... [root@daevid update]# locate rhn_register /var/spool/up2date/rhn_register-gnome-2.7.9-7.x.2.i386.hdr /var/spool/up2date/rhn_register-2.7.9-7.x.2.i386.hdr /var/spool/up2date/rhn_register-2.7.9-7.x.2.i386.rpm /var/spool/up2date/rhn_register-gnome-2.7.9-7.x.2.i386.rpm /etc/sysconfig/rhn/rhn_register.rpmnew /etc/sysconfig/rhn/rhn_register.rpmsave /etc/pam.d/rhn_register.rpmnew /etc/security/console.apps/rhn_register.rpmnew Sure enough. There is no command? Okay, that sux... So I look on CD1 and grab the grip of rhn_ files and figure I'll start to just 'rpm -Uvh' them all again, mebbe the upgrader missed one along the way? Except the command is taking forever! I abort and try some other .rpm files. Same thing. Any .rpm I try to install/update/ -qa / whatever just basically 'hangs'. I can't even "kill pid#" to get rid of it. I have no idea why or how 'rpm' stopped working. I don't usually muck with my system as it is a live server. I mean, it did work at one point, as I've installed a few programs like "ntop" and "squirrelmail" since the upgrade. But nothing that should have effected this. Ugh. sigh. Anyone know how I can get rpm's working again? Seems like a chicken/egg situation. That is, how can I uninstall the /bin/rpm program and then re-install from CD again, when it needs "itself" to install. I'm scared to death to run the RH8.0 update (by inserting the CD into my drive and turning the machine on) for fear that it will royally hose everything it's taken so long to rebuild and get working (like it was before the 'f**kgrade' from 7.3 to 8.0) You'd think I'd learn my lesson not to trust an RHx.0 build, but I figured after more than EIGHT versions, they would have their shit together and the upgrade would have gone more smoothly. Jeesh. D. -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Can't start KDE 3.0.0 in RH8.0
[root@daevid i386]# startkde rm: cannot remove `.' or `..' rm: cannot remove `.' or `..' xsetroot: unable to open display '' xrdb: Can't open display '' xset: unable to open display "" xset: unable to open display "" xset: unable to open display "" ksplash: cannot connect to X server kdeinit: Aborting. $DISPLAY is not set. Warning: connect() failed: : No such file or directory ksmserver: cannot connect to X server Error: Can't open display: Warning: connect() failed: : No such file or directory Error: Can't contact kdeinit! I've tried to re-install all the k*.rpm files I could find, I also went and deleted all the .kde files and other related folders in my user directory in the hopes that kde would just build them again... (there wasn't anything important) Ideas? -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: What RPM contains rhn_register
YES! You are the man! Thanks. Is there some icon or something where I missed that? Whenever I tried to update, I just get a dialog that says, "run rhn_register as root"... :( > -Original Message- > From: [EMAIL PROTECTED] > [mailto:redhat-list-admin@;redhat.com] On Behalf Of Jim Hayward > Sent: Thursday, October 17, 2002 10:52 PM > To: [EMAIL PROTECTED] > Subject: Re: What RPM contains rhn_register > > > On Thu, 2002-10-17 at 20:21, Daevid Vincent wrote: > > I don't seem to have the 'rhn_register' program and don't > know which > > .rpm contains it. Anyone know? > > > > Since you don't say what version you are running, I'm going > to take a wild guess and say you are running 8.0, correct? > > If you are, the functionality provided by rhn_register in > older versions of Red Hat has been incorporated into the > up2date program. > > From the command line: up2date --register > > Regards, > Jim H > > -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
What RPM contains rhn_register
I don't seem to have the 'rhn_register' program and don't know which .rpm contains it. Anyone know? -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list