Skip to main content

OpenSSH Public Key Authorization on Linux

To find out whether a user exists or not in a Linux machine:
*    grep username /etc/passwd
or
*    id username

To give a new user access to Linux machine:
1. Login as root user
2. Run this:
    $ /usr/sbin/adduser new_user
3. Set a new password:
    $ passwd new_user
    (and put the password when prompted)

To give them root access:
4. Edit the /etc/sudoers file
    $ vi /etc/sudoers
    User_Alias YOUR_GROUP = new_user
    YOUR_GROUP ALL=(ALL) NOPASSWD: ALL

To test whether the new_user has been granted root access, run these two commands:
    $ su new_user (user should be 'new_user' now)
    $ sudo su (user should be 'root' now)
If the conditions above met, then new_user has root access.

If the new_user want to use public/private key gen authorization:
5. Change your user to be the new_user
    $ su new_user
6. Create ~/.ssh/authorized_keys file if it doesn't exist yet
    $ mkdir ~/.ssh
    $ chmod 700 ~/.ssh
7. Insert the public key on the authorized_keys file
    $ vi ~/.ssh/authorized_keys
    (insert the public key entry)

Comments

Popular posts from this blog

Amigurumi: Single Pea and Deadly Cute Ninja

I think I was bitten by the craft bugs. Here's my next creation: the single pea (because making 3 of them in solid green is just too much for my eyes) and the deadly but cute ninja. Chris called them Peany and Ninji. Peany, Dora, Ninji, and Mushy posing together It's hard to see from this photo, but Ninji actually has a sling (in a slightly different color) around his body, and a mini ninja star. And talk about proportion... the vegetables are larger than the cat and the person. Makes you wonder, isn't it?

Doppelganger

When I went back home in 2002, it was time for the placement announcement for first trimester for elementary students. My little brother was in elementary school, and so I took my mom's place and went with him to take his exam result back. It was nostalgic. My teachers were still teaching (people do not switch career back home). Some of my friends took up teaching. The classroom did not change much. Children were running everywhere and playing the games I used to play. It felt like I was thrown back a decade or two. Then it was time for the general assembly. Every students and teachers were gathered in a big room for placement announcement. My school have a tradition of announcing the first, second, and third placement for each class in front of a general assembly. I can't remember what my little bro's placement were. But the thing that surprised me was during the announcement for 2nd grade placements. The third place was won by a person with the exact same first name and l...