Bagaimanakah cara untuk menambahkan dan memodifikasi user pada linux? DI windows kita bisa menambahkan dan menambahkan user dengan mudah dengan bantuan tampilan gui yang user friendly sehingga dapat dengan mudah kita memahaminya.
tetapi di linux, kita akan dihadapkan dengan command line, dengan begitu kita harus mengetahui kode perintah yang digunakan.
Di linux terdapat user root, yaitu user yang memiliki akses penuh terhadap sistem, tetapi kita tidak boleh menggunakan root untuk aktifitas sehari - hari kita, dengan alasan keamanan sistem. Karena itu kita harus membuat user baru yang akan kita gunakan untuk aktifitas kita.
1. Menambahkan user
- masuk sebagai root
~$ su- kemudian ketikan perintah
# adduser- maka akan muncul seperti dibawah, isikan data secara bertahap dari nama user
Login name for new user []: Toni
User ID ('UID') [ defaults to next available ]:
Initial group [ users ]:
Additional UNIX groups:
Users can belong to additional UNIX groups on the system.
For local users using graphical desktop login managers such
as XDM/KDM, users may need to be members of additional groups
to access the full functionality of removable media devices.
* Security implications *
Please be aware that by adding users to additional groups may
potentially give access to the removable media of other users.
If you are creating a new user for remote shell access only,
users do not need to belong to any additional groups as standard,
so you may press ENTER at the next prompt.
2. Menambahkan user ke group yang sudah adaPress ENTER to continue without adding any additional groups
Or press the UP arrow to add/select/edit additional groups
: audio cdrom floppy plugdev video power netdev
Home directory [ /home/Toni ]
Shell [ /bin/bash ]
Expiry date (YYYY-MM-DD) []:
New account will be created as follows:
Login name.......: toni
UID..............: [ Next available ]
Initial group....: users
Additional groups: audio,cdrom,floppy,plugdev,video,power,netdev
Home directory...: /home/toni
Shell............: /bin/bash
Expiry date......: [ Never ]
This is it... if you want to bail out, hit Control-C. Otherwise, press
ENTER to go ahead and make the account.
Creating new account...
Changing the user information for user
Enter the new value, or press ENTER for the default
Full Name []: toni
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Changing password for user
Enter the new password (minimum of 5, maximum of 127 characters)
Please use a combination of upper and lower case letters and numbers.
New password:
Re-enter new password:
Password changed.
Account setup complete.
# usermod -a -G vboxusers toniartinya user toni akan ditambahkan ke dalam group vboxusers
# usermod -G vboxusers toniartinya user toni akan dipindahkan ke dalam group vboxusers, dan keanggotaannya digroup sebelumnya dihapus
3. Menghapus User
Untuk menghapus gunakan perintah
# userdel -r <nama user>
Terimakasih telah berkunjung ke blog ini,, semoga semua artikel yang ada dapat bemanfaat bagi pembaca.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.