HTB stuff
I downloaded iproute2-2.4.7-now-ss010824.tar.gz and I did patched tc with the htb3.6_tc.diff from htb3.6-020525.tgz and when I try to use a htb script I get just errors. I did not patch the kernel, since I use kernel 2.4.21 and I saw on - HTB Homepage that I need to patch it only if I run version 2.4.20 or earlier. Do also need the kernel patch ? Or maybe is something else wrong? Errors: --- RTNETLINK answers: No such file or directory Deleted old root disk on eth0 Unknown filter "flowid", hence option "1:10" is unparsable Unknown filter "flowid", hence option "1:2" is unparsable RTNETLINK answers: Invalid argument RTNETLINK answers: Invalid argument RTNETLINK answers: Invalid argument RTNETLINK answers: Invalid argument Part of my script (the full script is accesible on http://retea.hostingcenter.ro/htb.txt ..is too long to post here) : --- /sbin/tc qdisc add dev eth1 root handle 1: htb default 10 /sbin/tc class add dev eth1 parent 1: classid 1:1 htb rate 10mbit /sbin/tc class add dev eth1 parent 1:1 classid 1:10 htb rate 5mbit /sbin/tc filter add dev eth1 protocol ip parent 1:10 prio 5 handle 6 flowid 1:10 /sbin/tc class add dev eth1 parent 1:1 classid 1:2 htb rate 5mbit /sbin/tc filter add dev eth1 protocol ip parent 1:10 prio 5 handle 5 flowid 1:2 /sbin/tc class add dev eth1 parent 1:10 classid 4:11 htb rate 128kbit ceil 256kbit prio 5 /sbin/tc filter add dev eth1 parent 1:10 protocol ip prio 5 u32 match ip dst 192.168.254.10 flowid 4:11 Thanks! Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: Mount new disk...
Paula Fernandes wrote: On Sáb, 2003-10-04 at 17:03, Klaus Zahradnik wrote: On Sat, Oct 04, 2003 at 04:44:38PM +0100, Paula Fernandes wrote: Hi list, I need to mount a disk with a windows system to recover some files from the disk. I plug it into the secondary IDE has slave. I have created a new directory this way: mkdir /mnt/alf Then I try to mount the disk this way: mount /dev/hdd /mnt/alf And I get this answer: /dev/hdd is not a valid block device Then I try /dev/hdd0 and hdd1, and the answer still the same. Are you sure hdd is the right device? Do you see the drive in with 'cat /proc/devices' ? WELL, I GET A BIG LIST. AT BLOCK DEVICES I GET THIS: 1 ramdisk 2 fd 3 ide0 9 md 12, 14, 38 and 39 unnamed 22 ide1 Do I need to give any other instruction the the mount command? Usually not. Mount complains about a device which isn't there. regards Klaus If you're absolutely sure that what you want is on hdd, make certain of which partition it is on. First partition is hdd0, second partition is hdd1.and so on. Assuming that you do have a directory in /mnt named 'alf' and the partition is the second one (hdd1)---take a look at /dev to make sure there is a hdd1. go root then type: (one continuous command) mount -t vfat /dev/hdd1 /mnt/alf; cd /mnt/alf; ls -aF --color=auto This should display the contents of alf. After you do whatever, unmount with: cd; umount /mnt/alf This all depends on hdd1 (second partition) being where your files are. If the files are on the first partition use hdd0. The commands listed above make excellent aliases. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
htb errors, I need patch?
I downloaded iproute2-2.4.7-now-ss010824.tar.gz and I did patched tc with the htb3.6_tc.diff from htb3.6-020525.tgz and when I try to use a htb script I get just errors. I did not patch the kernel, since I use kernel 2.4.21 and I saw on - HTB Homepage that I need to patch it only if I run version 2.4.20 or earlier. Do also need the kernel patch ? Or maybe is something else wrong? RTNETLINK answers: No such file or directory Deleted old root disk on eth0 Unknown filter "flowid", hence option "1:10" is unparsable Unknown filter "flowid", hence option "1:2" is unparsable RTNETLINK answers: Invalid argument RTNETLINK answers: Invalid argument RTNETLINK answers: Invalid argument RTNETLINK answers: Invalid argument Thanks! Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
HTB - sperating metro and international traffic
Hello. I need to separate international traffic (sites outside my region) and metro traffic. I need this because I want to give more bandwidth to metro traffic. I have setup iptables to mark packest based on destination, mark 6 for metro ip classes and mark 5 for int. (every other dst) Now I managed to setup a script but I don't know how would a tc command line would be for international traffic. Maybe someone can give me a hint about this. I have setup 2 different classes for int and metro traffic and in my script I shape only metro, but for int I'm a bit confused. Something like: /sbin/tc class add dev eth2 parent 1:2 classid 2:11 htb rate 50kbit ceil 100kbit prio 5 /sbin/tc filter add dev eth2 parent 1:0 protocol ip prio 5 u32 match ip dst 192.168.254.10 flowid 1:11 Would this be the correct commands? Thanks. Alex ---begin my script /sbin/tc qdisc del dev eth2 root echo "Deleted old root disk on eth2" sbin/tc qdisc add dev eth2 root handle 1: htb default 10 /sbin/tc class add dev eth2 parent 1: classid 1:1 htb rate 10M #metro /sbin/tc class add dev eth2 parent 1:1 classid 1:10 htb rate 10M /sbin/tc filter add dev eth2 protocol ip parent 1:10 prio 3 handle 6 flowid 1:10 #international /sbin/tc class add dev eth2 parent 1:1 classid 1:2 htb rate 10M /sbin/tc filter add dev eth2 protocol ip parent 1:10 prio 3 handle 5 flowid 1:2 #begin metro shaping rules for each user /sbin/tc class add dev eth2 parent 1:1 classid 1:11 htb rate 50kbit ceil 100kbit prio 5 /sbin/tc filter add dev eth2 parent 1:0 protocol ip prio 5 u32 match ip dst 192.168.254.10 flowid 1:11 /sbin/tc class add dev eth2 parent 1:1 classid 1:12 htb rate 50kbit ceil 100kbit prio 5 /sbin/tc filter add dev eth2 parent 1:0 protocol ip prio 5 u32 match ip dst 192.168.254.11 flowid 1:12 etc --end-- -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Dynamic bandwith allocation
Hello, I curently have setup bandwith limiting by using cbq.init script to limit about 100 workstations to a specific amount of bandwith, but I need to change that to a dynamic bandwith allocation. I'm using a rh9 router with kernel 2.4.21 and I want to setup bandwith allocation dynamically between active users. If one needs more bandwith and it is available, he must be able to use it. In my curent setup if I have only one active user on network, his download/browsing speed can't increase, he will always be limmited at a specific rate. I also have local traffic (metropolitan traffic - a couple of ip classes that some sites in my town are using and for which I have access at a greater speed than the speed for external traffic, the rest of internet). If it's necesary I will switch to HTB, it doesn't matter, the point is that I need to get this done and the docs that I found on the net are a little confusing. I also need to prioritize interactive traffic (IRC and yahoo/msn messengers) and ICMP ping (to impress my boss :-) ). The documentation has done nothing but to confuse me in this situation. Please help me with this! Thank you in advance for any kind of help. Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Java & mozilla/netscape
What's the corect installation procedure for java on rh9 so that I will be able to use the java pluging for mozilla and also to be able to run java applications? Thanks. Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
postfix, quota & virtual domains
I need to setup postfix with virtual domains and be able to specify quota for virtual users. I downloaded postfix 2.0.14 rpm for RH9. What should I change in postfix config to use quota for virtual users? The users will check their mail via vm-pop3d and openwebmail. Thanks. Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
PHP rpm build
I have just downloaded php 4.3.3 (tar.bz2 file) and I want to build a rpm from it but when I issue rpm -ta php-4.3.3.tar.bz2 it complains about an incompatible architecture. Very very strange error Anyway I'm running RH9 on an Athlon XP with kernel 2.4.21 (not the default rh kernel but a custom build from sources ntfs support etc...). Any ideeas on what I'm missing here? Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Blocking ymessenger from squid
I have setup 3 internet links, 2 for web traffic (loadbalancing) and one for the rest of it (yahoo messenger, irc, email and stuff...). I have a squid proxy for web which uses the 2 loadbalancing lines and I have bloked port 80 on the router for the users on the local net so they are forced to use squid for www. The problem is that some of them are using squid proxy for yahoo and msn messenger instead of seting the no-proxy option in these programs. I need to block access to this type of traffic on squid! How can I do that? I want to make them use the first line which is meant for this and not the proxy server which exists to serve only web traffic. Thanks! Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
KDevelop bugs in Red Hat 9
Hello, What do I have to fix in KDevelop files to make Terminal C++ working? I have KDevelop 2.1.5 with Red Hat 9. Thanks. Alex Krouglov
Openwebmail & strange error...apache related?
I think this is maybe off-topic but I couldn't get an answer fron openwebmail forum on sourceforge so I thought I ask you guys so here it is: I was trying to get postfix and vm-pop3d to work with openwebmail but I got a lot of errors so I decided to continue tomorrow and restore openwebmail config so that I can work with it the same as I did before, until I figure out what I was doing wrong with virtual domains setup. Now the thing is that now after I put my username and password into the login page all I get is this: http://webmail.domain.com/cgi-bin/openwebmail/%2Fcgi-bin%2Fopenwebmail%2Fopenwebmail.pl /> At first I thought it was a browser problem... maybe IE got nuts on me, so I installed mozilla but the same thing happed. I booted to Linux and tried againg with Netscape and... nothing. In my apache logs I get this: "POST /cgi-bin/openwebmail/%2Fcgi-bin%2Fopenwebmail%2Fopenwebmail.pl HTTP/1.1" 404 1286 What am I missing here? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Samba errors
Aug 6 17:52:50 main nmbd[17890]: This response was from IP 192.168.254.60, reporting an IP address of 192.168.254.60. Aug 6 18:28:12 main nmbd[17890]: [2003/08/06 18:28:12, 0] nmbd/nmbd_namequery.c:query_name_response(112) Aug 6 18:28:12 main nmbd[17890]: query_name_response: Multiple (2) responses received for a query on subnet 192.168.254.1 for name WORKGROUP<1d>. Aug 6 18:28:12 main nmbd[17890]: This response was from IP 192.168.254.60, reporting an IP address of 192.168.254.60. I get a lot of these messages on my rh9 machine with samba-2.2.8a-1 and I don;t know why or what should I do to fix this. Here is my smb.conf: -- [global] log file = /var/log/samba/log.%m smb passwd file = /etc/samba/smbpasswd name resolve order = lmhosts bcast socket options = TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_RCVBUF=8192 SO_SNDBUF=8192 domain master = yes interfaces = 192.168.254.1/255.255.255.0 127.0.0.1/255.0.0.0 bind interfaces only = yes hosts allow = 192.168.254. 127. encrypt passwords = yes wins support = true dns proxy = no netbios name = A-LGLINK-SERVER server string = Server local master = yes workgroup = WORKGROUP os level = 150 socket address = 192.168.254.1 127.0.0.1 default = homes security = user max log size = 50 [homes] browseable = no comment = Home Directories wide links = no writable = yes create mode = 0664 directory mode = 0775 --- All workstations are Win98 and WinXP and all of them have samba as their wins server. I have also foud that at a certain point when I try to bowse the network I can only see a couple of computers (not even half of them). The same smb.conf I had 2 months ago and everything was working just fine, but now Can you give me some hints on what should I do and why does this happen? Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
hylafax+samba
Hello, I have a problem with setting hylafax and samba. Actually, everything works great, MS Windows workstations are able to send fax through my samba server, but when, for example, the document they want to send have any image (in my case there some logos grayscale logos on a white background) this images are not converted in a right way. If a grayscale image on a white bg is send, the final fax has a grayscale image on a dotten bg. How can I fix it? -- Best Regards, Alex Mamtchenkov -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: Samba errors
I know what OS LEVEL does and in my experience it's enough to put a value of 99 or even 65 to win browser elections over winnt/2000 adn that's why when I got these problems I tried to rise the value to 150 because I don't know if with a value of 99 samba will win over winxp, but as I can see this is not the problem here... because I still get those messages, so I'm a bit confused about what is really the problem. Alex - Original Message - From: "Jason Dixon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 06, 2003 9:06 PM Subject: Re: Samba errors > On Wed, 2003-08-06 at 13:11, Alex wrote: > > Aug 6 17:52:50 main nmbd[17890]: This response was from IP > > 192.168.254.60, reporting an IP address of 192.168.254.60. > > Aug 6 18:28:12 main nmbd[17890]: [2003/08/06 18:28:12, 0] > > nmbd/nmbd_namequery.c:query_name_response(112) > > Aug 6 18:28:12 main nmbd[17890]: query_name_response: Multiple (2) > > responses received for a query on subnet 192.168.254.1 for name > > WORKGROUP<1d>. > > Aug 6 18:28:12 main nmbd[17890]: This response was from IP > > 192.168.254.60, reporting an IP address of 192.168.254.60. > > > > I get a lot of these messages on my rh9 machine with samba-2.2.8a-1 and I > > don;t know why or what should I do to fix this. Here is my smb.conf: > > ... > > All workstations are Win98 and WinXP and all of them have samba as their > > wins server. > > > > I have also foud that at a certain point when I try to bowse the network I > > can only see a couple of computers (not even half of them). The same > > smb.conf I had 2 months ago and everything was working just fine, but > > now > > Can you give me some hints on what should I do and why does this happen? > > Based on the "multiple (2) responses" message, and the fact that you > have occassional browsing problems, it sounds to me like you have > competing domain masters. Check your Windows XP systems to see if any > of them are configured as a PDC. Per the smb.conf manpage... > > " os level (G) > This integer value controls what level Samba advertises itself as for > browse elections. The value of this parameter determines whether nmbd(8) > has a chance of becoming a local master browser for the WORKGROUP in > the local broadcast area. > > Note :By default, Samba will win a local master browsing election over > all Microsoft operating systems except a Windows NT 4.0/2000 Domain > Controller. This means that a misconfigured Samba host can > effectively isolate a subnet for browsing purposes. See > BROWSING.txt in the Samba docs/ directory for details." > > If you still have problems, I'd suggest performing some payload dumps on > your traffic. Unfortunately, it will take some advanced SMB experience > to understand what you're seeing, so you might be better off just > "tweaking ". ;-) > > -- > Jason Dixon, RHCE > DixonGroup Consulting > http://www.dixongroup.net > > > -- > 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: hylafax+samba
On Wed, 2003-08-06 at 02:39, Bret Hughes wrote: > Have you tried using different printer drivers? IIRC the hylafax > (actually I guess we used smbfax for sending) setup is such that the > windows printers are postscript and the postscript conversion happens on > the windows boxes and sends it to the samba setup printer that is really > a pipe to smbfax. Seems like we had better luck with the apple driver > rather than the hp one. Been a while since I did this at my brothers > office. Sure I did. I tried about 5 different postscript drivers including two Apple drivers and three HP. The idea is if I make print to file being in windows environment and then I look at this file under linux, using something like Postscript Viewer - everything is ok (I mean the background of all images is correct. -- Best Regards, Alex Mamtchenkov http://mamont.pp.ru Evrasia Bunker Ltd. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Apache, Mysql & central-european charset
I have a rh9 installed on a server that runs a forum (phpbb) and I need to use local translation (romanian). The thing is that I can't see special caracters like â and such... I understand that I have to modify the settings for mysql and maybe apache, but I don't know how to modify and what should I modify in mysql. Some help? Thanks. Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Strange message
Does anybody know what is this and what would be the cause+fix for something like this? Forged DCC command from 192.168.254.26: 82.xxx.xxx.xxx:1799 Thanks -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Voice chat IM Server
Does anybody know if Jabber supports voice chat and if so, where can I get more info about this. I tried www.jabber.com adn jabberstudio but I could not find anything about this. Also maybe you can recomend me some other IM server with voice chat support if Jabber lacks this. Thanks for info! Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
troubles defining firewall policies
Hello there, First, thank you for the answers of my previous post. For any strange reason my modem won't connect using the v.90 protocol nor i'll reach faster rates than 31,200 bps (accurate connection string: CONNECT 31200 BPS/LAPM/V34/V42bis) but i believe that i have to play with the modem strings harder.. the problem is that i've set the correct init strings to connect @ 46,666 + bps and using V.90 according to the manufacturer's manual and i can't achieve that under linux, something that i could do using Win 2K / XP. For the one who asked about the phone jack and/or line.. Yes, i'm using the same RJ-11 jack and phone line. In any case, thank you for your answers, now here is my new question: i've got problems trying to configure my linux as a firewall via IPCHAINS and i don't know why everything gets blocked when i am just restricting high ports (7000 - 65535). I use RH 7.3 and my eth0 interfase is part of the class C network 192.168.1.0 The IP of the linux machine is 192.168.1.4 and we share a 56K connection via modem (ppp0) using squid and some IP masquerade rules to allow external POP3 and SMTP connections. All of the other computers use the linux machine as their gateways so all the network traffic is held by it. Let's suppose that i want: 1) Grant incoming connections (input chains) for every IP of my network to access every service of my linux machine, no exceptions. 2) Filter out incoming connections from foreign addresses that try to use ports equal or higher than 7000. (i do not use the port 8080 for HTTP / Proxy purposes) 3) Masquerade Ips of my network that want to use the ports 110 (POP3), 21 (FTP) and 25 (SMTP) 4) allow outgoing traffic from Ips of my network (from any port to any port) 5) restrict outgoing traffic from foreign addresses wanting to use ports > 7000 According to these rules, i've created the following rules: Ipchains -P input REJECT Ipchains -P output REJECT Ipchains -A input -s 192.168.1.0/24 -j ACCEPT Ipchains -A input -s ! 192.168.1.0/24 --destination-port 0:7000 -p tcp -j ACCEPT Ipchains -A input -s ! 192.168.1.0/24 --destination-port 0:7000 -p udp -j ACCEPT Ipchains -A input -s ! 192.168.1.0/24 -p icmp -j ACCEPT Ipchains -A forward -s 192.168.1.0/24 --destination-port 110 -j MASQ Ipchains -A forward -s 192.168.1.0/24 --destination-port 21 -j MASQ Ipchains -A forward -s 192.168.1.0/24 --destination-port 25 -j MASQ Ipchains -A output -s 192.168.1.0/24 -j ACCEPT Ipchains -A output -s ! 192.168.1.0/24 -p tcp --destination-port 0:7000 -j ACCEPT Ipchains -A output -s ! 192.168.1.0/24 -p udp --destination-port 0:7000 -j ACCEPT Ipchains -A output -s ! 192.168.1.0/24 -p icmp -j ACCEPT When i try the above settings, everything gets blocked... External SMTP, DNS queries, MS Messenger connections, even web surfing (having squid as http proxy of course) why? Are my firewall policies bad conceived? Have i used the wrong reasoning to create them? Are they correct but the physical implementation is wrong? Please help. I also tried the other way, ACCEPTing every input and output connection but using 7001:65535 as --destination-port and -j REJECT as the jump policy but i got mixed results... I could use HTTP, check external POP3 accounts and send messages using the ISP's external SMTP server but DNS queries were still blocked... MSN Messenger uses low ports, above 1000 but below 5000, i am allowing ingoing and outgoing traffic for foreign connections and it simply won't connect, why? Same happens with yahoo messenger.. I use squid as http proxy for these instant messaging programs... Am i probably checking which ports outgoing connections are trying to use? Is there any application out there (graphical or not) that could accurately tell me FOR SURE which servers:ports are trying to connect to which Ips:ports of my network? (and the other way too, which Ips:ports from my network want access either to my linux PC's server:ports or any foreign address:ports) Netstat is kinda basic and is not as accurate as i want it to be, unless i am using it the wrong way. Thank you in advance, Paul D Fabre. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
troubles defining firewall policies
Hello there, First, thank you for the answers of my previous post. For any strange reason my modem won't connect using the v.90 protocol nor i'll reach faster rates than 31,200 bps (accurate connection string: CONNECT 31200 BPS/LAPM/V34/V42bis) but i believe that i have to play with the modem strings harder.. the problem is that i've set the correct init strings to connect @ 46,666 + bps and using V.90 according to the manufacturer's manual and i can't achieve that under linux, something that i could do using Win 2K / XP. For the one who asked about the phone jack and/or line.. Yes, i'm using the same RJ-11 jack and phone line. In any case, thank you for your answers, now here is my new question: i've got problems trying to configure my linux as a firewall via IPCHAINS and i don't know why everything gets blocked when i am just restricting high ports (7000 - 65535). I use RH 7.3 and my eth0 interfase is part of the class C network 192.168.1.0 The IP of the linux machine is 192.168.1.4 and we share a 56K connection via modem (ppp0) using squid and some IP masquerade rules to allow external POP3 and SMTP connections. All of the other computers use the linux machine as their gateways so all the network traffic is held by it. Let's suppose that i want: 1) Grant incoming connections (input chains) for every IP of my network to access every service of my linux machine, no exceptions. 2) Filter out incoming connections from foreign addresses that try to use ports equal or higher than 7000. (i do not use the port 8080 for HTTP / Proxy purposes) 3) Masquerade Ips of my network that want to use the ports 110 (POP3), 21 (FTP) and 25 (SMTP) 4) allow outgoing traffic from Ips of my network (from any port to any port) 5) restrict outgoing traffic from foreign addresses wanting to use ports > 7000 According to these rules, i've created the following rules: Ipchains -P input REJECT Ipchains -P output REJECT Ipchains -A input -s 192.168.1.0/24 -j ACCEPT Ipchains -A input -s ! 192.168.1.0/24 --destination-port 0:7000 -p tcp -j ACCEPT Ipchains -A input -s ! 192.168.1.0/24 --destination-port 0:7000 -p udp -j ACCEPT Ipchains -A input -s ! 192.168.1.0/24 -p icmp -j ACCEPT Ipchains -A forward -s 192.168.1.0/24 --destination-port 110 -j MASQ Ipchains -A forward -s 192.168.1.0/24 --destination-port 21 -j MASQ Ipchains -A forward -s 192.168.1.0/24 --destination-port 25 -j MASQ Ipchains -A output -s 192.168.1.0/24 -j ACCEPT Ipchains -A output -s ! 192.168.1.0/24 -p tcp --destination-port 0:7000 -j ACCEPT Ipchains -A output -s ! 192.168.1.0/24 -p udp --destination-port 0:7000 -j ACCEPT Ipchains -A output -s ! 192.168.1.0/24 -p icmp -j ACCEPT When i try the above settings, everything gets blocked... External SMTP, DNS queries, MS Messenger connections, even web surfing (having squid as http proxy of course) why? Are my firewall policies bad conceived? Have i used the wrong reasoning to create them? Are they correct but the physical implementation is wrong? Please help. I also tried the other way, ACCEPTing every input and output connection but using 7001:65535 as --destination-port and -j REJECT as the jump policy but i got mixed results... I could use HTTP, check external POP3 accounts and send messages using the ISP's external SMTP server but DNS queries were still blocked... MSN Messenger uses low ports, above 1000 but below 5000, i am allowing ingoing and outgoing traffic for foreign connections and it simply won't connect, why? Same happens with yahoo messenger.. I use squid as http proxy for these instant messaging programs... Am i probably checking which ports outgoing connections are trying to use? Is there any application out there (graphical or not) that could accurately tell me FOR SURE which servers:ports are trying to connect to which Ips:ports of my network? (and the other way too, which Ips:ports from my network want access either to my linux PC's server:ports or any foreign address:ports) Netstat is kinda basic and is not as accurate as i want it to be, unless i am using it the wrong way. Thank you in advance, Paul D Fabre. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
a little help with RH 7.3
Hello! I've just subscribed to this list and i hope that someone can help me I have a computer where i have a Redhat 7.3 box with the following hardware descriptions: - Pentium MMX 233Mhz, 64 MB RAM 100Mhz., two 2.1 GB HDDs, 10 Mbps Lan card and an external US Robotics 56K analog modem. My eth0 interface has a private IP address that belongs to the class C 192.168.1.x network and the ppp0 interface dials an ISP service phone to connect to the internet. I use this computer to share the Dial-Up internet service with another 8 computers, i use squid 2.4 Stable 6 as a proxy and i´ve just allowed SMTP and POP3 IP masquerading to allow non HTTP requests to go to the internet, therefore SQUID controls the bandwidth and the few web sites that i want my users to access. Now, that i have described my network layout, i want to ask 2 questions, hoping that you cvan help me: 1) SLOW PPP CONNECTIONS: When this computer used to have Windows 2000 professional and Wingate 4.x i was able to connect at 4.5 - 4.9 Kbps rates. Now, with RH linux 7.3 i've tried everything in order to tune up the PPPD daemon, the /etc/ppp/options file, modem strings, setserial configurations and so on but the modem will only transfer at 3.5 - 3.8 Kbps only... what could be wrong? is there something that i can do to finally boost the speed of my dial-up connection? 2) KAZAA AND SQUID: CBQíng THESE CONNECTIONS: I have a friend and coworker who uses Kazaa to download stuff... i´ve allowed him to do so because he downloads cool stuff now and then that i also like :P however, that takes over the whole bandwidth of this slow dialup connection so i would like to know how to CBQ these connections so that he can download at 2 Kbps at most since i cannot force Kazaa to go through Squid and use delay pools to slow down his downloads.. or.. can i? ... his IP is 192.168.1.24 Please tell me if there is a way to use Squid with Kazaa and use delay pools to limit the bandwidth (although Kazaa only supports SOCKS servers) or if i have to use CBQ instead. If all i can do is to use CBQ, please give me the right script to limit my friend's connection to 2 Kbps over this slow dialup connection with the 56K external modem. Thank you in advance, Paul. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
a little help with RH 7.3
Title: Mensaje Hello! I've just subscribed to this list and i hope that someone can help me I have a computer where i have a Redhat 7.3 box with the following hardware descriptions: - Pentium MMX 233Mhz, 64 MB RAM 100Mhz., two 2.1 GB HDDs, 10 Mbps Lan card and an external US Robotics 56K analog modem. My eth0 interface has a private IP address that belongs to the class C 192.168.1.x network and the ppp0 interface dials an ISP service phone to connect to the internet. I use this computer to share the Dial-Up internet service with another 8 computers, i use squid 2.4 Stable 6 as a proxy and i´ve just allowed SMTP and POP3 IP masquerading to allow non HTTP requests to go to the internet, therefore SQUID controls the bandwidth and the few web sites that i want my users to access. Now, that i have described my network layout, i want to ask 2 questions, hoping that you cvan help me: 1) SLOW PPP CONNECTIONS: When this computer used to have Windows 2000 professional and Wingate 4.x i was able to connect at 4.5 - 4.9 Kbps rates. Now, with RH linux 7.3 i've tried everything in order to tune up the PPPD daemon, the /etc/ppp/options file, modem strings, setserial configurations and so on but the modem will only transfer at 3.5 - 3.8 Kbps only... what could be wrong? is there something that i can do to finally boost the speed of my dial-up connection? 2) KAZAA AND SQUID: CBQíng THESE CONNECTIONS: I have a friend and coworker who uses Kazaa to download stuff... i´ve allowed him to do so because he downloads cool stuff now and then that i also like :P however, that takes over the whole bandwidth of this slow dialup connection so i would like to know how to CBQ these connections so that he can download at 2 Kbps at most since i cannot force Kazaa to go through Squid and use delay pools to slow down his downloads.. or.. can i? ... his IP is 192.168.1.24 Please tell me if there is a way to use Squid with Kazaa and use delay pools to limit the bandwidth (although Kazaa only supports SOCKS servers) or if i have to use CBQ instead. If all i can do is to use CBQ, please give me the right script to limit my friend's connection to 2 Kbps over this slow dialup connection with the 56K external modem. Thank you in advance, Paul.
Re: Glibc update & dead redhat - HEEEELLLPPP !!! - SOLVED
I have found the solution for this. It's quite simple, just do: [EMAIL PROTECTED] glibc]# export LD_ASSUME_KERNEL=2.2.5 [EMAIL PROTECTED] glibc]# rpm -Uvh ftp://ftp.redhat.com/pub/redhat/linux/updates/9/en/os/i686/glibc-2.3.2-27.9.i686.rpm - -force or you can do rpm -Uvh --replacepkgs --replacefiles ftp://ftp.redhat.com/pub/redhat/linux/updates/9/en/os/i686/glibc-2.3.2-27.9.i686.rpm That's all!!! - Original Message - From: "Sadanapalli, Pradeep Kumar (MED, TCS)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 11, 2003 4:46 PM Subject: RE: Glibc update & dead redhat - HLLLPPP !!! > Before updating the glibc, you please check the architecture the glibc > RPM . > All other glibc RPMS(Ex: glibc-common) have i383 architecture set, but > only > the glibc RPM is set to i686 architecture. So even while downloading > from redhat > updates, download GLIBC from i686 folder.Then everything will work fine > hopefully, > in case this is the only point you are missing. > > To find the architecture of an RPM, > # rpm -q --queryformat "%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n" > glibc > # glibc-2.3.2-27.9.i686 > I don't know if there is any other reason... > > Hope this helps. > > Pradeep > > > -Original Message- > From: Michael Schwendt [mailto:[EMAIL PROTECTED] > Sent: Friday, July 11, 2003 8:09 AM > To: [EMAIL PROTECTED] > Subject: Re: Glibc update & dead redhat - HLLLPPP !!! > > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Fri, 11 Jul 2003 15:20:18 +0300, Alex wrote: > > > Preparing... > ### > > [100%] > >1:glibc-common > ### [ > > 17%] > >2:glibc > ### [ > > 33%] > > error: %post(glibc-2.3.2-27.9) scriptlet failed, exit status 121 > >3:glibc-devel > ### [ > > 50%] > >4:glibc-debug > ### [ > > 67%] > >5:glibc-profile > ### [ > > 83%] > >6:glibc-utils > ### > > [100%] > > > > I got glibc updates from updates on rehat.com and this is what I get > when I > > install them. Now I'm stuck with a dead RH system. > > rpm - segfaul ls -l segfault everything segfaults. > > > > Any ideeas on what I can do? > > You fetched and installed updates for the wrong processor > architecture: > > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=88456 > > - -- > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.2.2 (GNU/Linux) > > iD8DBQE/Drbi0iMVcrivHFQRAsuVAJ4rWTFZKg6lNNNhNvq6RQM+9mzRcACfUfYR > vOKdNizvYxtjb5oRiU2GKMY= > =7X/b > -END PGP SIGNATURE- > > > -- > 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 > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: qmail or sendmail--what if?
ok, but if user admin, which has setup to receive email for domain1.com ([EMAIL PROTECTED]), want to setup outlook with the adress [EMAIL PROTECTED] then what stops him from sending email by using domain2.com instead of domain1.com ? - Original Message - From: "John McKinney" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 11, 2003 12:19 PM Subject: Re: qmail or sendmail > On Thu, 10 Jul 2003, Alex wrote: > Alex, > Either will work. In sendmail you need to create the virtual user > table (/etc/mail/virtusertable). Add the entries you want > > [EMAIL PROTECTED] admin > [EMAIL PROTECTED] alex > [EMAIL PROTECTED] xxx > > Then hash the table. This will create the 'virtusertable.db'. Make sure to > add the support in your 'sendmail.mc' file. > > FEATURE(`virtusertable',`hash -o /etc/mail/virtusertable.db')dnl > > Run the m4 command on you .mc file after the update and that should get it > working. > > John > > > I need to setup a mail server for 3 domains and I was wondering if I can > > setup sendmail or qmail so that I can have accounts with the same name but > > for different mailboxes. Example: > > > > [EMAIL PROTECTED] -> delivered to unix user: admin > > [EMAIL PROTECTED] -> delivered to unix user: alex > > [EMAIL PROTECTED] - > delivered tu unix user: xxx > > > > Can this be done with sendmail or qmail and if so which one is better/easier > > to setup in this way? > > > > Thanks! > > > > Alex > > > > > > > > > > > -- > 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: Glibc update & dead redhat - HEEEELLLPPP !!!
For the moment I dont have access to the server directly, I'm in a ssh session which I have started earlier (now I cant start another one). Something that can be done remotely? (rescue cd I know, but... remote..??? ) - Original Message - From: "maillists (josef radinger)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 11, 2003 3:40 PM Subject: Re: Glibc update & dead redhat - HLLLPPP !!! > start from redhat-cdrom into rescue-mode and install the last working > version you got. > maybe you have to use chroot to get the paths right (i think --root is > the option). > > yours josef > > On Fri, 2003-07-11 at 14:20, Alex wrote: > > Preparing...### > > [100%] > >1:glibc-common ### [ > > 17%] > >2:glibc ### [ > > 33%] > > error: %post(glibc-2.3.2-27.9) scriptlet failed, exit status 121 > >3:glibc-devel### [ > > 50%] > >4:glibc-debug### [ > > 67%] > >5:glibc-profile ### [ > > 83%] > >6:glibc-utils### > > [100%] > > > > I got glibc updates from updates on rehat.com and this is what I get when I > > install them. Now I'm stuck with a dead RH system. > > rpm - segfaul ls -l segfault everything segfaults. > > > > Any ideeas on what I can do? > > > > > > -- > 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
Glibc update & dead redhat - HEEEELLLPPP !!!
Preparing...### [100%] 1:glibc-common ### [ 17%] 2:glibc ### [ 33%] error: %post(glibc-2.3.2-27.9) scriptlet failed, exit status 121 3:glibc-devel### [ 50%] 4:glibc-debug### [ 67%] 5:glibc-profile ### [ 83%] 6:glibc-utils### [100%] I got glibc updates from updates on rehat.com and this is what I get when I install them. Now I'm stuck with a dead RH system. rpm - segfaul ls -l segfault everything segfaults. Any ideeas on what I can do? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
qmail or sendmail
I need to setup a mail server for 3 domains and I was wondering if I can setup sendmail or qmail so that I can have accounts with the same name but for different mailboxes. Example: [EMAIL PROTECTED] -> delivered to unix user: admin [EMAIL PROTECTED] -> delivered to unix user: alex [EMAIL PROTECTED] - > delivered tu unix user: xxx Can this be done with sendmail or qmail and if so which one is better/easier to setup in this way? Thanks! Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
lost password on rh 6.1 system
hi all, quick question, I've got a rh 6.1 system here and the owners have lost the root password for it. quick pointers as to how to log onto the box? bot off a cdrom and then edit the /etc/passwd / shadow files? Any help appreciated Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Apache 2.4 and frontpage extensions
Does such a thing even exist? If so, then where? I only saw on the net support for apache 1.x, but nothing about versions above apache 2 Thanks! Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: IP Accounting...anyone?
You are very wrong. MRTG does not offer a web interface with passwords for each user to see his trafic and it does not cound TOTAL MB transfered by that user in a given period of time. On Wed, 2003-07-02 at 16:39, Robert Canary wrote: > mrtg > > Alex wrote: > > > > Can anyone recommend a good traffic accounting software that will let > > clients see the number or Mb transferred in a given period of time with > > or without graphics showing speed. Basically I need something that has a > > web interface and when a user logs in with his password he will be able > > to see his ip accounting info. > > > > I have tried netacct-mysql but it shows wrong counters. Maybe someone > > knows something better that actually works ? > > > > Thanks! > > > > -- > > 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
IP Accounting
Can anyone recommend a good traffic accounting software that will let clients see the number or Mb transferred in a given period of time with or without graphics showing speed. Basically I need something that has a web interface and when a user logs in with his password he will be able to see his ip accounting info. I have tried netacct-mysql but it shows wrong counters. Maybe someone knows something better that actually works ? Thanks! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Nectacct & mysql
Is any of you using netacct-mysql and netstat for traffic accounting? I'm using this and it seems that it give the wrong count on the number of megabytes passed in/out . Maybe anyone can help me with this.../me very puzzled and clueless. Here is my config: rh9 with kernel 2.4.20 which holds a private network with NAT. I have also tried the same config without NAT, only with squid setup, without any kind of NAT. I did some tests by downloading trough squid a 50 megabytes file and some browsing for 30 minutes and nestat only display something like 2,3 or 4 megabytes...something similar...anyway nothing not even close to the real amount of traffic (not counting the traffic generated by the rest of the users on the privaet network ..and they did work on the net at that time). Thanks in advance for any hints on this! Alex --- My files: /usr/local/etc/naccttab : sniff 0 database mysql mysql_user acct mysql_password x mysql_host 192.168.254.1 mysql_port 3306 mysql_database netacct pidfile /var/run/nacctd.pid compactnet 192.168.254.0 255.255.255.0 flush 330 fdelay 70 device eth1 device eth2 ignorenet 127.0.0.0 255.0.0.0 debug 5 debugfile /tmp/nacctd.debug headers tr 40 38 headers lo 14 12 headers eth 14 12 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: SSH after install RH9?
Hello Chuck Dutrow, Once you wrote me about "SSH after install RH9?": > >Does anyone know the command line to install/enable ssh from command >line? > I have RH9 and usually do it this way: service sshd start If you need it to be started at bot time, try this: chkconfig --level 345 sshd on -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
squid and cbq
I have a squid server that provides www and ftp access to an internal network but I need to limit the bandwith. In order to do that I have to set the limits on the eth interface that goes to local net or on the interface the goes to internet? I think that I sould set cbq on the interface to local net, but with this type of setup, the squid server will still receive data from internet at full speed. If I setup cbq on the internet interface then I would probably only limit the upload or maybe not? I'm not sure, maybe some of you can help me with this. There would be still a possibility, to setup rules on the internet interface that will limmit the traffic comming to the port squid uses to receive data (what port is that? don't know either), but with this setup there is another problem: not all the users need to have the same amount of bandwith, so how can I tell cbq to give more speed only to a specific user when I have no NAT setup and don't want to either. This is a puzzle for me, so maybe if you guys have any hints on how to do this, you will share that with me. Thanks. Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
ip route and 2 links
I have been trying to setup some type of load balancing by directing all www trafic to a second net link via a second isp from which I have only one ip address asigned and the rest of the traffic via the main link at isp1. I needed that so I can do SNAT to a couple of routable ip's I received from isp1. I'm trying this with no luck, and I was wondering maybe someone has more experience with this type of setup. I seems that whatever I do the packets only whant to go via isp1. I have attached a script which contains all the stuff that I'm using. Any ideeas? Thanks Alex go-double Description: Binary data
Re: Postgresql
I did su - postgres but when I try to insert the file I get the same error. :( -bash-2.05b$ psql -U bbstatus -e bbstatus < bbstatus.sql psql: FATAL: IDENT authentication failed for user "bbstatus" Alex - Original Message - From: "Mufit Eribol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 10, 2003 2:49 AM Subject: Re: Postgresql > Enter 'su postgres' first. Then issue postgresql commands. > > Mufit -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Postgresql
Hello, Maybe someone can help me with this problem that I can't get past of. I have the following scenario: RH9 with postgresql installed from dist adn I want to install bbstatus, a tool for traffic accounting. This tool works only with postgresql and it requires a database to be created, from an xxx.sql file that I have in the archive. Now the problem is this: I started postgresql for the first time from /etc/rc.d/init.d/postgresql start and it says "initialising database..." and ok after that. But when I try to run psql from the root console I get this: [EMAIL PROTECTED] sql]# psql psql: FATAL: Database "root" does not exist in the system catalog. and If I try psql -U bbstatus -e bbstatus < bbstatus.sql I get the same error. The have created user "bbstatus" with useradd everything on on this side, but postgresql only gives me errors. What am I missing here? Any special config steps to take after I installed RH9 (postgresql from redhat dist) ? Thanks, Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Apologies
My sincere apologie to everybody on this list for that message. I did a reply instead of writing the corect address in the field. I'm really sory for this! Please accept my apologies! Thank you, Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
From someone
Please go FUCK YOURSELF !!! ...and... almost forgot: Norton AntiVirus removed the attachment: movie.pif. The attachment was infected with the [EMAIL PROTECTED] virus. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 06, 2003 7:17 AM Subject: Re: 45443-343556 > Please see the attached file. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
ip accouting
Did any of you worked with ipac-ng ? If so maybe you can give me a hint in the following problem: I made a cronjob for ipac-ng in /etc/crontab to run every 5 minutes. I saw the first graph indicating 5 megs of traffic from my workstation. I said ok, this isn;t bad since I've only browsed a couple of websites, but I wanted to saw what does it look when I download something and...suprise...nothing changed in the graph. I downloaded a 15-20megs file with 16kbytes/sec from IE and it took about 10 minutes maybe more because the speed wasn't constant. BUT, this is the tricky part: why ipac-ng didn't show an increase in speed and in total byte count ? Oh, well it inceased in total byte count, going from 5 megs as it was before the download to 6 megs after I finished aprox. 20 megs. So, what am I doing wrong here? here's a part of my config file: in-all |ipac~i||all|| out-all |ipac~o||all|| in-192.168.254.2|ipac~i||all|0/0|192.168.254.2 out-192.168.254.2|ipac~o||all|192.168.254.2| and so on Any ideeas? Thanks, Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Adjust date & time
How can I adjut the clock on my machine (RH 9 system)? I reads 6 am and instead the corect time is 01:00 PM Thanks -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
IPAC-NG Compile error
I'm using a RH9 system with glibc-devel, postgresql-devel and gdbm-devel installed and when I try to compile ipac-ng ver. 1.2.7 from http://freshmeat.net I get the following errors: gcc -c -DHAVE_CONFIG_H -DINSTALLPATH=\"/usr/local/sbin\" -g -O2 -Wall -I/usr /include/pgsql xmalloc.c -o xmalloc.o ar -crus libipac.a lock.o rule.o xmalloc.o : -obatch.yy.c batch.l gcc -c -DHAVE_CONFIG_H -DINSTALLPATH=\"/usr/local/sbin\" -g -O2 -Wall -I/usr /include/pgsql batch.yy.c -o batch.yy.o gcc: batch.yy.c: No such file or directory gcc: no input files make: *** [batch.yy.o] Error 1 Any ideas? Thanks, Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
patching bonding interface to support 802.3ad in kernel 2.4.20-13.9
hi all, I've been playing with load balancing IP traffic using the ethernet bonding driver. Basically I've got a server with 2 on boards intel 1G network interfaces and I've connected them to a Foundry Fastiron switch with both interfaces on the switch configured to be a trunk. The current setup *seems* to work fine ( the server in question hosts an apple darwin streaming server) but I've noticed that there are some patches for the 2.4 kernel on sourceforge.net to upgrade the bonding driver to support 802.3ad. The problem I've got is that when I try and apply the patches to the RH kernel source 2.4.20-13.0 a number of the patches don''t work. So should I be applying the patches to say, the 2.4.20 kernel source available from www.kernel.org instead of the RH source? Has anyone got 802.3ad configured and working? TIA Alex Sent using Mulberry 3.01a -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: WebCams
Hello Joseph M. Day, Once you wrote me about "Re: WebCams": > Hi Alex, > > When you use your camera under GnomeMeeting, what device does it show up as? > /dev/video0 -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: WebCams
Hello Joseph M. Day, Once you wrote me about "Re: WebCams": > Which camera do you have. I may just go out and buy that one. > I do not know much about my camera (I use it for few days and do not have any docs about it), but this is what I know: D-LINK DU-C300 USB PC Camera -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: WebCams
Hello [EMAIL PROTECTED], Once you wrote me about "Re: WebCams": > Check out... http://www.smcc.demon.nl/webcam/working.html > > There are links to some good apps Thanks! Sure I will check it out now :) -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: WebCams
Hello Joseph M. Day, Once you wrote me about "Re: WebCams": > Did you have to do anything special to get the system to recgnize the camera or > did it load the driver automatically? I didn't. What I did was just plugged camera in useb in watch syslog to see if the system recognized the device - it did. > I've been trying to get my Intel Web Camera (also USB) running but have not had > any luck in RH8. Maybe I should upgrade. But it was OK with RH80. -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
WebCams
Hello there, I just got an old webcam (at least it looks old) to play with it and I wonder what software can I use for it. What I want is to have an image from the camera every few seconds (approximetly 3-6 secs). I use RH9 (just have installed) and I tryed to find something to deal with my webcam. The only apps I found was GnomeMeeting or something like that, but I didn't found anything about automatic snapshots. For now I try to use calorama program, but it can make only a picture per minute, thats not enouh for me. Please help me if you knwo how. By the way, I have "D-Link WebCam" (USB one). -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
XFree86-4.2.99
Hello, I run RH8 on my PC and few day ago I have updated X server from default one, which is included in distribution, to newer one (4.2.99). And I made the same with KDE (from 3.0.4 to 3.1.1). Since I did it I have problems with keyboard layout. The idea is that I need russian layout as well as english. Before, I could switch to it using right Alt key (as was written by me in my XF86Config), but after I have made an update I have only one of two layouts, depending on what I have in the config. If I have 'Option "XkbLayout" "us"' in keyboard section, then I have english layout and if I change "us" ro "ru" I have only russian (no english at all and no option to switch to it). To change the layout, in previous version of X server I used this line in config file: Option "XkbOptions" "grp:toggle" but it doesn't work anymore. How can I restore the function of switching between layouts and to have both of them available? Oh, ye, I saw that there is newer version of X server (4.3..), if I will install it, would it solve my problem or not? -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
.spec uninstall section
Hello, for the whole night through I was trying to create an RPM package from source. What I managed to do was I created a .spec file in /usr/src/redhat/SPEC, I put the .tgz file in /usr/src/redhat/SOURCE and I managed to get an .rpm file in /usr/src/redhat/RPM/i386. Ok, I can install it, it works, but what if I need to uninstall it? After the installation only 1 file will be created (/usr/local/bin/myaddr). When I run a "rpm -e ..." the packages goes away from RPM DB, so if I try to repeat the same action I get something like "The package ... is not installed" but the binary file still exists in /usr/local/bin. In what was should I correct the .spec file to make rpm remove the binary file after deinstallation of my package? -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Large Network, need advice please!!!
- Original Message - From: "Bret Hughes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 08, 2003 6:00 PM Subject: Re: Large Network, need advice please!!! > I am confused. Perhaps an overview of what you are trying to do would > be in order. You speak of Internet connectivity through a sat link, I > can get my head around that, but then you ask for a dvb card, Isn't DVB > digital video broadcast? I don't see the connection. www.scsbroadband.com This company offers internet via sattelite 1 WAY - downlink only, at high speeds, and the DBV card is used for this. The request for the data you receive via sat is made via a normal isp coonection (dial-up, isdn, anything). This type of connection if good if you don't need video conferencing or if you don't want to play games on the net. These applications require a fast connection both ways (up+down). The tricky part with the dvb card is that it has a number on simultanious connections (PID) around 30-50 on a regular card. How will this affect the network? That's why I want t know where can I get something better from what theisp offers. > >From a shear networking stand point the satellite terminal will define > what you need to use to connect to it. Never having done this, I am > assuming that there is a service provider and specific equipment used by > them. > The campus network, and the fiber type, connectors, switches NICs etc > are all dependent on the specific physical topology of the proposed > network. For instance your 15km campus (15sq km?). you can get 1500M > out of multimode fiber @ 100Mbs pretty inexpensively. Beyond that > distance and your are looking at single mode fiber designed for long > haul and it is more expensive. Each building (how many? )will need a > dedicated run to the link unless the campus network can provide that. > Assuming CAt 5 copper in each building is preexisting you will need > router with a fiber nic to direct traffic onto the fiber link. The distance between buildings never exceeds 500-650m. The number of buildings is 27. I don't have any wires inside or outside the buildings (network wires) and I must use a media convertor with 1 iniput for fiber and 2 outputs: 1 for continuing the fiber to the next building and another output for an UTP connection to a 100mb switch that will connect the computers in that building. The fiber optci cable does not have to be single mode, I need a cheap sollution and if multimode is cheaper, then... > These are just a couple of questions that need to be addressed. nce > they are, valid questions to fill in the holes will come easier. Like > what is a good 100Mb fiber nic (we have had good luck with allied > telesin )or can a linux box be the router between the cat 5 network and > the fiber backbone (yes). > > If I am misunderstanding the situation please provide enough detail to > clarify your needs. I would suggest getting some real help from someone > who understands these issues. Most large equipment vendors would be > glad to help you with network design as part of the bidding process. > You can then start eliminating proprietary equimpmet where it makes > sense with linux boxes :) > > HTH > > Bret -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Large Network, need advice please!!!
Dear Sirs, Maybe this is not the right place to ask this, but since I see that some of you people have a lot of experience with this kind of stuff I will ask anyway. (sorry if it's off-topic) This is what I want to do: I want to interconnect a couple of buildings that are located in a 15km area. For this I want to install a fiber optic cable that starts from the main server and it stops on the top of the last building. On each building I need to convert the optic signal to electrical signal so that computers inside the building connect to the network via regular UTP100TX nics. This very large network will be connected to the internet via a sat link (downlink via sat-dvb card and uplink via a 256k wireless modem). The questions: 1. What type of fiber optic cable do I need for this (I need a low cost approach)? 2. can you give me some hints about what type of DVB card should I buy for the sat downlink, a card that works good in Linux? 3. Are the any special considerations that I should take care of when I install the Linux server or the network cables? As a side note I want to mention that the network is designed to accommodate about 200 workstations, and only 100-150 of them will have internet access. Thank You! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
RH8.0 and Exim
Hello all. I am running RH8.0 and Exim-3.x on my PC. In /etc/aliases I set a line to forward all mail from root to user alex. But why if I send mail to any other user (let say leonid) on my machine, it goes to alex? Actually, I think, it goes to root, and then forwarded to alex. How can I fix it to make mail go to its owner except root, whos mail should still go to alex? -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] URL : http://mamont.pp.ru/ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
RE: startup on boot
they dont though, i mean not bashing linux but i mean there must me a simple solution to a problem liek this, i mean does it realy have to be that difficult to execute 2 separate command lines after the system starts? >From: "Rick Carroll" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: RE: startup on boot >Date: Thu, 27 Feb 2003 13:54:00 -0500 > >If these commands require environment variables (like something like MYSQL_HOME or whatever) you will need to source those in before you run your other scripts. >Put a line in rc.d that says something like: >. // > means the path to the script >and in that script you would have lines like: >export MY_SQL_HOME=/export/home/mysql/whatever > > >HTH > >Rick > > >-Original Message- >From: Alex Menendez [mailto:[EMAIL PROTECTED] >Sent: Thursday, February 27, 2003 1:43 PM >To: [EMAIL PROTECTED] >Subject: Re: startup on boot > > both redhat 7.3 and the 2 commands lines are "/etc/init.d/mysql start" "/usr/local/proftpd/current/proftpd -c /etc/proftpd.conf" > >From: Gene Yoo > >Reply-To: [EMAIL PROTECTED] > >To: [EMAIL PROTECTED] > >Subject: Re: (no subject) > >Date: Thu, 27 Feb 2003 09:59:49 -0800 > > > >Alex Menendez wrote: > >>I have an Issue with 2 of my linux servers, > >>I need 2 seperate command lines to be executed when the machine > >>starts automaticly. Im sure this is a simple yet often question. > >> > >> > >>-- redhat-list mailing list unsubscribe > >>mailto:[EMAIL PROTECTED] > >>https://listman.redhat.com/mailman/listinfo/redhat-list > >what version of linux? > >what command line? > > > > > >-- > ><> > > > >-BEGIN PGP SIGNED MESSAGE- > >Hash: SHA1 > > > > > >-BEGIN PGP SIGNATURE- > >Version: GnuPG v1.2.0 (GNU/Linux) > > > >iQCUAwUBPhxERRxoVYCzmrKXAQJK5gP3Y7CTsFyKpEz2p5W4GWI9+qSm+kWfdJ0R > >xNlma0Ma9rAL/OBJcZMo5IXyXas+3Edogbv4Al6dIf8lot1WS0Iaxxl/cg2f7gf+ > >otf7LfNpZDE/6OzR7A1qN6baPMLSjGzywwQWMfSVuWWb6kGQxMsA13Kn68G7Ozxs > >5CODZqUPyg== > >=AolA > >-END PGP SIGNATURE- > > > > > > > >-- > >redhat-list mailing list > >unsubscribe > >mailto:[EMAIL PROTECTED] > >https://listman.redhat.com/mailman/listinfo/redhat-list > > > _ > >MSN 8 helps ELIMINATE E-MAIL VIRUSES. Get 2 months FREE*. >-- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list MSN 8 helps ELIMINATE E-MAIL VIRUSES. Get 2 months FREE*. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: startup on boot
both redhat 7.3 and the 2 commands lines are "/etc/init.d/mysql start" "/usr/local/proftpd/current/proftpd -c /etc/proftpd.conf" >From: Gene Yoo <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: (no subject) >Date: Thu, 27 Feb 2003 09:59:49 -0800 > >Alex Menendez wrote: >>I have an Issue with 2 of my linux servers, >>I need 2 seperate command lines to be executed when the machine >>starts automaticly. Im sure this is a simple yet often question. >> >> >>-- redhat-list mailing list unsubscribe >>mailto:[EMAIL PROTECTED] >>https://listman.redhat.com/mailman/listinfo/redhat-list >what version of linux? >what command line? > > >-- ><> > >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > > >-BEGIN PGP SIGNATURE- >Version: GnuPG v1.2.0 (GNU/Linux) > >iQCUAwUBPhxERRxoVYCzmrKXAQJK5gP3Y7CTsFyKpEz2p5W4GWI9+qSm+kWfdJ0R >xNlma0Ma9rAL/OBJcZMo5IXyXas+3Edogbv4Al6dIf8lot1WS0Iaxxl/cg2f7gf+ >otf7LfNpZDE/6OzR7A1qN6baPMLSjGzywwQWMfSVuWWb6kGQxMsA13Kn68G7Ozxs >5CODZqUPyg== >=AolA >-END PGP SIGNATURE- > > > >-- >redhat-list mailing list >unsubscribe >mailto:[EMAIL PROTECTED] >https://listman.redhat.com/mailman/listinfo/redhat-list MSN 8 helps ELIMINATE E-MAIL VIRUSES. Get 2 months FREE*. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: (no subject)
I tried that but it doesnt work, I even added "echo" commands before the comand lines to tell me what its doin, but i dont even see teh echo lines being displayed. Is it possible that i have another problem or is there another way to complete this task? >From: "Anthony E. Greene" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: (no subject) >Date: Thu, 27 Feb 2003 10:06:49 -0500 > >Alex Menendez wrote: >>I have an Issue with 2 of my linux servers, >>I need 2 seperate command lines to be executed when the machine >>starts automaticly. Im sure this is a simple yet often question. > >Add the commands to /etc/rc.d/rc.local > >Tony >-- >Anthony E. Greene > >OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26 C484 A42A 60DD 6C94 >239D >AOL/Yahoo Chat: TonyG05 HomePage: >Linux. The choice of a GNU generation. > > > >-- >redhat-list mailing list >unsubscribe >mailto:[EMAIL PROTECTED] >https://listman.redhat.com/mailman/listinfo/redhat-list Add photos to your e-mail with MSN 8. Get 2 months FREE*. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
(no subject)
I have an Issue with 2 of my linux servers, I need 2 seperate command lines to be executed when the machine starts automaticly. Im sure this is a simple yet often question. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
How to configure the partition manually during setup partition RH & i wish to do it manually?
how to configure with the minimum requirements for all the partittion need for RH system? Mind anyone tell me how much space for each partition? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
How to configure the partition manually during setup RH?
Any idea? i want more control on the hard disk space rather than let system to define... Best Regards, alex.. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Autologin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Malcolm Candlish wrote: > > Sirs, > > > > Can you tell me please, how to autologin into RedHat 8.0. Talking about local logins, and using KDE, you can set this up in Preferences->System->Login Manager , tab "Convenience". - -A - -- http://andrew.cmu.edu/~apapadop/pub_key.asc 3DAD 8435 DB52 F17B 640F D78C 8260 0CC1 0B75 8265 -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+UHeLgmAMwQt1gmURAjI3AJ0egm9lEehoxwPsAp2mwg8ga2LlAwCdFqZl 7KAveUFukzJcJF3A4FnHfMA= =jGj/ -END PGP SIGNATURE- -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Adding RAM
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 16 February 2003 20:30, Michael Rubin wrote: > I've currently got 1 Gig of ram, not sure the exact specifications of > the chips. The MB takes up to 6 chips. I would like to add another > 512 or Gig. If I just physically add the chips and turn the machine > (RH 7.1) back on, will it be fine (just like windows?) ? Or are > there some special commands/precautions? It's possible that the extra RAM will not be automatically recognized. In case that happens, you will need to add a parameter to your boot loader configuration file (something like "append mem=1512M"). - -A - -- http://andrew.cmu.edu/~apapadop/pub_key.asc 3DAD 8435 DB52 F17B 640F D78C 8260 0CC1 0B75 8265 -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+UD4QgmAMwQt1gmURAs8sAJ44XpiiVpEA0TpnlwS8VRBpDyRvnQCggLjc sL3Do24u8BWXeNTNeurwPpY= =atpc -END PGP SIGNATURE- -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
rmic
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi list! Are there any known issues with the rmic that comes with Java's J2SE 1.4.1? I'm getting NullPointerExceptions during stub generation when trying to compile RMI "hello world" code, just to test the functionality of the system. The same code compiles + executes fine on Win machines. [alex@helios ~]$ rmic -version rmic (GNU libgcj) 3.2 20020903 (Red Hat Linux 8.0 3.2-7) [alex@helios ~]$ java -version java version "1.4.1_01" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01) Thanks - -A - -- http://andrew.cmu.edu/~apapadop/pub_key.asc 3DAD 8435 DB52 F17B 640F D78C 8260 0CC1 0B75 8265 -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+UDx0gmAMwQt1gmURAtbFAJ0VrTwbbtk6KAB8/84HwVGRPUSfOgCeLcHf Oz2ET9sd20VTraUnZCeecQc= =WbO5 -END PGP SIGNATURE- -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
KDE mouse cursor
Hello everyone, I am interested if there is any possibility to change KDE 3.0.x default mouse cursor to another one? -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] ICQ : 163518550 (Mamont) -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: up2date-nox broken?
Hello everyone, Does anybody know how to get all fonts and encoding options in RH8.0 GUI back? I have only few fonts like Sans,Luxi,Courier that are already set on some encoding, but as I remember, there where such fonts as Heletica, Arial, Times... wuth option of changeing their encoding as well. I use KDE-3.0.4 and I can not see these things now :( When I first launched the KDE, ir even didn't ask me about some configurations (you know how it usually do at first start up). It was already configured with RH theme (Bluecurve) everywhere and this things with fonts. I removed ~/.kde/ hoping to see some changes, but almost nothing. The same default RH theme and fonts. How can I every font and encoding back??? -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] ICQ : 163518550 (Mamont) URL : http://mamont.pp.ru -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Default KDE Fonts
Hello all, I have just installed KDE-3.0.5 from rpms which I got from ftp://ftp.kde.org/ and I realised, that I do not see fonts like Times [Adobe] and like this in control panel -> Fonts. I can see only Sans, Luxi and other. How it is possible to get back all default font that are in KDE? First of all, these font that are now in my CP are too few, and secondly, I can not set an encoding for them (I could do it in KDE-3.0.4 and earlier versions of KDE from kde.org). Any Ideas how to add these font and encoding option to KDE-3.0.5? By the way, I am using RedHat 8.0 :) -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] ICQ : 163518550 (Mamont) URL : http://mamont.pp.ru -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Linux and Windows CE Handhelds
Is there an equivalent for M$'s ActiveSync for Linux? I have a handheld and I would like to download my contacts from it. Thanks -Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Linux and Windows CE handhelds
Are there any Linux equivalents for Microsoft's ActiveSync? I have a Compaq Aero hand-held (Windows CE) and I would like to be able to transfer contacts and files back and forth over a serial link Thanks -Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Redhat 8 Install on Old Laptop (Problem)
I recently tried to install Redhat 8 on an old Pentium-75 Laptop with 24MB of RAM (its actually a TI Travelmate 5300). Since I don't have the CDROM, I copied all the ISO files to 10GB harddrive (of which at least 8GB should be accessible) and did a HardDrive install. Everything seemed to be working fine until the part where the installer attempts to detect the video card. (Even though, I did a text based install). It comes back and says there is insufficient memory, reports an error, and stops. Does a TEXT based install of RedHat really require more than 24MB of Ram? My initial attempts of getting RedHat onto this laptop consisted of putting the laptop harddrive on my desktop, doing the install, and then moving the harddrive to the laptop. This resulted in the laptop mysteriously rebooting after the grub screen. I guess I could use a different distribution, but I really like RedHat... Is there a way to make this work? Thanks -Alex -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Kernels and Graphics Cards Drivers...
Hi guys and Gals… and MERRY XMAS!!! I brought this one up before, but it seems to be an ongoing thing… I Installed RH 8 …. AGAIN… and as I was finishing up the install and going through up2date, I realized – too late of course – that the kernel was being updated to 2.4.19 instead of 2.4.18 [ If I am not mistaken ] … Then I thought, shoot, There goes the one about using my Geforce 4 again… THEN, I just ran the nvchooser app from nvidia’s website, and followed the result: Install the src.rpm for the nvidia kernel and the GLX i386 rpm for the OpenGL libs…Well it DID NOT WORK, and I get all sorts of errors when trying to rpmbuild –rebuild the src.rpm package... And using the source from the tarball is not gonna make it better I suspect… I am not sure why it won’t work exactly… Would appreciate any input though… Anyway, I then thought “ well let’s just reverse to the last known kernel version for which nvidia has a driver, and then we’ll update the kernel only when the corresponding drivers are available… Turns out I get error message when trying to install an older kernel package by rpm, and I have no idea how to force the system to revert back to whichever version of the kernel I want to use… So, if anybody has any input either on the src.rpm packages for the Nvidia drivers or on the reverting back to a previous kernel version, I would really appreciate… Thanks Alex - Al3X - Réné
Redhat Drivers for M$ Trackball opotical
Hi list! Is anyone using a M$ trackball [ I know, shame on me ] on their Linux box and If yes, have you found a decent driver for it? THanks to let me know... I would hate to have to buy another mouse. -- Al'3X RENE Extend from your center Do not Overstretch Return to your center Gautama Sakyamuni " Siddharta" -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: Re: Possible conflict between multiple kernels and Nvidia driver installation -- NVIDIA HAS UPDATED DRIVERS
Thanks again Michael It so happens I went to the Nvidia website today, and they have updated their linux drivers... S' all working just fine ... for now :p AL3XR Michael Schwendt Wrote: > > > I have been trying to install the updated drivers for my nvidia > > graphics card, and it seems there might be a conflict during the > > install... To summarize what I did: > > > > I run RH8 on a pentium III => kernel-2.4.18-18.8.0 i686 > > > > Went to Nvidia website, downloaded an ran NVchooser app, to determine > > what GLX rpm and kernel rpm to download => it told me to install > > > > NVIDIA_GLX-1.0-3123.i386.rpmNVIDIA_kernel-1.0-3123.src.rpm > > > > Which I atempted to... It seemed to have troubles with multiples RH / > > linux kernel present on my machine, which where not deleted after an > > up2date or that where additional: > > > > Here is what kernels I had in the boot loader when I first attempted > > to install the drivers: > > > > kernel-2.4.18-14 I think => i386 > > kernel-2.4.18-18.8.0 => i686 > > kernel-2.4.18-18.8.0debug => i686 > > > > When I suspected the conflict was due to Xple kernels, I then removed > > the kernel-2.4.18-14/i386. Then I tried to remove the > > kernel-2.4.18-18.8.0debug / i686 with [rpm --erase kernel] which > > returned that there was no kernel-2.4.18-18.8.0debug installed... > > > > I just ran [rpm -q kernel] and got the same result, only > > kernel-2.4.18-18.8.0 => i686 is installed according to RH8... HOWEVER, > > I still have the choice between kernel-2.4.18-18.8.0 and > > kernel-2.4.18-18.8.0debug in the boot loader... > > > > I am at a loss here, because I am not sure who/which is wrong: the > > boot loader or the rpm database... > > The debug kernel package is called "kernel-debug*". "rpm -q kernel" > won't find it. Query your RPM database like this: > > $ rpm -qa 'kernel*' > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
KDE config files and /root hidden files
Hi there! I tried to move stuff out of my root dir. [ I know, I should have logged as a different user to work on my machine ] and accidentally deleted stuff in my /root directory... Since then a few weird things have happened... Mainly: I tried to open an openoffice document and the Open Office Installation program starts... I can't seem to open Desktop shortcuts to folders, only the 'home" folder works.. I tried to reset the file types associations but it didn t seem to do anything... So, beside EEEP My question would be: [ I know I cant magically recover the things that where deleted by accident in /root ] Is there a way to restaure default settings for KDE 3 without losing my apps, documents etc.?? Would an update to a newer version "reset" somehow / somewhat my KDE environment, or is there anyway when installing an updated version, to force a "clean" install of the GUI??? Or do I have to reinstall my redhat 8.0 yet f.g again??? Al'3X -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
POP3 configuration & settings
Hi everyone... I am setup with dynamic IP provided by my ISP [ one public IP for my local network ] , using http://www.noip.com/ Dynamic DNS aservices and I am trying to setup a pop3 server on my machine... I tried to connect to it from another machine on my network running WinXP / Outlook XP, but with no success, so far... It seems to find the different incoming and outgoing servers but fails to log in and send a test message... I have tried to test the pop3 server by telnet port 110 from theWInXp machine and it works just fine... Finally, I tried to send and receive with local addresses (as opposed to ISP) and here is what I got: > - Transcript of session follows - > <[EMAIL PROTECTED]>... Deferred: Connection refused by mail.tiegbah.net. > 550 5.1.2 <[EMAIL PROTECTED]>... Host unknown (Name server: > unixbox.tiegbah.net: host not found) I am not sure what it is exactly that I need to reconfigure for the addresses/domains to be recognized... Any help would be appreciated --- -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Re: Total nOOb question: uninstalling software (Ben Russo)
Thanks Ben!! That little script idea will certainly come very handy!! > Message: 1 > Subject: Re: Total nOOb question: uninstalling software > From: Ben Russo <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Organization: > Date: 12 Dec 2002 14:30:31 -0500 > Reply-To: [EMAIL PROTECTED] > > On Wed, 2002-12-11 at 11:27, Alex RENE wrote: > > Hi all... I know, it's REALLY a nOOb type of question but... How do > you > > uninstall stuff you did not install by RPMs like from tar.gz and the > > likes ... I have WAY too many browsers installed on my machine, and > I d > > like to get rid of a few other things too... > > > > -- > > Alex RENE <[EMAIL PROTECTED]> > > Another thing you can do, > it takes a long time, but it does work. > > write a script that does the following > as root, I am not testing these commands, > so you might want to think about the gist of > it and then rewrite it yourself. > > mkdir /tmp/FILES > find / -type f > /tmp/FILES/filelist > cd /tmp/FILES > split --lines=50 filelist > rm filelist > for FILEBATCH in `find . -type f` > do > for AFILE in `cat $FILEBATCH` > do > rpm -qf $AFILE | grep -v "is not owned by any package" >> > /tmp/FILES/not-owned-list.txt > done > done > > Then when you are done you will have a list of the files that > are not owned by any RPMS. > > -Ben. > > > -- Alex RENE <[EMAIL PROTECTED]> -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: File Sizes
On Thu, 2002-12-12 at 04:10, IS Department wrote: > I would like to get a listing of the 100 or 500 or 1000 largest files on my system. >Does anyone know of a command or script to do this? I would want file name/location >and size in bytes. > > Thanks Try : find . -size +2000 -size -4000 -exec ls -l {} \; | more This command finds all files greater than 1000K and less than 2000K Alex Janssen -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Possible conflict between multiple kernels and Nvidia driverinstallation
Hi there... again... I have been trying to install the updated drivers for my nvidia graphics card, and it seems there might be a conflict during the install... To summarize what I did: I run RH8 on a pentium III => kernel-2.4.18-18.8.0 i686 Went to Nvidia website, downloaded an ran NVchooser app, to determine what GLX rpm and kernel rpm to download => it told me to install NVIDIA_GLX-1.0-3123.i386.rpmNVIDIA_kernel-1.0-3123.src.rpm Which I atempted to... It seemed to have troubles with multiples RH / linux kernel present on my machine, which where not deleted after an up2date or that where additional: Here is what kernels I had in the boot loader when I first attempted to install the drivers: kernel-2.4.18-14 I think => i386 kernel-2.4.18-18.8.0 => i686 kernel-2.4.18-18.8.0debug => i686 When I suspected the conflict was due to Xple kernels, I then removed the kernel-2.4.18-14/i386. Then I tried to remove the kernel-2.4.18-18.8.0debug / i686 with [rpm --erase kernel] which returned that there was no kernel-2.4.18-18.8.0debug installed... I just ran [rpm -q kernel] and got the same result, only kernel-2.4.18-18.8.0 => i686 is installed according to RH8... HOWEVER, I still have the choice between kernel-2.4.18-18.8.0 and kernel-2.4.18-18.8.0debug in the boot loader... I am at a loss here, because I am not sure who/which is wrong: the boot loader or the rpm database... Also, could it be simply that the nvidia drivers dont support i686 for the time beeing? I thought recompiling from the source should avoid this pb... HELLLLPPPP PLEEZE Alex RENE -- Alex RENE <[EMAIL PROTECTED]> -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Mozilla / netscape 7 conflict. was Re:Re:Total nOOb question
Thanks for the tip! Now, beeing a total nOOb, I got to figure out how to find the source tree for a given app... I am actually asking this because I would like to uninstall m,ozilla as a browser and keep Netscape 7... I know Ntscp is more "commercial" but I have my reasons to want to keep it... However, I understand that quite a few other apps run on the mozilla engine and I am a bit worried about uninstalling Moz, even if Ntscp also includes the Moz engine... Any insight anyone??? > Well, most packages allow you to run a make uninstall. This needs to > be > run as root. Try going to the source tree of the app and running that. > > Hope this helps!! > > On Wed, 2002-12-11 at 09:27, Alex RENE wrote: > > Hi all... I know, it's REALLY a nOOb type of question but... How do > you > > uninstall stuff you did not install by RPMs like from tar.gz and the > > likes ... I have WAY too many browsers installed on my machine, and > I d > > like to get rid of a few other things too... > > > > -- > > Alex RENE <[EMAIL PROTECTED]> > -- > Joe Giles > [EMAIL PROTECTED] > AOL: mcigiles -- Alex RENE <[EMAIL PROTECTED]> -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Novice need help ->How to - load module and check what module the pc had loaded...
Hi! I'm using Red-hat 6.1. I am 2 weeks new in Linux. Currently, my pc can't use for floppy and also USB mouse. Any idea? I would appreciate your help. Thanks you from alexkit -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE:Re: Total nOOb question: uninstalling software
Merci Patrice!!! How do I find out if there's an uninstall target...?? -- Alex RENE <[EMAIL PROTECTED]> -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Total nOOb question: uninstalling software
Hi all... I know, it's REALLY a nOOb type of question but... How do you uninstall stuff you did not install by RPMs like from tar.gz and the likes ... I have WAY too many browsers installed on my machine, and I d like to get rid of a few other things too... -- Alex RENE <[EMAIL PROTECTED]> -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: USB mouse How to configure? novice need help
Thanks Edward Dekkers. By the way, i don't think i have load the use module in. i can't see usb in the /proc/bus and only have pci but no usb. nonthing inside the /var/logs/messages. How do i load the usb module in? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
USB mouse How to configure? novice need help
Any idea? I am using samsung optical mouse. Thanks you 1st -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Enable - startx
Hi! Can anyone tell me how to configure make the red-hat direct to desktop instead everytime i need to type startx on text mode? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Pb Installing rpm.src packages
Hi guys! Me again… Reinstalled my machine with fresh version of RH 8.0 and KDE3 … I am getting the same type of error message whenever I try to install an src.rpm package (rpmbuild –rebuild): RH seems to be looking for some files/libs/sh scripts that are apparently where it says it’s looking for, but it cant seem to find them and I get an error on exit message… I would copy and paste the output but that’s really long… Alex
Re: Video output possible?
I attempted what you are doing once. My monitor had burned out and I had a (BTV output on my video card. (B (BMagically, Win2k somehow set the video card correctly for a monitor. (B (BWhen I would attempt to boot RedHat, the text console would work fine (as (Bdid the BIOS and everything else). (B (BBut when it came time to start X Windows, all I got was gibberish on the TV. (B (BI have found a few posts on the internet for people in Europe displaying (BXWindows on their TV, but none for NTSC (us) TV's. (B (BIn the XF86Config file (or XF86Config-4), there is a "clocks" line that (Bspecifies what clock settings the dot clock in the graphics card should use. (B (BI found the following site while searching for info on your question: (Bhttp://yebisu.ics.es.osaka-u.ac.jp/linux/HOWTO/XFree86-HOWTO-5.html (Bhttp://www.tldp.org/HOWTO/XFree86-Video-Timings-HOWTO/synth.html (B (BWith only your TV plugged into your video card, try running X -probeonly and (Bsee if it is able to find anything (B (BIf not, and you can dig up an average viewable and actual number of pixels (Bon a TV, you could make your own entry in XF86Config and it should work with (Byour TV (provided your video card can support that rate). The dot clock (Bshould be the product of the 60 (60Hz refresh rate) times the number of (Bhorizontal and vertical pixels (including the non-displayable ones). (B (B (BLet me know if you get it yours working I haven't been able to find a (Bgood page that documents someone hooking their Linux box to a TV. (B (B (B-Alex (B (B (B (B- Original Message - (BFrom: <[EMAIL PROTECTED]> (BTo: <[EMAIL PROTECTED]> (BSent: Wednesday, December 04, 2002 7:08 PM (BSubject: Video output possible? (B (B (B> Just curious if anyone has tired this and what their (B> experience was like. (B> (B> I recently built a small machine to use as a firewall, (B> router and test server. However, since it isn't going to (B> be my main machine and I only have two notebooks now, I (B> thought I would just hook it up to my TV thru the (B> motherboard's RCA or S-video port and thus didn't buy a (B> monitor for it. (B> (B> Anyways, hooked it up thru the RCA connector and got (B> RedHat 8.0 installed no problem in text mode. However, (B> I'm not able to start Xwindows cause RedHat doesn't know (B> how to deal with the TV. I was thinking I could add a (B> device for the tv using Video for Linux (B> (http://www.thedirks.org/v4l2/), but I haven't tired yet. (B> (B> Just wondering if anyone has tired this. Would I be (B> wasting my time and effort just to get Xwindows on a TV? (B> Would love to hear anyone's opinion on this? (B> (B> Thanks, (B> Jim (B> (B> __ (B> Do You Yahoo!? (B> Yahoo! BB is Broadband by Yahoo! (B> http://bb.yahoo.co.jp/ (B> (B> (B> (B> -- (B> redhat-list mailing list (B> unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe (B> https://listman.redhat.com/mailman/listinfo/redhat-list (B> (B (B (B (B-- (Bredhat-list mailing list (Bunsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe (Bhttps://listman.redhat.com/mailman/listinfo/redhat-list
RPM problems
Hi Emanuel, Hi Michael, and hi all Not sure what happened to my last posts, but anyway to answer the both of you guys and Emanuel: Sinagpour depuis 1 an et demi, avant ca Tokyo 1 an Hong Kong 4 ans San Francisco 2 ans Tahiti 1 an etc... ;-) The pb I had with lib required for installation happened with tar balls [ I think thats how you call them ] at configure time. The system requested for libs that turned out to be already installed when trying to install them . As for the RPMs, I tried the redhat-config-packages from xterm, and here is the returned output: Traceback (most recent call last): File "/usr/share/redhat-config-packages/MainWindow.py", line 163, in ? comps = im.readCompsViaMethod(hdlist, progress.update) File "/usr/share/redhat-config-packages/method.py", line 488, in readCompsViaMethod update_method = update_method) File "/usr/share/redhat-config-packages/comps.py", line 387, in __init__ self.readCompsFile(file, self.packages) File "/usr/share/redhat-config-packages/comps.py", line 471, in readCompsFile self.setupStateDicts(packages) File "/usr/share/redhat-config-packages/comps.py", line 420, in setupStateDicts for prov in h[rpm.RPMTAG_PROVIDES]: TypeError: iteration over non-sequence -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
->MYSQL Try this...
i found a site for mysql. i don't know whether is useful to the guy asking for help on mysql. If you think useful, just download it. no harmrite? Or else just ignore this mail... http://www.unixodbc.org/doc/OOoMySQL.pdf Best Regards, Alex Chooi ^___.^ -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Re: Re: Re: RPMs Problems
> Message: 14 > Date: Tue, 3 Dec 2002 12:14:30 +0100 > From: Emmanuel Seyman <[EMAIL PROTECTED]> > To: > Subject: > Reply-To: [EMAIL PROTECTED] > > On Tue, Dec 03, 2002 at 12:20:43PM +0800, Alex Réné wrote: > > > > Also ... Correct me if I am wrong but ... Je pense que tu es Français... > > Peut être que nous pourrions continuer cette conversation en français > > par email... > > Aucun probleme, simplement on est plus nombreux sur la liste. Evidemment... ;-) > > > Anyway. It was not src.rpm's... I was in fact using Gnome: System > > Settings > Packages to try to install additional packages from my RH 8.0 > > cds and also remove packages already installed on my PC... The process > > starts normally, RH checks to see what pkgs are installed and reads > > header info and then... woof!!! Everything disappears from the screen > > and nothing happens... > > ??? > What happens on the command line? See answer to Michael Schwendt > > > I also might add to this that I have indeed tried > > to install src rpm's, and got errors about required libraries which when > > I tried to install them, RH 8.0 just told me it was already > > installed > > Src rpm only complain about dependencies at build time, not install time. [Ditto] > > Emmanuel > > PS: Tu es vraiment a Singapour? Ouais… depuis 1 an et demi… < Tokyo pendant un an << Hong Kong 4 ans <<< San Francisco 2 ans <<<< Tahiti 1 an …. Etc.
RE: redhat-list digest, Vol 1 #6026 - 15 msgs
Hi Michael: Thanks for taking part to the thread... the more the merrier... Anyway... > Message: 10 > Date: Tue, 3 Dec 2002 11:45:10 +0100 > From: Michael Schwendt <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: RPMs Problems > Reply-To: [EMAIL PROTECTED] > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Tue, 3 Dec 2002 12:20:43 +0800, Alex Réné wrote: > [Snipped] > > Anyway. It was not src.rpm's... I was in fact using Gnome: System > > Settings > Packages to try to install additional packages from my RH > > 8.0 cds and also remove packages already installed on my PC... The > > process starts normally, RH checks to see what pkgs are installed and > > reads header info and then... woof!!! Everything disappears from the > > screen and nothing happens... > > Start "redhat-config-packages" from a terminal/console program like > xterm, gnome-terminal or konsole. See what error output you get. > > > I also might add to this that I have > > indeed tried to install src rpm's, and got errors about required > > libraries > > src.rpms don't have dependencies at install-time. Yes, sorry for being so approximate... I got them messages at compile / rebuild time... IU also got the same problem trying to install software from tar.gz : system asked for libs that turned out to be already installed according to RH 8 > > which when I tried to install them, RH 8.0 just told me it > > was already installed > > Please show an example on the command-line. Will try to reproduce the phenomenon Tried the redhat-config-packages ... from the xterm window this time.. Here is the output: Traceback (most recent call last): File "/usr/share/redhat-config-packages/MainWindow.py", line 163, in ? comps = im.readCompsViaMethod(hdlist, progress.update) File "/usr/share/redhat-config-packages/method.py", line 488, in readCompsViaMethod update_method = update_method) File "/usr/share/redhat-config-packages/comps.py", line 387, in __init__ self.readCompsFile(file, self.packages) File "/usr/share/redhat-config-packages/comps.py", line 471, in readCompsFile self.setupStateDicts(packages) File "/usr/share/redhat-config-packages/comps.py", line 420, in setupStateDicts for prov in h[rpm.RPMTAG_PROVIDES]: TypeError: iteration over non-sequence -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RE: Re: Re:RPMs Problems
Hi Emmanuel. First, thanks for baring with me. Also ... Correct me if I am wrong but ... Je pense que tu es Français... Peut être que nous pourrions continuer cette conversation en français par email... If not, my mistake... Anyway. It was not src.rpm's... I was in fact using Gnome: System Settings > Packages to try to install additional packages from my RH 8.0 cds and also remove packages already installed on my PC... The process starts normally, RH checks to see what pkgs are installed and reads header info and then... woof!!! Everything disappears from the screen and nothing happens... I also might add to this that I have indeed tried to install src rpm's, and got errors about required libraries which when I tried to install them, RH 8.0 just told me it was already installed I am at a complete loss by now, as I already have installed a lot of stuff on my machine and dont really feel up to reinstalling everything yet again... Al'X > Message: 6 > Date: Tue, 3 Dec 2002 01:57:05 +0100 > From: Emmanuel Seyman <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: Re:RPMs Problems > Reply-To: [EMAIL PROTECTED] > > On Tue, Dec 03, 2002 at 08:23:41AM +0800, Alexandre RENE wrote: > > > > Well for a start, and to answer your comment, I know Error output > > No output at all? > Are you sure you're not trying to install source rpms (with an > extension ending in .src.rpm). > > Could you give us an exemple of a rpm you've tried to install. > > Emmanuel -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Re: rpmdb corrupt
[EMAIL PROTECTED] schrieb am 02.12.02 16:01:24: > On Mon, Dec 02, 2002 at 03:52:58PM +0100, Alex Degen wrote: > > > > rpm --rebuild does not work. > > Have you tried: > > - kill any rpm processes that you can see with ps > - rm -f /var/lib/rpm/__db* > - rpm --rebuilddb -v -v > > Emmanuel > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list i don't have any /var/lib/rpm/__db*. Aren't there any Packages-backup like on a suse distri? Alex __ Uups, schon wieder den Geburtstag von Antonio verpasst? Wofür gibt es den Organizer von WEB.DE FreeMail? http://freemail.web.de/features/?mc=021144 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: Re: rpmdb corrupt
[EMAIL PROTECTED] schrieb am 02.12.02 16:01:24: > On Mon, Dec 02, 2002 at 03:52:58PM +0100, Alex Degen wrote: > > > > rpm --rebuild does not work. > > Have you tried: > > - kill any rpm processes that you can see with ps > - rm -f /var/lib/rpm/__db* > - rpm --rebuilddb -v -v > > Emmanuel > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list i don't have any /var/lib/rpm/__db*. Aren't there any Packages-backup like on a suse distri? Alex __ Wieviele E-Mail-Adressen haben Sie? Eine, fünf oder gar zehn? Verwalten Sie doch einfach alle unter: http://freemail.web.de/features/?mc=021120 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
rpmdb corrupt
Hello, i tried to upgrade my system using up2date but unfortunately the /var runs out of disk space. I copied all to a differetn partition with more space but now my rpmdb is corrupt. if i do a rpm -qa i get: rpmdb: /var/lib/rpm/Packages: file size not a multiple of the pagesize Fehler: cannot open Packages index using db3 - Das Argument ist ungültig (22) rpm --rebuild does not work. What else can i do? Thanks a lot, Alex __ SMS verschicken und die Telefonnummer gleich im Adressbuch speichern. Geht nicht? - Geht doch! - http://freemail.web.de/features/?mc=021150 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
LPI Certification...Any Idea?
Hi! How's life out there? I'm new in Linux. Any commendation with this certification? I heard it is good Cos it cover most of the unix or linux favor. Please get advice? any recommend book for this ? -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RedHat inst. prob
JIPPPY, sorry for my emotions :) I WANNA SAY THANX TO EVRYONE WHO HELPED ME WITH MY REDHAT INSTALLATION FREEZE PROB. THANK U :) So what was it. For all who wants to know. It wasnt RedHats fault and it wasnt configurations fault an not my fault:) Today my HDD gave up and is now at the graveyard. Tried some new HDD and VOILA. Evrything passed! BIG THANX TO THE COMMUNITY :) Greetz Alex
Re: Installation freeze! Now with my BIOS settings
Hi L Vachon, if anaconda starts probing for video card ---> detects my tnt2 probing for monitor > unable to probe < IS THAT THE CAUSE WHY MY INSTALL FREZZES If ja what can i do against it?? - Original Message - From: L Vachon To: [EMAIL PROTECTED] Sent: Sunday, November 10, 2002 7:13 PM Subject: RE: Installation freeze! Now with my BIOS settings Alex, Did you specifically test the monitor during setup? Even if the OS probes the video card correctly, the monitor must be set correctly. I've seen setups freeze and the monitor has been the culprit.
Installation freeze! Now with my BIOS settings
t anything at the moment)-->irq4-->monitor (cant set anything at the moment)-->irq5-->ignore (cant set anything at the moment)-->irq7-->monitor (cant set anything at the moment)-->irq9-->ignore (cant set anything at the moment)-->irq10-->ignore (cant set anything at the moment)-->irq11-->ignore (cant set anything at the moment)-->irq13-->ignore (cant set anything at the moment)-->irq14-->monitor (cant set anything at the moment)-->irq15-->ignore (cant set anything at the moment)-->system thermal-->ignore-->thermal slow clock ratio-->50-56,25% (cant set anything at the moment)-->Power button function-->on/off-->restore on AC/Power loss-->last state-->rtc alarm resume from soft off-->disabled-->rtc alarm date-->15 (cant set anything at the moment)-->rtc alarm hour-->12 (cant set anything at the moment)-->rtc alarm minute-->30 (cant set anything at the moment)-->rtc alarm second-->30 (cant set anything at the moment)PLUG AND PLAY SETUP:-->Plug and Play Aware O/S-->no-->clear NVRAM-->no-->PCI Latency Timer (PCI Clocks)-->64-->Primary Graphics Adapter-->PCI-->PCI VGA Palette Snoop--> disabled-->OffBoard PCI IDE Card-->auto-->OffBoard PCI IDE Primary IRQ-->disabled (cant set anything at the moment)-->OffBoard PCI IDE Secondary IRQ-->disabled (cant set anything at the moment)-->DMA Channel 0 -->PnP-->DMA Channel 1 -->PnP-->DMA Channel 3 -->PnP-->DMA Channel 5 -->PnP-->DMA Channel 6 -->PnP-->DMA Channel 7 -->PnP-->IRQ3-->PCI/PnP-->IRQ4-->PCI/PnP-->IRQ5-->PCI/PnP-->IRQ7-->PCI/PnP-->IRQ9-->PCI/PnP-->IRQ10-->PCI/PnP-->IRQ11-->PCI/PnP-->IRQ14-->PCI/PnP-->IRQ15-->PCI/PnP-->reserved memory size-->disabled-->reserved memory address-->C8000 (cant set anything at the moment)PHERIPHERAL SETUP:-->OnBoard FDC-->enabled-->OnBoard Serial Port1-->3F8/COM1-->OnBoard Parallel Port-->378-->Parallel Port Mode-->normal-->EPP Version-->n/a (cant set anything at the moment)-->Parallel Port DMA Channel-->n/a (cant set anything at the moment)-->Parallel Port IRQ-->7-->OnBoard IDE-->bothFilesystems will be formatted / and /boot without problems. After that the installationimage is written on the HDD --> machine freeze (cant do nothing, must reeboot manually, no alert) I also tried text mode installation. Same prob. What is my fault? THX Alex
Re: RedHat 8 Inst. freeze
no, this was is not! - Original Message - From: "João Pedro" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 10, 2002 3:38 PM Subject: Re: RedHat 8 Inst. freeze > Alex, it looks like the problem is that you have placed Lilo in > /dev/hda3 wich is the / partition instead of > /dev/hda1 where it should be - the /boot partition . > > Why don't you use Grub instead of Lilo ? You'll see that it's much more > flexible and neat ! > > And, by the way, RedHat configurator recommends 70 Mb ( or 75, can't > remember exactly )of disk space at > /boot but even if you want to have 3 bootable Kernel at a time 40 or 50 > Mb is more then enough space ! > > I hope this is it - try it and good luck ! -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RedHat 8 Inst. freeze
Hi List, I am trying to install RedHat Linux 8.0 with the configurations you see underneath on my machine but the Installation freeze. My System: AMD Athlon 700MHz CPU FIC SD11 Mainboard 384MB RAM 2 x IDE Primary Master Maxtor 30GB HDD, Primary Slave Creative 52x CD ROM Video Card RIVA TNT2 Router I did these configurations RedHat Linux 8.0 in graphical mode CD Installation (CD´s tested with linux mediacheck --> pass) -->Language: German -->Keyboard layout: german (latin w/ no deadkeys) -->Installation type: Server -->HDD Partition: manual with DISK DRUID Drive /dev/hda (Geom: 3736/255/63) (Model: Maxtor 93073U6) I did it like u see next: Device: MOUNT-POINT: TYP: FORMAT: MB: START: END: /dev/hda -->/dev/hda1 /boot ext3 x 102 1 13 -->/dev/hda2 swap x 800 14 115 -->/dev/hda3 / ext3 x 28404 116 3736 -->Bootloader: LILO in /dev/hda3 Network: --> automatically DHCP Packets which I am installing: -->X Window System -->KDE Desktop Environment -->Graphic Internet -->Server Conifg. Tools -->Web Server -->Windows File Server -->SQL Server -->admin. tools -->printer support If I click now next Filesystems will be formatted / and /boot without problems. After that the installationimage is written on the HDD --> machine freeze (cant do nothing, must reeboot manually, no alert) I also tried text mode installation. Same prob. What is my fault? THX Alex
Re: xmms not playing in RH8 ?
Hello João Pedro, Once you wrote about "xmms not playing in RH8 ?": > -when the same file (any mp3 file, for that matter) is opened with xmms > ( or opened in Nautilus with Gnome, wich does the same) the selected > file (or files) doesn't appear in the player . I had the same problem until I undated from redhat and freshrpms.net As I remember there were some packages on freshrpms.net about xmms. > > Has anyone run into this situation? > > P.S. : Didn't try to install all the packages, yet, but already Gnome > and KDE just to be shure ... > > Thanks ! > > > -- Best regards, Alex Mamtchenkov Email: [EMAIL PROTECTED] ICQ UID: 163518550 (Mamont) URL: http://mamont.linux-site.net -- redhat-list mailing list unsubscribe mailto:redhat-list-request@;redhat.com?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list