I was ready to throw it away, I opened it up and didn't find anything wrong with it. After a quick Google Search, turns out Apple fucked up their users (again) and locked this drive to only one laptop : the MacBook Air.
Bellow is the tweak (found online) to make it usable on Linux
# Debian/linux only - Linux SCSI generic driver
sudo apt install sg3-utils -y
# RHEL/Fedora only - Linux SCSI generic driver
sudo dnf install sg3_utils -y
# tell the external DVD player/burner to turn on
sudo sg_raw /dev/sr0 EA 00 00 00 00 00 01
The
--cmdset=1
flag was missing for me to make it work, I was getting the messageNVMe Result=0x0
.On Arch Linux:
yay sg3_utils sg_raw --cmdset=1 /dev/sr0 EA 00 00 00 00 00 01 # Expected message: SCSI Status: Good
Additional note, if you're like me and updated your kernel when installing the new package, you may get this error when trying to open the disk
unknown filesystem type 'udf'
. Just restart your machine after the kernel update and it should work.