Sponsored Content
Operating Systems Linux Red Hat Different hostnames with reboot while lan cable, no lan cable Post 302446887 by Mubeen Nakade on Friday 20th of August 2010 04:04:53 AM
Old 08-20-2010
Check if hostname is picked from dhcp when network cord connected..
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

cable modem to sparc

hi , i have sparc machine , i want to connect my le0 (ethernet interface) directly to cable modem , i have created a file resolv.conf,hosts, dhcp.le0,defaultrouter,nisswitch,hostname.le0. i dont know my cable companies <domain name> and <name server assigned to me> , also they even dont know how... (5 Replies)
Discussion started by: raju
5 Replies

2. BSD

cable modem problem

hi I want to setup my cable modem under OpenBSD. I did not configure my network while installing the system. When I type, I get # ifconfig -a lo0 : .... ... ... rl0 : .... ... ... vr0 : ... ... ... I have two network cards (the machine will be a router). I created... (1 Reply)
Discussion started by: fnoyan
1 Replies

3. Solaris

Is the cable you are using a null modem cable or a modem cable

Hi all, Is there any difference between a null modem cable or a modem cable ? i assume that a null modem cable is a normal cable that i used from cpu serial ports to a modem for dialup. please correct if i am wrong, thks (2 Replies)
Discussion started by: waterbear
2 Replies

4. Solaris

How to configure private LAN and coporate LAN on the same machine-Solaris10

Hi , I am trying to configure a private LAN and corporate LAN on the same machien on Solaris 10. How can I achieve this? Thanks (1 Reply)
Discussion started by: deedee
1 Replies

5. AIX

need AIX console cable

Hello ... I am newbie and will be very grateful for any help. I need a serial console cable for my AIX boxes (seems we have lost the one we had!). However I am confused about the one one to order - UK based if possible. I wonder if anyone can point me at a specific one or the exact spec i need to... (0 Replies)
Discussion started by: tim441
0 Replies

6. Solaris

Cable link down

We are unable to ping from Sun Ultra 60 to Ultra 10 machine and vice versa. We are getting an error message Cable Link Down ?. It was working fine. Troubleshooting steps taken. 1) Changed the IPaddresses on both machines 192.168.10.10 and 192.168.10.20. These machines connected through 8 port... (2 Replies)
Discussion started by: vijaykrishna
2 Replies

7. IP Networking

Local Lan, no-ip directed DNS forward, surf within lan

Hi, We have a website running on a local centos 5.4 surfer, static IP. The domain.com uses no-ip.com to take care of the DNS, it forwards all to my server. My router receives the port 80 call, routes it to my server and the world can see domain.com perfectly fine. However, we cannot see... (3 Replies)
Discussion started by: lawstudent
3 Replies

8. UNIX for Dummies Questions & Answers

question on RJ-45 cable

Hi, Quick question on RJ-45 cable. I ran ethernet cable, this cable is about 200 feet long. I only need 100 feet cable, does the extra length going to hurt in terms of speed or signal? Please advise. Thanks. (3 Replies)
Discussion started by: samnyc
3 Replies

9. Hardware

Cable for SUN x4200 DC

Hello, I have a spare SUN server X4200 with a DC PSU (oracle part number 300-2186) The PSU is the one in the photo I was looking in the net about what cable i can order but i couldn't find anything that fit there :) Any idea? Thanks! (2 Replies)
Discussion started by: @dagio
2 Replies
cord(1) 						      General Commands Manual							   cord(1)

NAME
cord - Rearrange procedures in an executable file to facilitate better cache mapping SYNOPSIS
cord [-vV] [-o outfile] [-f] [-c cachesize] [-p maxphases] obj-file reorder-file OPTIONS
The cord command accepts the following options: Prints verbose information. This includes listing those procedures that are considered part of other procedures and that cannot be rearranged (that is, assembler procedures that may contain relative branches to other procedures instead of relocatable branches). The listing also lists those procedures in the flipped area (if any) and a mapping of old location to new. Displays the version of the cord command. Specifies the output file. If not specified, a.out is used. Flips the first cachepage size procedures. When cord was written, the assumption was that procedures would be reordered by procedure density (cycles/byte). This option ensures that the densest part of each page following the first cachepage would conflict with the least-dense part of the first cachepage. Specifies the cache size (in bytes) of the machine on which you want to execute. This only affects the -f option. If not speci- fied, 65536 is used. Specifies the maximum number phases allowed. The default is 20. DESCRIPTION
The cord command rearranges procedures in an executable object file to maximize efficiency in a machine's cache. By rearranging the proce- dures properly, you can reduce the instruction cache miss rates. The cord command does not attempt to determine the correct ordering; it must be given a reorder-file containing the desired procedure order. The reorder file is generated by the ftoc program, which in turn gen- erates a reorder file from a set of profile feedback files (see prof(1)). Processed lines in the reorder file are called procedure lines. Each procedure line must be on a separate source line. Each procedure line must contain the source name of the file, followed by a blank, followed by a qualified procedure name. Nested procedures must be qualified x.y, where x is the outer procedure. A newline or blank can follow the procedure name: foo.c bar (everything else following is ignored) Lines beginning with # are comments, lines beginning with $ are considered cord directive lines. The only directive currently understood is $phase. This directive will consider the rest of the file (until the end of file or next $phase) as a new phase of the program and will order the procedures accordingly. A procedure may appear in more than one phase, resulting in more than one copy of it in the final binary. First, cord will try to relocate procedure references to a copy of the procedure belonging to the requesting phase; otherwise, it will relocate the references to a random copy. Use the -cord option to a compiler driver like cc(1) rather than execute cord directly. The cord options can be specified with -Wc,cor- darg0,cordarg1,.... If you have to run cord by hand, you may want to run it once with the driver using the -v option on a simple program. This will enable you to see the exact passes and the arguments involved in using cord. Warning Since cord works from an input list of procedures generated from profile output, the resulting binary is data dependent. In other words, it may only perform well on the same input data that generated the profile information, and may perform worse than the original binary on other data. Furthermore, if the hot areas in the cache do not fit well into one cachepage, performance can degrade. SEE ALSO
Commands: cc(1), ftoc(1), ld(1), prof(1) Programmer's Guide cord(1)
All times are GMT -4. The time now is 04:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy