sudo fuser -m /mnt
(it will list out the processid)
sudo kill -9 processid
sudo fuser -m /mnt
(it will list out the processid)
sudo kill -9 processid
https://nomacs.org/
sudo lsblk
sudo mkdir /mnt
sudo mount /dev/sdc1 /mnt
sudo umount /mnt
or
sudo umount /dev/sdc1
sudo udisksctl power-off -b /dev/sdc1
Reference: https://www.digitalocean.com/community/tutorials/how-to-set-up-time-synchronization-on-ubuntu-20-04
First, run apt update
to refresh your local package index:
- sudo apt update
Then, run apt install ntp
to install this package:
- sudo apt install ntp
ntpd
will begin automatically after your installation completes. You can verify that everything is working correctly by querying ntpd
for status information:
- ntpq -p
If you want to setup a local server:
- sudo vim /etc/ntp.conf
- ---
# Point to our network's master time server
server 192.168.1.234 iburst
restrict default
driftfile /var/lib/ntp/ntp.drift
minpoll 4
maxpoll 5
Then, you can create a drift file as following:
- sudo vim /var/lib/ntp/ntp.drift
- ---
- 0.000
Finally you can restart the service:
- sudo service ntp restart
- sudo service ntp status
ref: https://github.com/McMCCRU/rtl8188gu
sudo apt-get install build-essential git dkms
git clone https://github.com/McMCCRU/rtl8188gu.git
cd rtl8188gu
make
sudo make install
cd ..
rm -rf rtl8188gu
sudo reboot
1. add a new user
sudo adduser newuser
2. add user to sudo group
sudo usermod -aG sudo newuser
3. add user to ssh group
sudo vim /etc/ssh/sshd_config
>>AllowUsers newuser
4. add restriction to the new user (space sensitive)
sudo visudo -f /etc/sudoers.d/newuser
>>newuser ALL=(ALL) ALL, !sudoedit, !/usr/bin/su, !/bin/su, !/bin/bash, !/bin/sh, !/usr/bin/chmod, !/usr/bin/chown, !/usr/bin/docker, !/usr/bin/passwd, !/usr/sbin/visudo
if we want to allow some command to be executed without key in password:
newuser ALL=(ALL) NOPASSWD: /usr/bin/find
5. check the new restriction
sudo visudo -c
If it is ok, you will the following message print out:
/etc/sudoers: parsed OK
/etc/sudoers.d/README: parsed OK
/etc/sudoers.d/newuser: parsed OK
The most secure and recommended way is to set up SSH key-based authentication, which doesn't require you to include a password in the command.
1. Generate SSH Key Pair (if you don’t have one already):
ssh-keygen -t rsa -b 4096
Save the key in the default location (~/.ssh/id_rsa
).
2. Copy Public Key to the Remote Machine:
username
and remote_host
with your remote machine's username and IP address or hostname.rsync
without Password or ssh into another machine without Password: