I don't seem to be entering text at a password prompt in the terminal
I have been unable to type my password in the Ubuntu terminal. Noticed that it was requesting a Unix password. Where did that come from?? I did login to the Unity desktop using my Ubuntu password but changed nothing that I know of.
Being unable to type in the terminal is not new. Any sudo apt-get is followed by a password request. I am unable to type at that point. Any advice would be appreciated.
command-line
New contributor
add a comment |
I have been unable to type my password in the Ubuntu terminal. Noticed that it was requesting a Unix password. Where did that come from?? I did login to the Unity desktop using my Ubuntu password but changed nothing that I know of.
Being unable to type in the terminal is not new. Any sudo apt-get is followed by a password request. I am unable to type at that point. Any advice would be appreciated.
command-line
New contributor
Although Linux doesn't even a single code from Unix but since it's a Unix like OS, that's why it is asking for Unix password while you are working on Linux. For security reasons there is no bullets/stars when you are typing the password but it is getting typed.
– Kulfy
5 hours ago
Any command leading with sudo will ask for a password, unless you provided it permanently before. Your Linux password is your UNIX password, and vice versa. Please advise if you can type in the window of a GUI program, such as a web browser, or the text editor app from the programs list. Also please advise which number version of Ubuntu you use. Please click edit to answer and put the answers in the body of the question so all may see; please do NOT reply as a Comment.
– K7AAY
5 hours ago
If you have an administrator's account, if you try to execute some elevated command using sudo, it will ask for your administrator's password, to prove that you're authorized to run that elevated command. For security reasons, when you type your password, the characters are not displayed... so somebody can't look over your shoulder and see your password.
– heynnema
4 hours ago
add a comment |
I have been unable to type my password in the Ubuntu terminal. Noticed that it was requesting a Unix password. Where did that come from?? I did login to the Unity desktop using my Ubuntu password but changed nothing that I know of.
Being unable to type in the terminal is not new. Any sudo apt-get is followed by a password request. I am unable to type at that point. Any advice would be appreciated.
command-line
New contributor
I have been unable to type my password in the Ubuntu terminal. Noticed that it was requesting a Unix password. Where did that come from?? I did login to the Unity desktop using my Ubuntu password but changed nothing that I know of.
Being unable to type in the terminal is not new. Any sudo apt-get is followed by a password request. I am unable to type at that point. Any advice would be appreciated.
command-line
command-line
New contributor
New contributor
edited 58 mins ago
PJ Singh
4,39732549
4,39732549
New contributor
asked 5 hours ago
Jeff HammerslaJeff Hammersla
6
6
New contributor
New contributor
Although Linux doesn't even a single code from Unix but since it's a Unix like OS, that's why it is asking for Unix password while you are working on Linux. For security reasons there is no bullets/stars when you are typing the password but it is getting typed.
– Kulfy
5 hours ago
Any command leading with sudo will ask for a password, unless you provided it permanently before. Your Linux password is your UNIX password, and vice versa. Please advise if you can type in the window of a GUI program, such as a web browser, or the text editor app from the programs list. Also please advise which number version of Ubuntu you use. Please click edit to answer and put the answers in the body of the question so all may see; please do NOT reply as a Comment.
– K7AAY
5 hours ago
If you have an administrator's account, if you try to execute some elevated command using sudo, it will ask for your administrator's password, to prove that you're authorized to run that elevated command. For security reasons, when you type your password, the characters are not displayed... so somebody can't look over your shoulder and see your password.
– heynnema
4 hours ago
add a comment |
Although Linux doesn't even a single code from Unix but since it's a Unix like OS, that's why it is asking for Unix password while you are working on Linux. For security reasons there is no bullets/stars when you are typing the password but it is getting typed.
– Kulfy
5 hours ago
Any command leading with sudo will ask for a password, unless you provided it permanently before. Your Linux password is your UNIX password, and vice versa. Please advise if you can type in the window of a GUI program, such as a web browser, or the text editor app from the programs list. Also please advise which number version of Ubuntu you use. Please click edit to answer and put the answers in the body of the question so all may see; please do NOT reply as a Comment.
– K7AAY
5 hours ago
If you have an administrator's account, if you try to execute some elevated command using sudo, it will ask for your administrator's password, to prove that you're authorized to run that elevated command. For security reasons, when you type your password, the characters are not displayed... so somebody can't look over your shoulder and see your password.
– heynnema
4 hours ago
Although Linux doesn't even a single code from Unix but since it's a Unix like OS, that's why it is asking for Unix password while you are working on Linux. For security reasons there is no bullets/stars when you are typing the password but it is getting typed.
– Kulfy
5 hours ago
Although Linux doesn't even a single code from Unix but since it's a Unix like OS, that's why it is asking for Unix password while you are working on Linux. For security reasons there is no bullets/stars when you are typing the password but it is getting typed.
– Kulfy
5 hours ago
Any command leading with sudo will ask for a password, unless you provided it permanently before. Your Linux password is your UNIX password, and vice versa. Please advise if you can type in the window of a GUI program, such as a web browser, or the text editor app from the programs list. Also please advise which number version of Ubuntu you use. Please click edit to answer and put the answers in the body of the question so all may see; please do NOT reply as a Comment.
– K7AAY
5 hours ago
Any command leading with sudo will ask for a password, unless you provided it permanently before. Your Linux password is your UNIX password, and vice versa. Please advise if you can type in the window of a GUI program, such as a web browser, or the text editor app from the programs list. Also please advise which number version of Ubuntu you use. Please click edit to answer and put the answers in the body of the question so all may see; please do NOT reply as a Comment.
– K7AAY
5 hours ago
If you have an administrator's account, if you try to execute some elevated command using sudo, it will ask for your administrator's password, to prove that you're authorized to run that elevated command. For security reasons, when you type your password, the characters are not displayed... so somebody can't look over your shoulder and see your password.
– heynnema
4 hours ago
If you have an administrator's account, if you try to execute some elevated command using sudo, it will ask for your administrator's password, to prove that you're authorized to run that elevated command. For security reasons, when you type your password, the characters are not displayed... so somebody can't look over your shoulder and see your password.
– heynnema
4 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Your issue requires a two part answer:
Linux can be described as a "Unix-like" operating system. It's not Unix, but functions very similarly to it, to the point where many people would call it a clone. Many utilities were directly moved/cloned from Unix operating systems to Linux; awk, sed, etc. Hence why it asks for a "unix" password.
As for being unable to type, Linux/Unix do not display the length of your password in the command line, and accomplish this by showing absolutely nothing when you're typing it. You ARE still typing, it's just not showing anything in case someone's looking over your shoulder. Enter your full password and press enter, and it will still get sent through. You can even use backspace to clear the password field, you just can't see what you're doing when you do it. Installing/uninstalling programs with apt is a root-level feature, so it asks for your administrator password, which by default is the same that you log in with.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Jeff Hammersla is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1118637%2fi-dont-seem-to-be-entering-text-at-a-password-prompt-in-the-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your issue requires a two part answer:
Linux can be described as a "Unix-like" operating system. It's not Unix, but functions very similarly to it, to the point where many people would call it a clone. Many utilities were directly moved/cloned from Unix operating systems to Linux; awk, sed, etc. Hence why it asks for a "unix" password.
As for being unable to type, Linux/Unix do not display the length of your password in the command line, and accomplish this by showing absolutely nothing when you're typing it. You ARE still typing, it's just not showing anything in case someone's looking over your shoulder. Enter your full password and press enter, and it will still get sent through. You can even use backspace to clear the password field, you just can't see what you're doing when you do it. Installing/uninstalling programs with apt is a root-level feature, so it asks for your administrator password, which by default is the same that you log in with.
add a comment |
Your issue requires a two part answer:
Linux can be described as a "Unix-like" operating system. It's not Unix, but functions very similarly to it, to the point where many people would call it a clone. Many utilities were directly moved/cloned from Unix operating systems to Linux; awk, sed, etc. Hence why it asks for a "unix" password.
As for being unable to type, Linux/Unix do not display the length of your password in the command line, and accomplish this by showing absolutely nothing when you're typing it. You ARE still typing, it's just not showing anything in case someone's looking over your shoulder. Enter your full password and press enter, and it will still get sent through. You can even use backspace to clear the password field, you just can't see what you're doing when you do it. Installing/uninstalling programs with apt is a root-level feature, so it asks for your administrator password, which by default is the same that you log in with.
add a comment |
Your issue requires a two part answer:
Linux can be described as a "Unix-like" operating system. It's not Unix, but functions very similarly to it, to the point where many people would call it a clone. Many utilities were directly moved/cloned from Unix operating systems to Linux; awk, sed, etc. Hence why it asks for a "unix" password.
As for being unable to type, Linux/Unix do not display the length of your password in the command line, and accomplish this by showing absolutely nothing when you're typing it. You ARE still typing, it's just not showing anything in case someone's looking over your shoulder. Enter your full password and press enter, and it will still get sent through. You can even use backspace to clear the password field, you just can't see what you're doing when you do it. Installing/uninstalling programs with apt is a root-level feature, so it asks for your administrator password, which by default is the same that you log in with.
Your issue requires a two part answer:
Linux can be described as a "Unix-like" operating system. It's not Unix, but functions very similarly to it, to the point where many people would call it a clone. Many utilities were directly moved/cloned from Unix operating systems to Linux; awk, sed, etc. Hence why it asks for a "unix" password.
As for being unable to type, Linux/Unix do not display the length of your password in the command line, and accomplish this by showing absolutely nothing when you're typing it. You ARE still typing, it's just not showing anything in case someone's looking over your shoulder. Enter your full password and press enter, and it will still get sent through. You can even use backspace to clear the password field, you just can't see what you're doing when you do it. Installing/uninstalling programs with apt is a root-level feature, so it asks for your administrator password, which by default is the same that you log in with.
answered 1 hour ago
MintyMinty
42817
42817
add a comment |
add a comment |
Jeff Hammersla is a new contributor. Be nice, and check out our Code of Conduct.
Jeff Hammersla is a new contributor. Be nice, and check out our Code of Conduct.
Jeff Hammersla is a new contributor. Be nice, and check out our Code of Conduct.
Jeff Hammersla is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1118637%2fi-dont-seem-to-be-entering-text-at-a-password-prompt-in-the-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Although Linux doesn't even a single code from Unix but since it's a Unix like OS, that's why it is asking for Unix password while you are working on Linux. For security reasons there is no bullets/stars when you are typing the password but it is getting typed.
– Kulfy
5 hours ago
Any command leading with sudo will ask for a password, unless you provided it permanently before. Your Linux password is your UNIX password, and vice versa. Please advise if you can type in the window of a GUI program, such as a web browser, or the text editor app from the programs list. Also please advise which number version of Ubuntu you use. Please click edit to answer and put the answers in the body of the question so all may see; please do NOT reply as a Comment.
– K7AAY
5 hours ago
If you have an administrator's account, if you try to execute some elevated command using sudo, it will ask for your administrator's password, to prove that you're authorized to run that elevated command. For security reasons, when you type your password, the characters are not displayed... so somebody can't look over your shoulder and see your password.
– heynnema
4 hours ago