[lug:13129] Re: TCP blocked outside local network?

2008-08-29 Thread billo
My previous reply doesn't seem to have made it here yet. I'll repost it if necessary, but here's some more info. The tcpdump looks OK. Here's a telnet attempt: 08:45:27.779256 myplace.com.32849 > otherplace.com.telnet: SWE [tcp sum ok] 3162274411:3162274411(0) win 5840 (DF) [tos 0x10] (ttl

[lug:13130] Re: TCP blocked outside local network?

2008-08-29 Thread Jeremiah Bess
what is the firewall you are running on the network? Jeremiah E. Bess Network Ninja, Penguin Geek, Father of four On Fri, Aug 29, 2008 at 7:52 AM, billo <[EMAIL PROTECTED]> wrote: > > My previous reply doesn't seem to have made it here yet. I'll repost > it if necessary, but here's some more i

[lug:13131] how to transfer thunderbird-email-accounts to another PC

2008-08-29 Thread gcopper
Distri: Ubuntu 8.04 The following try wasn't successful: step 1: Computer 2: Installed ubuntu and afterwards thunderbird (without creating an email-account). A new path /home/user/.mozilla-thunderbird showes the file "profiles.ini" and the path "bmnwf09.default". step 2: Computer 1 (18 accoun

[lug:13132] Re: TCP blocked outside local network?

2008-08-29 Thread billo
Oddly enough, my first reply didn't make it. Here it is again: > Some random thoughts: > > - Ping is ICMP traffic, not UDP, so that doesn't prove UDP is working. Sorry, I knew that. Brain fart. > - I would get tcpdump or wireshark loaded on that box, and see if it shows > some attempt at traf

[lug:13133] Re: TCP blocked outside local network?

2008-08-29 Thread billo
As an aside, here are some logs from the firewall. The first includes all outgoing and incoming packets, the second is just outgoing. The broken box is 10.20.30.37. In these attempts, I tried to telnet from the machine to 207.192.128.40 (an ISP in Maryland). A machine next to the one that does

[lug:13134] Re: TCP blocked outside local network?

2008-08-29 Thread billo
Another important data point!!! My guy on site took his laptop and set it up as the broken machine ip address in the appropriate port in the switch -- and it works fine! Thus, it must be a configuration issue in RedHat Enterprise. billo --~--~-~--~~~---~--~~ You

[lug:13135] Re: TCP blocked outside local network?

2008-08-29 Thread Jeremiah Bess
I'd have to agree that it's not the firewall, and must be the box. Still could be hardware or software. If you can, run a live-CD on it, and see if it has the same issues. If so, it's got to be hardware. Also try another NIC like previously suggested. Sounds like you guys are close to solving the m

[lug:13136] Re: install a packages with RPM

2008-08-29 Thread Federico Carrillo
Hi, I did the following: > [EMAIL PROTECTED] Desktop]# ls -al > total 692 > drwxr-xr-x 2 root root 4096 2008-08-22 22:34 . > drwxr-x--- 31 root root 4096 2008-08-29 09:35 .. > -rwxrwxrwx 1 root root 1238 2008-06-30 20:57 AdobeReader.desktop > -rw-r--r-- 1 root root 673844 2008-08-22

[lug:13138] how can i make Web Server persionaly....

2008-08-29 Thread JMD Computer
how can i make Web Server persionaly --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Linux Users Group. To post a message, send email to linuxusersgroup@googlegroups.com To unsubscribe, send email to [EMAIL PROTECTED] For more

[lug:13137] how can i learn

2008-08-29 Thread JMD Computer
hello dear how can i learn Linux O.s., please send all details on this mail id :- [EMAIL PROTECTED] SANKET BAROT MEHSANA --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Linux Users Group. To post a message, send email to linuxus

[lug:13139] Re: how can i learn

2008-08-29 Thread Jeremiah Bess
If you wish to receive answers to your questions, please post specific ones here. This is an open group, not an individual information source. Jeremiah E. Bess Network Ninja, Penguin Geek, Father of four On Fri, Aug 29, 2008 at 11:18 AM, JMD Computer <[EMAIL PROTECTED] > wrote: > > hello dear h

[lug:13140] Re: how can i make Web Server persionaly....

2008-08-29 Thread Jeremiah Bess
Google "Apache" Jeremiah E. Bess Network Ninja, Penguin Geek, Father of four On Fri, Aug 29, 2008 at 11:20 AM, JMD Computer <[EMAIL PROTECTED] > wrote: > > how can i make Web Server persionaly > > > > --~--~-~--~~~---~--~~ You received this message because y

[lug:13141] Re: install a packages with RPM

2008-08-29 Thread Iron_Man
Try using the command: rpm -ivh ./gnorpm.96-12.7x.src.rpm This may get rid of the error message regarding 'No such file or directory' On Aug 29, 1:17 pm, "Federico Carrillo" <[EMAIL PROTECTED]> wrote: > Hi, I did the following: > > > [EMAIL PROTECTED] Desktop]# ls -al > >  total 692 > >  drwxr

[lug:13142] How to start open source development?

2008-08-29 Thread Raihan Hasnain
I want to start working on open source development. I need some direction of "how to start" and "where to start". Linux software comes with source files, how to use them? Please let me know. I am almost forgetting C/C++ for not practicing :( If possible suggest me something to work with. If anyo

[lug:13143] Re: install a packages with RPM

2008-08-29 Thread Huy Le
Make sure /usr/src/redhat directory exists. Create it if it does not exist (mkdir -p /usr/src/redhat). Huy -- Huy Le Spring Partners, Inc. http://www.springpartners.com | http://www.TheSimpleMe.com On Aug 29, 10:21 pm, Iron_Man <[EMAIL PROTECTED]> wrote: > Try using the command: >   rpm -ivh .

[lug:13144] Re: Nested Awk "Urgent"

2008-08-29 Thread Huy Le
Hmm... I am not quite sure what you are trying to do. If you are trying to see how many established connections from each client connected to your server on TCP port 80, then the following command will probably give you what you need: netstat -tn |grep "EST" | awk '{print $5}' |sort | uniq -c H