On 10/20/2015 08:21 PM, Joachim Backes wrote:
> Then how to check in a bash script when a CD is really mounted?

Check the return code of the mount command?

[root@meimei ~]# mount /dev/sr0 /mnt
mount: no medium found on /dev/sr0
[root@meimei ~]# echo $?
32

[root@meimei ~]# mount /dev/sr0 /mnt
mount: /dev/sr0 is write-protected, mounting read-only
[root@meimei ~]# echo $?
0


-- 
In reality, some people should stick to running Windows and others should stay 
away from computers altogether.
-- 
test mailing list
test@lists.fedoraproject.org
To unsubscribe:
https://admin.fedoraproject.org/mailman/listinfo/test

Reply via email to