useradd 도움이 필요합니다 ㅠㅠ

익명 사용자의 이미지

useradd 로 사용자를 추가해야 하는데 한줄에 되게 끔 하고 싶습니다 그래서 찾아봤는데 -p 옵션을 주면 비밀번호를 지정할 수 있다고 해서 해봤는데

useradd -p 1234 user1

이런식으로요 그런데 1234가 비밀번호가 될 줄 알았는데 안되더라구요 이거 비밀번호 어떻게 지정해야하나요?

passwd 말고 한줄에 바로 할 수 있게 해야합니다

익명 사용자의 이미지

매뉴얼을 꼼꼼히 읽어야지요.

https://linux.die.net/man/8/adduser wrote:
-p, --password PASSWORD

The encrypted password, as returned by crypt(3). The default is to disable the password.
Note: This option is not recommended because the password (or encrypted password) will be visible by users listing the processes.

You should make sure the password respects the system's password policy.

-p 옵션의 매개변수는 crypt 함수가 반환한 문자열이어야 합니다. 즉 평문 암호를 넘겨서 바로 설정하는 것은 불가능합니다.

https://linux.die.net/man/3/crypt

익명 사용자의 이미지

그럼 한줄에 바로 비밀번호와 사용자 다 지정할 방법은 없는건가요 ㅠㅠ passwd도 결국 옵션으로 지정하는게 아니라서 엔터 없이 비밀번호를 지정하기가 힘드네요 ㅠㅠ

김정균의 이미지

-p 옵션은 암호화된 문자열을 사용해야 합니다.

[root@work ~]$ useradd --help
Usage: useradd [options] LOGIN
 
Options:
...
  -p, --password PASSWORD       encrypted password of the new account

openssl 이나 기타 encritption 이 가능한 어플리케이션으로 미리 암호화된 문자열을 생성해서 지정해야 합니다.

미리 암호화를 하기가 힘들거나 번거롭다면 passwd 명령을 이용하여 할 수도 있습니다.

[root@server ~]$ useradd -d /home/users/test1 test1 && passwd --stdin test1 <<< "텍스트암호"
test1 사용자의 비밀 번호 변경 중
passwd: 모든 인증 토큰이 성공적으로 업데이트 되었습니다.
익명 사용자의 이미지

--stdin 이란 옵션이 없다고 뜨는데 어떻게 하나요 ㅠㅠ

김정균의 이미지

혹시 OS 가 freebsd 이런건가요? GNU passwd 면 호랭이 담배피던 시절의 버전이라는 얘기인데..
다만 --stdin 옵션은 root 로만 가능 합니다.

ymir의 이미지

mkpasswd 를 쓰면 됩니다.
만약 이 명령어가 없다면, 이 명령어를 포함하고 있는 패키지를 설치하세요.
우분투의 경우에는 whois 패키지에 들어 있습니다.

encryption 알고리즘을 따로 명시하지 않으면, 기본값으로 DES 를 쓰는데..
shadow 파일을 확인해 보시고, 시스템에 있는 것과 같은 알고리즘을 써주면 됩니다.

/etc/shadow 에서 암호화 된 패스워드가 $6$ 으로 시작하면 SHA-512 이고..
$5$ 으로 시작하면 SHA-256, $1$ 이면 MD5, 그리고 13자의 영문자이면 그냥 DES 입니다.

$ mkpasswd -m help
Available methods:
sha512crypt     SHA-512
sha256crypt     SHA-256
md5crypt        MD5
descrypt        standard 56 bit DES-based crypt(3)
$ sudo useradd -p $(mkpasswd -m SHA-512 my-passwd) user1
$ sudo cat /etc/shadow | grep user1
user1:$6$mfHiv1LScZ$VGSrZ1TBhA/KZnmLsOSxEKcAnKb5eRLdaJm3PR8NJBL5MCNj5vzmaXvPb3Pa42t8Y9XDEpM2AOIWkmD/w.IcH/:19381:0:99999:7:::

되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』

academic의 이미지

또 하나 배웠습니다. 감사합니다.

----
academic은 제 고등학교 때 동아리 이름입니다.
academic, 아주 가끔은 저도 이랬으면 좋겠습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.