I put "exit" in my .bashrc file. I don't have physical access to the machine so to connect to it I use ssh. I don't have root privileges. Every time I connect to the server, the connection automatically closes.
So far, I've tried:
- Overwriting .bashrc with scp and sftp. The connection closes before I can do anything.
- Using a few different GUI programs to access ssh (connection closes)
- Overwriting the file with ftp. (can't use ftp)
- From my home computer
- $ ssh host "bash --noprofile --norc" (connection closes)
- $ ssh host "mv .bashrc bashrc_temp" (connection closes)
- $ ssh host "rm .bashrc" (same thing)
- $ ssh host -t (connection closes)
Is there anything I can do to disable .bashrc or maybe overwrite the file before .bashrc is sourced?
UPDATE
@ring0
I tried your suggestion, but no luck. The bashrc file still runs first.
Another thing I tried was logging in with another account and sudo editing the .bashrc, but I don't have sudo privileges on this account.
I guess I'll contact the admin.
EDIT
@shellholic
I can't believe it, but this approach worked! Even though "exit" occurs within the first few lines (composed only of a few if blocks and export statements) in the .bashrc file, I still managed to Ctrl-c interrupt it successfully within twenty tries (took about 3 minutes). I removed the offending line in the .bashrc and everything is in working order again.
you can try to abort (ctrl+C) before the exit part of your
.bashrc
is executed.I tried by adding the following at the top of a testuser's bashrc, it works, it's just a matter of timing. Very easy in my case:
I managed to mess up my .bashrc file too on a new cluster I've been given trial access to. Not wanting to seem like a noob, the last thing I wanted to do was ask for help from the admins, and I couldn't get a well-timed ^+C to work.
What did work however, was to send an 'rm' command as a final argument to ssh. i.e.
I couldn't get a 'mv' command to work (tried before without -t), so I think the -t option must have done it, but you can test that if you want. I've now recovered from the .bashrc~ file (made by vim) everything but the dodgy line in question and everything is right in the world! =D
If you can log in as a different user, try this:
You'll need your password, of course.
If I recall some bad experiences I have had like this, the ssh, scp, sftp do seem to run the initialization files.
My suggestion is to use simple FTP and then delete or rename file bad file on the FTP command line after logging in. I'm assumming that your system will allow you FTP access. In such a case, be sure to change your password (securely) when you have finished repair.
From
man ssh
(forOpenSSH_5.6p1
at least, not sure when it was added),..which means you can create
~/.ssh/rc
containing the following:Then when you
ssh
in, the problematic bashrc will be moved out the way, before your login shell is started - you can then obviously fix thebak.bashrc
and move it back into placeA couple of suggestions that worked for me from this Reddit thread:
Connect via SCP or SFTP and edit/rename/delete your .bashrc file that way. Edit - D'oh, I see you said you tried that. Oh well.
I've had the same problem, and somehow was able to solve it. I used ssh to access the system, and pressed and held Ctrl+c as soon as I logged into the system. Then, ~/.bashrc was not read, and I was able to modify it.
init=/bin/bash
at the end of line, 1 .enter to return, b to boot,vim /root/.bashrc
and edit accordingly.exit and now you will be able to login
If you're using Homestead Vagrant...
Here is how I got myself out of this pickle.
(Using Git Bash on Windows 10)
Note: the default password is "vagrant"
These articles helped me: