LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-21-2022, 09:27 PM   #1
linux-man
Member
 
Registered: Nov 2016
Location: Geneva
Distribution: native install of Parrot Home Edition 5.0 Debian (no security tools) 64 bit, KDE, 5.14.0-9parrot1,
Posts: 872

Rep: Reputation: Disabled
my cd/dvd is not showing up to mount it


I don't see an option to mount my cd/dvd, the cd/dvd lights up and is working

Parrot Home edition 4.11
bullseye
 
Old 03-21-2022, 10:28 PM   #2
enigma9o7
Senior Member
 
Registered: Jul 2018
Location: Silicon Valley
Distribution: Bodhi Linux
Posts: 1,388

Rep: Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560Reputation: 560
I'm not familiar with parrot, but in my experience, one of two things usually can do that for you - your file manager or your desktop environment (sometimes called places). Check settings in either one to find how to set it to mount discs on insert.

Or let us know what desktop and/or file manager you're using.
 
Old 03-21-2022, 11:34 PM   #3
linux-man
Member
 
Registered: Nov 2016
Location: Geneva
Distribution: native install of Parrot Home Edition 5.0 Debian (no security tools) 64 bit, KDE, 5.14.0-9parrot1,
Posts: 872

Original Poster
Rep: Reputation: Disabled
Dolphin file manager

Quote:
Originally Posted by enigma9o7 View Post
Or let us know what desktop and/or file manager you're using.
KDE
Dolphin file manager
 
Old 03-26-2022, 04:57 AM   #4
linux-man
Member
 
Registered: Nov 2016
Location: Geneva
Distribution: native install of Parrot Home Edition 5.0 Debian (no security tools) 64 bit, KDE, 5.14.0-9parrot1,
Posts: 872

Original Poster
Rep: Reputation: Disabled
I still need help

Can anyone assist with this?
 
Old 03-26-2022, 01:04 PM   #5
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,141
Blog Entries: 6

Rep: Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828
Quote:
I don't see an option to mount my cd/dvd, the cd/dvd lights up and is working
Data CD/DVD? An audio CD won't mount. Doesn't have a file system on it. Or a video DVD?

As far as data optical disks, with a file system, find out what device your optical drive is.

Here is an example:
Code:
lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
sda      8:0    0 500.1G  0 disk 
├─sda1   8:1    0     1M  0 part 
└─sda2   8:2    0 500.1G  0 part /
sr0     11:0    1  1024M  0 rom
As you can see, the optical disk is /dev/sr0

Code:
eject -T
#Put disk into drive, close

mkdir ~/dvdburner

sudo mount /dev/sr0 ~/dvdburner

ls ~/dvdburner
TvShow3_1.mp4  TvShow3_3.mp4  TvShow3_5.mp4
TvShow3_2.mp4  TvShow3_4.mp4  TvShow3_6.mp4
Don't forget to unmount when you are done, before you remove the disk.
Code:
sudo umount ~/dvdburner
For a video DVD, you can mount them the same way. You'll have a VIDEO_TS directory on it. Open that and you have a bunch of files like:
Code:
VIDEO_TS/VIDEO_TS.BUP VIDEO_TS/VIDEO_TS.IFO TVIDEO_TS/VIDEO_TS.VOB VIDEO_TS/VTS_01_0.BUP VIDEO_TS/VTS_01_0.IFO VIDEO_TS/VTS_01_0.VOB VIDEO_TS/VTS_01_1.VOB VIDEO_TS/VTS_01_2.VOB VIDEO_TS/VTS_01_3.VOB VIDEO_TS/VTS_01_4.VOB...
The .vob files are the video, and they are css scrambled of course. You'll need libvdcss installed to view them.

The CD/DVD file system will be ISO 9960, a Bluray will be UDF. An audio CD does not have a file system on it.

Last edited by teckk; 03-26-2022 at 01:06 PM.
 
1 members found this post helpful.
Old 03-26-2022, 04:56 PM   #6
uteck
Senior Member
 
Registered: Oct 2003
Location: Elgin,IL,USA
Distribution: Ubuntu based stuff for the most part
Posts: 1,174

Rep: Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501
By default KDE should add your user to the cdrom group, you can check with the 'groups' command.
 
Old 03-26-2022, 09:35 PM   #7
linux-man
Member
 
Registered: Nov 2016
Location: Geneva
Distribution: native install of Parrot Home Edition 5.0 Debian (no security tools) 64 bit, KDE, 5.14.0-9parrot1,
Posts: 872

Original Poster
Rep: Reputation: Disabled
where to go to check on 'group command' to adder user to CD Rom group

Quote:
Originally Posted by uteck View Post
By default KDE should add your user to the cdrom group, you can check with the 'groups' command'.
Can I get the command to check the groups command in terminal?Or can we check through Application Launcher as well?
 
Old 03-26-2022, 09:37 PM   #8
linux-man
Member
 
Registered: Nov 2016
Location: Geneva
Distribution: native install of Parrot Home Edition 5.0 Debian (no security tools) 64 bit, KDE, 5.14.0-9parrot1,
Posts: 872

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by teckk View Post
Data CD/DVD? An audio CD won't mount. Doesn't have a file system on it. Or a video DVD?
It's just got files on it and images, no audio

Quote:
Originally Posted by teckk View Post
As far as data optical disks, with a file system, find out what device your optical drive is.
By device you mean? To me its just a CD DVD burner.Anything more I should find out other than that?

Quote:
Originally Posted by teckk View Post
Here is an example:
Code:
lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
sda      8:0    0 500.1G  0 disk 
├─sda1   8:1    0     1M  0 part 
└─sda2   8:2    0 500.1G  0 part /
sr0     11:0    1  1024M  0 rom
As you can see, the optical disk is /dev/sr0

Code:
eject -T
#Put disk into drive, close

mkdir ~/dvdburner

sudo mount /dev/sr0 ~/dvdburner

ls ~/dvdburner
TvShow3_1.mp4  TvShow3_3.mp4  TvShow3_5.mp4
TvShow3_2.mp4  TvShow3_4.mp4  TvShow3_6.mp4
Don't forget to unmount when you are done, before you remove the disk.
Code:
sudo umount ~/dvdburner
It worked thank you.
Is any of what you just described adding a user to the cdrom group?


Quote:
Originally Posted by teckk View Post
The .vob files are the video, and they are css scrambled of course. You'll need libvdcss installed to view them.
Could I get get the terminal command to install libvdcss from repository?
 
Old 03-27-2022, 07:35 AM   #9
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,141
Blog Entries: 6

Rep: Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828
That is how you mount an optical disk on any linux box. There are auto mounters on all distros. Look at your docs to see what is available for you, and how to configure it for Parrot. Always good to know/understand the basics though.

Quote:
Could I get get the terminal command to install libvdcss from repository?
What video player are you trying to play a video DVD with? There is a little utility called lsdvd that is light and excellent to show you what titles are on the DVD. You can play that title with a video player.

Example:
Code:
mplayer dvd://1
mpv dvd://1
Or use VLC, totem, whatever you wish. When you play the video is it all scrambled? If so then you need libdvdcss.

This certificate is no good by the way
https://www.parrotsec.org/docs/
https://community.parrotsec.org/
https://www.parrotsec.org/docs/mirrors-list.html

Appears to be a debian based flavor.
https://en.m.wikipedia.org/wiki/Parrot_OS
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
wlan0 showing in iwconfig and airmon-ng as well, however it isn't showing in ifconfig, but my internet connection works. betweenyouandseb Linux - Newbie 7 08-25-2020 02:38 AM
[SOLVED] Screen not showing on laptop but showing on projector when connected someshpr Linux - General 3 04-18-2011 04:58 PM
mount as a device: mount dvd-iso file in /dev/dvd sadarax Linux - General 21 02-02-2011 11:59 PM
Mount. Umount. Mount. Umount. Mount. Umount. Mount.. cwizardone Slackware 10 03-22-2007 09:30 AM
DVD-R, DVD+RW, DVD-RW and DVD+R zetsui Linux - Hardware 5 09-12-2003 06:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:34 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration