Copied to clipboard
CMD Generator
Command generator online
Quick Access:
a
adduser
alias
apt-get
apt
at
awk
b
blkid
c
cat
cd
chgrp
chmod
chown
cp
crontab
curl
cut
d
dd
df
diff
dig
du
e
echo
emacs
export
f
fdisk
ffmpeg
find
firewalld
free
g
getenforce
grep
groupadd
groupmod
gunzip
gzip
h
halt
head
history
i
ifconfig
info
iptables
j
journalctl
k
kill
l
less
ln
locate
ls
lsblk
m
man
mkdir
mkfs
more
mount
mv
n
nano
netstat
nslookup
nuxi
p
passwd
patch
ping
pkill
poweroff
ps
pwd
r
reboot
rm
rmdir
route
rsync
rsyslogd
s
scp
sed
semanage
setenforce
shutdown
sort
source
ssh-keygen
ssh
su
sudo
systemctl
t
tail
tar
tee
top
touch
traceroute
u
ufw
umount
uniq
unzip
updatedb
uptime
usermod
v
vi
vim
vmstat
w
wc
wget
whereis
which
whois
y
yum
z
zip
umount
`umount` command is used to unmount mounted file systems.
$
Copy
path
unmount all mounted file systems (-a)
immediately interrupt the unmount operation in progress (-c)
display help information and exit (-h)
do not update /etc/mtab file when unmounting (-n)
mount the file system in read-only mode (-r)
specify the file system type (-t)
do not convert the mount point path to the real path (--no-canonicalize)
unmount the file system in asynchronous mode (--no-sync)
display version information and exit (--version)
Generate and copy
Example
Unmount a file system
umount /mnt
Unmount all mounted file systems
umount -a
Unmount a specific file system type
umount -t ext4 /mnt
Mount the file system in read-only mode
umount -r /mnt