Can't browse to some sites.

2008-01-15 Thread David Harel
Hi there, At first this sounds real stupid so I apologize. I fail to connect to zap.co.il. other computers (MS) on my network go there with out any problems but another Gentoo (k2.4 and not updated at all) also fails to connect. Didn't notice any other site with similar problems. I tried

SCSI Mischif

2008-01-15 Thread Noam Rathaus
Hi, I have come across a weird behavior of my SCSI: 1) It tends every once if a while to go offline 2) It tends on reboots (might happen after step 1, but not sure if only after step 1) to switch places, disks that used to be sda are now sdb etc. Anyone seen this? I m running: 2.6.18-4-686

Re: Can't browse to some sites.

2008-01-15 Thread Noam Rathaus
Hi, I would guess MTU issues, use (temporarily): ifconfig eth0 mtu 1400 eth0 should be the network/ppp interface you use, if you are connected through a router, and he is the PPP connector use ethN otherwise use pppN On Tuesday 15 January 2008 10:19:37 you wrote: Hi there, At first this

Re: Can't browse to some sites.

2008-01-15 Thread David Harel
Thanks Noam Rathaus wrote: Hi, I would guess MTU issues, use (temporarily): ifconfig eth0 mtu 1400 Didn't help. eth0 should be the network/ppp interface you use, if you are connected through a router, and he is the PPP connector use ethN otherwise use pppN On Tuesday 15 January

Re: Can't browse to some sites.

2008-01-15 Thread Hetz Ben Hamo
I had that issue before with another router (EDIMAX) and then I switched to Linksys. I would suggest to set the MTU to 1452 and see if that works. Thanks, Hetz On Jan 15, 2008 10:40 AM, David Harel [EMAIL PROTECTED] wrote: Thanks Noam Rathaus wrote: Hi, I would guess MTU issues, use

Re: Can't browse to some sites.

2008-01-15 Thread David Harel
Thanks for your help. Hetz Ben Hamo wrote: I had that issue before with another router (EDIMAX) and then I switched to Linksys. If it was the router, wouldn't other machines on my network have the same problem? I would suggest to set the MTU to 1452 and see if that works. Tried both

Re: Can't browse to some sites.

2008-01-15 Thread Aviram Jenik
On Tuesday 15 January 2008 David Harel wrote: Noam Rathaus wrote: Hi, I would guess MTU issues, use (temporarily): ifconfig eth0 mtu 1400 Didn't help. Try: echo 409616384 131072 /proc/sys/net/ipv4/tcp_wmem echo 409687380 174760 /proc/sys/net/ipv4/tcp_rmem (I used to

gcc thoughts

2008-01-15 Thread Leonid Podolny
Hi, list, This letter is probably better suited to hackers-il, but I need help from people that are better acquainted with a development process of gcc. This morning, while browsing through pages of frustratingly irrelevant cscope output, I got an idea. In every kosher *nix development

Re: gcc thoughts

2008-01-15 Thread Yedidyah Bar-David
On Tue, Jan 15, 2008 at 12:57:36PM +0200, Leonid Podolny wrote: Hi, list, This letter is probably better suited to hackers-il, but I need help from people that are better acquainted with a development process of gcc. This morning, while browsing through pages of frustratingly irrelevant

Re: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
1. compilation could be broken and you still need to browse it 2. gcc don't know about cpp (preprocessor) defines more tricks: gcc -E gives you preprocessed file and you could check defines and ifdefs objdump -S - gives you disassemble On Jan 15, 2008 12:57 PM, Leonid Podolny [EMAIL

Re: gcc thoughts

2008-01-15 Thread Tzafrir Cohen
On Tue, Jan 15, 2008 at 01:47:22PM +0200, Constantine Shulyupin wrote: 1. compilation could be broken and you still need to browse it 2. gcc don't know about cpp (preprocessor) defines more tricks: gcc -E gives you preprocessed file and you could check defines and ifdefs objdump -S -

Re: gcc thoughts

2008-01-15 Thread Leonid Podolny
Constantine Shulyupin wrote: 1. compilation could be broken and you still need to browse it Yes, but you can always revert to cscope to solve compilation errors. 2. gcc don't know about cpp (preprocessor) defines First, cpp could pass this info via intermediate files. Second, this info info

Re: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
-S too On Jan 15, 2008 2:45 PM, Tzafrir Cohen [EMAIL PROTECTED] wrote: On Tue, Jan 15, 2008 at 01:47:22PM +0200, Constantine Shulyupin wrote: 1. compilation could be broken and you still need to browse it 2. gcc don't know about cpp (preprocessor) defines more tricks: gcc -E gives you

Re: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
On Jan 15, 2008 2:28 PM, Leonid Podolny [EMAIL PROTECTED] wrote: Constantine Shulyupin wrote: 1. compilation could be broken and you still need to browse it Yes, but you can always revert to cscope to solve compilation errors. If you could revert, why do need duplicated functionality in gcc?

Re: Can't browse to some sites.

2008-01-15 Thread Shachar Shemesh
David Harel wrote: Same (didn't help). Seems to me as something basic in Linux kernel. Use tcpdump with the -w option and also -s 65535 to capture the traffic and post it somewhere. Let's try to debug this. Shachar = To

Re: Can't browse to some sites.

2008-01-15 Thread David Harel
Aviram Jenik wrote: ifconfig eth0 mtu 1400 Didn't help. Try: echo 409616384 131072 /proc/sys/net/ipv4/tcp_wmem echo 409687380 174760 /proc/sys/net/ipv4/tcp_rmem Same (didn't help). Seems to me as something basic in Linux kernel. (I used to have the same

Re: Can't browse to some sites.

2008-01-15 Thread Ori Idan
I had a similar problem. What I did was to set manually the DNS to use and that solved the problem. -- Ori idan David Harel wrote: Hi there, At first this sounds real stupid so I apologize. I fail to connect to zap.co.il. other computers (MS) on my network go there with out any

Re: gcc thoughts

2008-01-15 Thread Ori Idan
gcc as a compiler always work on a single file. For a cross reference, you need something that knows all the files, this is done by ld and it does create a cross reference, this is the map file. However, during development, I still can not link (some files and functions are broken) therefore I

Re: gcc thoughts

2008-01-15 Thread Leonid Podolny
Ori Idan wrote: gcc as a compiler always work on a single file. For a cross reference, you need something that knows all the files, this is done by ld and it does create a cross reference, this is the map file. However, during development, I still can not link (some files and functions are

Re: gcc thoughts

2008-01-15 Thread Leonid Podolny
Ori Idan wrote: Leonid Podolny wrote: Ori Idan wrote: gcc as a compiler always work on a single file. For a cross reference, you need something that knows all the files, this is done by ld and it does create a cross reference, this is the map file. However, during development, I still can

Re: gcc thoughts

2008-01-15 Thread Ori Idan
Leonid Podolny wrote: Ori Idan wrote: gcc as a compiler always work on a single file. For a cross reference, you need something that knows all the files, this is done by ld and it does create a cross reference, this is the map file. However, during development, I still can not link (some

Re: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
BTW, I have script, that makes tags for Linux kernel only for configured architecture. On Jan 15, 2008 5:05 PM, Leonid Podolny [EMAIL PROTECTED] wrote: were never included (such as wrong architectures and not included code during kernel development). -- Constantine Shulyupin Freelance

Re: Can't browse to some sites.

2008-01-15 Thread David Harel
Shachar Shemesh wrote: David Harel wrote: Same (didn't help). Seems to me as something basic in Linux kernel. Use tcpdump with the -w option and also -s 65535 to capture the traffic and post it somewhere. Tried to use pastebin.com but the file is binary. Any suggestion? Let's try to debug

Re: gcc thoughts

2008-01-15 Thread Constantine Shulyupin
This script builds name file:line table from object/exe file. It is easy to make tags from this. objsrc() { nm --defined $1 | cut -f 1 -d ' ' | addr2line -e bin/eb_client /tmp/lines nm --defined $1 | cut -f 3 -d ' ' /tmp/name paste /tmp/name /tmp/lines } On Jan 15, 2008

Re: SCSI Mischif

2008-01-15 Thread Noam Meltzer
Hi, This sounds a bit like an hardware problem. Have you investigated in this direction? - Noam On Jan 15, 2008 10:29 AM, Noam Rathaus [EMAIL PROTECTED] wrote: Hi, I have come across a weird behavior of my SCSI: 1) It tends every once if a while to go offline 2) It tends on reboots (might

Re: SCSI Mischif

2008-01-15 Thread Noam Rathaus
Hi, Hrm, before I go and start my service agreement that usually results in a eyebrow raising on THIS IS LINUX! (on the same scale of THIS IS SPARTA :D) I want to confirm its not my Kernel or anything else it might be. Hardware failures such as this are hard to confirm, verify and display to

Re: SCSI Mischif

2008-01-15 Thread Noam Meltzer
Hi, I have many customers with similar kinds of SCSI controllers running mostly RHEL4 (though many are running RHEL3 5, and a very small part of them non-enterprise Linuxes) and never experienced such a problem. I do not believe that this is a driver issue, and this only leads me to suspect that

Re: Can't browse to some sites.

2008-01-15 Thread Dotan Shavit
On Tuesday 15 January 2008, David Harel wrote: Shachar Shemesh wrote: David Harel wrote: Same (didn't help). Seems to me as something basic in Linux kernel. Use tcpdump with the -w option and also -s 65535 to capture the traffic and post it somewhere. Tried to use pastebin.com but the

Re: SCSI Mischif

2008-01-15 Thread guy keren
1. the order of assigning a SCSI Device file to a SCSI device, is the order of discovery. for example: if you have two internal SCSI controllers, the order of loading their drivers will change the device file assignment. sometimes, the existene of a USB disk-on-key in the system could

Re: Gnu make or replacement?

2008-01-15 Thread Maxim Veksler
On Jan 13, 2008 2:58 PM, Ira Abramov [EMAIL PROTECTED] wrote: I'm helping a client here to start a project from almost scratch. it involves java servelets for Tomcat, building with MAVEN, a few external GPL tarballs that are downloaded from the web, unzipped and compiled (or maybe we'll check