- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
KodeKloud Linux Lab 4 Solution | Linux kernel Modules Boot and Filetypes (Step-by-Step)
Going forward, you will need to make use of sudo for running several privileged commands. Understanding system initialization, systemd targets, file types, Linux directory structure, and hardware detection are essential skills for any Linux system administrator. This lab covers all of these important concepts.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
WHAT YOU WILL LEARN
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
How to identify the init process used by a Linux system
How to check and change systemd targets
How to determine file types using the file command
Which directory is recommended for third-party software installation
Where block device files are stored in Linux
How to identify hardware vendors using lspci
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
LAB TASKS COVERED
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Identify the init process used by the system
Find the default systemd target set in the system
Change the system target to multi-user.target
Determine what type of file firefox.deb is located at /root
Determine what type of file sample_script.sh is located at /root
Identify the recommended directory for installing third-party IDE software
Find which directory contains block device files used by lsblk
Identify the vendor name for the Ethernet Controller in the system
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
COMMAND REFERENCE
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
ps -p 1 .................... Check init process (PID 1)
systemctl get-default ...... Display current default systemd target
systemctl set-default multi-user.target ... Change default target to multi-user
systemctl isolate multi-user.target ...... Switch to multi-user target immediately
file /root/firefox.deb ..... Determine type of .deb file
file /root/sample_script.sh Determine type of shell script file
lsblk ...................... List block devices
ls /dev .................... View block device files
lspci ...................... List all PCI devices
lspci | grep -i ethernet ... Find Ethernet controller information
sudo -i .................... Switch to root user (if needed)
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
ADDITIONAL NOTES
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Bob's password for sudo operations: caleston123
Standard users do not possess the ability to execute high-level tasks. Therefore, prepend sudo to commands when needed.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
ABOUT THIS LAB
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
This lab is part of the Linux course offered by KodeKloud. All lab content, tasks, and the practice environment belong to KodeKloud. This video is uploaded with their written permission, and full credit goes to their platform.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
WHY I RECOMMEND KODEKLOUD
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
KodeKloud is honestly one of the best platforms I have used for hands-on IT learning. They cover Linux, DevOps, Kubernetes, AWS, and a lot more, and every course comes with real labs you can actually practice in. If you are serious about building practical skills, check them out.
Visit: https://kodekloud.com
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
If this video helped you solve the lab, drop a like and subscribe. I am posting walkthroughs for the rest of the KodeKloud Linux labs, so stick around if you want to follow along.
#Linux #KodeKloud #DevOps #Systemd #LinuxFilesystem #Sudo #CommandLine
Видео KodeKloud Linux Lab 4 Solution | Linux kernel Modules Boot and Filetypes (Step-by-Step) канала Abdul Hadi Official
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
WHAT YOU WILL LEARN
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
How to identify the init process used by a Linux system
How to check and change systemd targets
How to determine file types using the file command
Which directory is recommended for third-party software installation
Where block device files are stored in Linux
How to identify hardware vendors using lspci
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
LAB TASKS COVERED
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Identify the init process used by the system
Find the default systemd target set in the system
Change the system target to multi-user.target
Determine what type of file firefox.deb is located at /root
Determine what type of file sample_script.sh is located at /root
Identify the recommended directory for installing third-party IDE software
Find which directory contains block device files used by lsblk
Identify the vendor name for the Ethernet Controller in the system
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
COMMAND REFERENCE
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
ps -p 1 .................... Check init process (PID 1)
systemctl get-default ...... Display current default systemd target
systemctl set-default multi-user.target ... Change default target to multi-user
systemctl isolate multi-user.target ...... Switch to multi-user target immediately
file /root/firefox.deb ..... Determine type of .deb file
file /root/sample_script.sh Determine type of shell script file
lsblk ...................... List block devices
ls /dev .................... View block device files
lspci ...................... List all PCI devices
lspci | grep -i ethernet ... Find Ethernet controller information
sudo -i .................... Switch to root user (if needed)
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
ADDITIONAL NOTES
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Bob's password for sudo operations: caleston123
Standard users do not possess the ability to execute high-level tasks. Therefore, prepend sudo to commands when needed.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
ABOUT THIS LAB
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
This lab is part of the Linux course offered by KodeKloud. All lab content, tasks, and the practice environment belong to KodeKloud. This video is uploaded with their written permission, and full credit goes to their platform.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
WHY I RECOMMEND KODEKLOUD
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
KodeKloud is honestly one of the best platforms I have used for hands-on IT learning. They cover Linux, DevOps, Kubernetes, AWS, and a lot more, and every course comes with real labs you can actually practice in. If you are serious about building practical skills, check them out.
Visit: https://kodekloud.com
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
If this video helped you solve the lab, drop a like and subscribe. I am posting walkthroughs for the rest of the KodeKloud Linux labs, so stick around if you want to follow along.
#Linux #KodeKloud #DevOps #Systemd #LinuxFilesystem #Sudo #CommandLine
Видео KodeKloud Linux Lab 4 Solution | Linux kernel Modules Boot and Filetypes (Step-by-Step) канала Abdul Hadi Official
Комментарии отсутствуют
Информация о видео
9 ч. 44 мин. назад
00:12:02
Другие видео канала





















