- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Linux System Administration: Network Drives
Take your Linux skills beyond the basics with this intermediate Linux System Administration course focused on real-world enterprise environments. Learn how Linux is managed at scale in production, including SSH, systemd, users and permissions, logs, troubleshooting, networking, storage, LVM, cron, security, Bash scripting, automation, and day-to-day sysadmin workflows used in DevOps, SRE, cloud, and infrastructure roles.
This course is for learners who already know basic Linux commands and want practical experience managing Linux servers in large environments.
==============
= COMMANDS =
==============
## server ##
# List block devices, disks, partitions, and mount points
lsblk
# Install NFS server and client utilities
dnf install nfs-utils
# Enable and start the NFS server immediately
systemctl enable --now nfs-server
# Check the current status of the NFS server
systemctl status nfs-server
# Set ownership of the NFS shared directory to nobody:nobody
chown nobody:nobody -R /srv/nfs/share
# Edit the NFS exports file to define shared directories and permissions
vim /etc/exports *(rw,sync,no_root_squash)
# Open the manual page for NFS export options
man exports
# Restart the NFS server to apply export changes
systemctl restart nfs-server
# Permanently allow NFS traffic through firewalld
firewall-cmd --permanent --add-service=nfs
# Reload firewalld to apply the new firewall rule
firewall-cmd --reload
## client ##
# Install NFS client utilities
dnf install nfs-utils
# Mount the remote NFS share to the local mount point
mount -t nfs 244.178.44.111:/srv/nfs/share /mnt/test
# View kernel messages for NFS mount troubleshooting
dmesg
# Edit fstab to make the NFS mount persistent after reboot
vim /etc/fstab (244.178.44.111:/srv/nfs/share /mnt/test nfs defaults 0 0)
# Test all fstab entries without rebooting
mount -a
Видео Linux System Administration: Network Drives канала ExitZero
This course is for learners who already know basic Linux commands and want practical experience managing Linux servers in large environments.
==============
= COMMANDS =
==============
## server ##
# List block devices, disks, partitions, and mount points
lsblk
# Install NFS server and client utilities
dnf install nfs-utils
# Enable and start the NFS server immediately
systemctl enable --now nfs-server
# Check the current status of the NFS server
systemctl status nfs-server
# Set ownership of the NFS shared directory to nobody:nobody
chown nobody:nobody -R /srv/nfs/share
# Edit the NFS exports file to define shared directories and permissions
vim /etc/exports *(rw,sync,no_root_squash)
# Open the manual page for NFS export options
man exports
# Restart the NFS server to apply export changes
systemctl restart nfs-server
# Permanently allow NFS traffic through firewalld
firewall-cmd --permanent --add-service=nfs
# Reload firewalld to apply the new firewall rule
firewall-cmd --reload
## client ##
# Install NFS client utilities
dnf install nfs-utils
# Mount the remote NFS share to the local mount point
mount -t nfs 244.178.44.111:/srv/nfs/share /mnt/test
# View kernel messages for NFS mount troubleshooting
dmesg
# Edit fstab to make the NFS mount persistent after reboot
vim /etc/fstab (244.178.44.111:/srv/nfs/share /mnt/test nfs defaults 0 0)
# Test all fstab entries without rebooting
mount -a
Видео Linux System Administration: Network Drives канала ExitZero
linux system administration intermediate linux linux sysadmin enterprise linux real world linux linux server administration linux troubleshooting linux for devops linux automation bash scripting shell scripting systemd ssh linux networking linux security linux logs journalctl cron jobs lvm disk management red hat linux ubuntu server ansible production servers sre devops homelab raspberry pi nas self host
Комментарии отсутствуют
Информация о видео
14 июня 2026 г. 18:00:02
00:12:56
Другие видео канала




















