Password Troubles


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Password Troubles
# 1  
Old 07-31-2005
Password Troubles

I'm very new to UNIX (I just started working with Terminal 2 days ago) and I don't know the system very well.

I'm having trouble whenever I am asked for a password. I simply... can't type. I press keys on the keyboard but no characters appear on the screen. For example, when I log onto ftp.apple.com anonymously, I'm supposed to give my email as a password.

Code:
331 Anonymous login ok, send your complete email address as your password.
Password:(this is the part where I can't type anything)

I just can't type anything. A n y t h i n g. I can press "enter" (return) and it accepts it, but that doesn't really solve my overall problem.

And this happens everytime I am asked for my password. Like when I'm trying to log in to my own server space. Or trying to temporarily log in as a different user on my own computer using Terminal.

What's the deal?
# 2  
Old 07-31-2005
in UNIX, generally, the keyboard input is not echoed to screen when typing a password; however the program will recieve the input as expected.
i'm not sure about the idea behind it, it might be intended to disable password output through stdout/stderr, or prevent peepers to learn how long your password is (this information is useful for brute for cracking).
# 3  
Old 08-02-2005
Yeah that makes sense. But when I try to log into places where I know the password (i.e. my own server via sftp) I type in my password and it is not echoed, and when i hit return it claims that I haven't entered the correct password.

Argh!
# 4  
Old 08-03-2005
Please help! I'm basically stuck now, I can't really move on with Unix if I don't know how to type in a password. Smilie
# 5  
Old 08-03-2005
Have you gone throuhg the usual steps? i.e.:

- ensuring proper use of capitalized, numeric and special characters
- attempting to log in with a different client
- attempting to log into a different service (i.e.: ssh)
- Checking your client's character encoding settings
- Ensuring that the server is actually set up to accept anonymous connections. A few configurations I've seen will pretend that logging in anonymously works.

Chill. Bumping isn't among the most favoured of practices here, from what little I recall.
# 6  
Old 08-03-2005
Special Characters

I am sure this has been brought up before, but people new to Unix may not be aware of it. There are two special characters that should be avoided at all costs when creating a password. This may not be the trouble you are running into, but it is worth knowing about later on.

The two characters are "@" and "#". These have special meanings in Unix. The problem is that often the password program will accept these characters when the password is created but won't recognize them later. In my case, a Unix Admin left the company and a former Windows Admin was told to change the root password. Being used to Windows, he created a password with an "@" in it. We found that we could log in from the console and from telnet, but we could not su (change user) to root and some remote connections did not work right. One server would not let us log in as root because it was using an older login program.

;
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Password sent via reset password email is 'weak' and won't allow me to change my password

I was unable to login and so used the "Forgotten Password' process. I was sent a NEWLY-PROVIDED password and a link through which my password could be changed. The NEWLY-PROVIDED password allowed me to login. Following the provided link I attempted to update my password to one of my own... (1 Reply)
Discussion started by: Rich Marton
1 Replies

2. UNIX for Advanced & Expert Users

Troubles with OpenSSH

Hi, I am trying to login from one AIX server to another without using a password, a basic configuration, however it doesn't seem to work. All things are in place. I have both a public and private key in the ~/.ssh folder and also have an "authorized_keys" file on the target-server containing... (5 Replies)
Discussion started by: Hille
5 Replies

3. BSD

PF troubles on OpenBSD 5.0

I am setting up a system as an ADSL gateway. ADSL is working fine. PF is not forwarding for some reason. # ifconfig lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 33196 priority: 0 groups: lo inet6... (0 Replies)
Discussion started by: John Tate
0 Replies

4. Shell Programming and Scripting

awk and tr troubles

I am trying to make all the fields containing lower case letters upper case and the third field of a file display ** instead. I have this: awk '{printf "%s %s ** %d %d\n", $1, $2, $4, $5}' database.txt | tr '' '' < database.txt And that only changes it to upper case, other... (4 Replies)
Discussion started by: Bungkai
4 Replies

5. Shell Programming and Scripting

for loop troubles

What I have here is a pretty textbook recursive function. Its purpose right now is simply to display all folders that don't contain folders. It works fine in all instances I can think of... except one. If there is a folder with a space in its name, the thing goes Kablooie. AFAIK the problem comes... (5 Replies)
Discussion started by: divisionbyzero
5 Replies

6. Shell Programming and Scripting

if-statement troubles

I try to compare the day and month of someones birthday with the day and month of today, so my little bash script can send a mail to the person that has its birthday that day. The first line of the file birthdays looks like this: firstname,lastname,01/01/1990,.... The variable birthday's... (4 Replies)
Discussion started by: doc.arne
4 Replies

7. HP-UX

cron troubles

I have a cronjob that I need to run everyday and it needs to have todays date inputed, here is what I have, but is not working as expected.......... 23 02 * * * cd /path;./RequestSummaryReport.sh $(date +%Y-%m-%d) the output from mail gives me............. Date: Fri, 8 Feb 2008 02:12:07... (4 Replies)
Discussion started by: theninja
4 Replies

8. UNIX for Dummies Questions & Answers

ssh2 troubles

I'm trying to set up a secure and trusted connection between 2 boxes running solaris using ssh2. I've run ssh-keygen2 on the local box and on the remote box, created the identification file ( IdKey id_dsa_2048_a ) on the local machine and copied across the public key file from the local to... (5 Replies)
Discussion started by: PaulC
5 Replies

9. UNIX for Dummies Questions & Answers

compariosn troubles...

Hi Guys, I am trying to compare using if, but keep getting some strange results. if ; then keeps creating the file 1 if ; then does not work at all if ; then does not work if ; then does not work if ; then does not work eihter. I am using a ksh, on Solaris (9 Replies)
Discussion started by: jagannatha
9 Replies

10. UNIX Desktop Questions & Answers

NetBSD Troubles

HI, I just installed NetBSD i386 v. latest. I am having a few problems: For some reason X just won't start!? Another is I can't access My CDROM or Floppy. Thanks in advance! (3 Replies)
Discussion started by: vertigo
3 Replies
Login or Register to Ask a Question