Linux Find Out Name Of DVD / CD-ROM / Blu-ray Writer Device
You can find out the name of the DVD/CD-ROM/Blu-ray writer device in Linux by using the lsblk command. Here’s an example: lsblk | grep -i “cdrom” Explanation: lsblk is the command that lists all the block devices and their properties. grep -i “cdrom” filters the output of lsblk to show only the lines that contain … Read more