SSH and alias question...


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users SSH and alias question...
# 1  
Old 12-27-2009
Data SSH and alias question...

i regularly login to servers that I donot control. On many of these servers I do not have home dir. I need to set aliases from my host to the remote machine when I ssh in.

for example from when I go from hosta --> hostb. I want all my aliases from hosta to be present in hostb once I login. ( i use SSH to login)

is it possible?

Thanks in advance
Vijay
# 2  
Old 12-27-2009
Hi,

add a file for eg .aliases, and define all your aliases in this file, then call this file from your .bash_profile(of the user, you r logging in with).

cheers
# 3  
Old 12-27-2009
No for this to work I will have to have the .bash_profile on the remote servers...Which I can't have.... I need to send the alias from the host to the remote client.

Quote:
Originally Posted by akshay61286
Hi,

add a file for eg .aliases, and define all your aliases in this file, then call this file from your .bash_profile(of the user, you r logging in with).

cheers
# 4  
Old 12-29-2009
if you have wget ( curl , links , lynx , whatever ) on remote site and you have access to port 80 outside - you can fetch the bashrc file from some site and source it .
# 5  
Old 12-30-2009
ssh config

Edit in your home directory the .ssh/config file and addd the following.
Host x
Hostname x
User x
# 6  
Old 01-12-2010
Real answer: Get the System Administrator to give you a home directory.

Workaround answer: I'd create a script in /var/tmp or /tmp and execute it each time you log in. Just make sure you save a copy of it on 'hosta' so you can put it back on there if the administrator cleans it up.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Create alias files (not alias commands)

If one: $ find -name 'some expression' -type f > newfile and then subsequently wants to create an alias file from each pathname the find command retrieved and the > placed within 'newfile', how would one do this? Ideally, the newly created alias files would all be in one directory. I am... (3 Replies)
Discussion started by: Alexander4444
3 Replies

2. Solaris

Simple question: alias not working for root

OS = Solaris 8 Issue: alias not working for root, but working for regular users # grep root /etc/passwd root:x:0:1:Super-User:/:/sbin/sh # alias dir=ls # dir dir: not found # alias dir="ls -l" # dir dir: not found # alias dir='ls -l' # dir dir: not found # alias... (2 Replies)
Discussion started by: aixlover
2 Replies

3. UNIX for Dummies Questions & Answers

alias question

how would i turn alias off all together? (1 Reply)
Discussion started by: JamieMurry
1 Replies

4. UNIX for Dummies Questions & Answers

ssh question

hi all, I setup a new server using centos 5.0 with webmin installed and its working fine. the only problem i found is that I now cant ssh into the box anymore for some reason. I am able to ssh out of it no problem tho. I did check to see if ssh was running and it was. I did the following to... (12 Replies)
Discussion started by: mcraul
12 Replies

5. Shell Programming and Scripting

question about alias

I am using following alias in csh to find process. alias pp 'ps -ef | grep \!*' >pp java root 27742 27558 0 15:55 pts/12 00:00:00 grep java but It does not work in bash. alias pp='ps -ef | grep \!*' #pp java grep: java: no such file or directory How can I use this feature... (1 Reply)
Discussion started by: hcliff
1 Replies

6. UNIX for Advanced & Expert Users

One Question related to alias

Hello, I have created following alias in csh lab 'rlogin -l user23 complab23' but problem is complab23 does not allow automatic login by checking .rhosts file. So after typing lab on command line I have to type complicate password and if wrong password is typed thrice then account gets... (4 Replies)
Discussion started by: neerajrathi2
4 Replies

7. UNIX for Dummies Questions & Answers

I/O and alias question

Sorry if this should be in the shell scripting area, it seemed too foolish to be answered there -------------------------------- In my .bash_profile i added: alias "sudo su"='bash hard link with bash script at end' It didn't work was a result, what is the quotation problem? ------ ... (2 Replies)
Discussion started by: cleansing_flame
2 Replies

8. UNIX for Dummies Questions & Answers

a question about alias command

Some Unix systems won't enable you to do the following. What danger do you see lurking in this alias? (a) alias who (b)who -a Do you know it? Thanks! (1 Reply)
Discussion started by: jayyu317
1 Replies

9. Shell Programming and Scripting

unix question: user supplied input for 'alias'

I have a program to scan the log files and I want to pipe the output to 'less'. I want to create an alias such that following are equivalent scanlog chunky.lst = /udd/n2man/utils/scanlog chunky.lst|less where chunky is user supplied file which can change. Is this possible as an alias or... (1 Reply)
Discussion started by: ospreyeagle
1 Replies

10. Shell Programming and Scripting

Alias's & Functions - simple question

Having a memory lapse: If I redefine a command using an alias or a function - How do I access the "real" command without specifying an absoulte path: i.e. function man { /usr/bin/man |more } alias ls='/usr/bin/ls -l' How do I specify the ls or man command above without the... (6 Replies)
Discussion started by: kornshellmaven
6 Replies
Login or Register to Ask a Question