It is showing the correct hostname...................nodobout about it.
But can you see that now I am not able to see the current user (previously admin) and also the current directory (previously /usr/)
There's also a good chance that NEPTUNE is hardcoded in some profile or related login script. Hostnames don't get converted to uppercase or misspelled by design of the OS.
I was going to suggest that too, ie. the name in uppercase is a simple hard-coded string in someone's "PS1", rather than anything to do with the machine's hostname setting.
PS1 can be set in "/etc/profile", the user's ".profile", their ".bashrc", possible ".kshrc", and any other scripts they have set up to be called during login.
(Also that splitting of the prompt into 2 lines is not very pretty.)
Hey, there is nothing wrong with splitting the prompt into two lines. The first line is a "status line" and the second line is simply the prompt character. I do all of my prompts this way, mostly because drilling down into a deeply nested subdirectory leaves little room on the line to type commands!
But I would agree with the other comments..."nepttune" is the actual hostname, since that's what returns from the hostname and uname commands. If it quacks like a duck, it's a duck. The "NEPTUNE" is coming from somewhere else.
I don't like a long prompt, so I trim down the path to just the last directory name; I use:
I find that is both compact and informative.
The issue with two-line prompts (for me) is that you're wasting screen lines.
If you want to get really clever, you can issue colour change directives in the prompt, or even set the window title.
But that tends to fall apart if you use a different shell or terminal emulator.
I have an alias defined in which I wish to print the contents of a specific directory using 'ls' based on the if/then condition. The if/then conditions are being correctly evaluated, and the 'ls <path>' result is correct (tested directly in a terminal) although for some reason it seems the 'ls... (4 Replies)
Hello I'm very new to Linux and shell scripting so I only know basic stuff. I'm making a script with the purpose of finding the longest string or word in a file. Here's what I got so far:
#!/bin/bash
longest=""
for i in $(strings -n $1); do
if ]
then
longest=$i
fi
done
echo $longest... (4 Replies)
Hi All,
So we added a new HP-UX 11.31 machine. Copied OS via Ignite-UX (DVD)over from this machine called machine_a. It was supposed to be named machine_c. And it is when you log in...however when I'm in the ILO console before logging in, it says:
It should say:
What gives? And how do... (4 Replies)
I faced an interesting problem on my AIX servers. When I checked last logins with command last I saw that hostnames are wrong. Let say, I made login from workstation xxxxx and with the command last I saw:
root pts/2 yyyyy 5 jan 15:38 still logged in
Ping xxxxx and ping... (3 Replies)
Hi there,
I have a ftp server called atlantis. Because of the f...g french characters, I noticed something very weird. Depending on what program I use (ftp, lftp or ssh) the same character is displayed as three different ways.
On my local computer, the file is correctly displayed as "modéles".... (1 Reply)
I've noted that in order to use commands like ifconfig, I have to prefix the commands with the directory.
/etc/profile shows that the paths should be part of the PATH environment variable; any idea where the bug is?
:confused:
# /etc/profile
# System wide environment and startup... (1 Reply)
Hello,
I am new to Solaris.
I am using stand alone Solaris 10.0 for test/study purpose and connecting to internet via an ADSL modem which has DHCP server. My Solaris is working on VMWare within winXP. My WinXP and Solaris connects to internet by the same ADSL modem via its DHCP at the same... (1 Reply)
I have this script:
#!/bin/ksh
######### Environment Setup #########
PATH=/gers/nurev/menu/pub/sbin:/gers/nurev/menu/pub/bin:/gers/nurev/menu/pub/mac
:/gers/nurev/menu/adm/sbin:/gers/nurev/menu/adm/bin:/gers/nurev/menu/adm/mac:/ge... (5 Replies)