# Linux Setting
## SSH
1. Install
```
sudo apt install openssh-server
```
2. Set SSH
```
vim /etc/ssh/sshd_config
```

- PermitRootLogin ==yes== (I didn't change this but still work.)
- PasswordAuthentication ==yes==
3. Restart (Finish)
```
/etc/init.d/ssh restart
```
4. Auto enabled (Not necessary)
Problem: Everytime I open ==kali== it need to restart the ssh service again.
Solve: Auto enabled.
```
systemctl enable ssh
```
## Folder Mounted
1. Use setting to mount folder.

2. Check is folder mounted.
```
vmware-hgfsclient
```

3. Setting
```
sudo vim /etc/fstab
```

```
.host:/<Folder Name> /mnt/hgfs fuse.vmhgfs-fuse allow_other 0 0
```
(**Add the above line at the end of file**)
4. Reboot VM (Finish)