07-01-2009 02:51 PM
Hi,
I hope to install LabVIEW 8.6.1 on one computer in my lab with ubuntu system 8.04 hardy.
When I tried to use LabVIEW 8.6.1 DVD (for Linux) to install, system indicates "Cannot mount volume. invalid mount option when attempting to mount the volume 'ASLSP09MacLinux'."![]()
My DVD rom should be OK because it can read LabVIEW DVD(for windows). Also,the DVD for linux should also be OK since anther computer with SUSE system can read it.
I am a beginner of Ubuntu. Anyone can tell me what I should do?
My result for "sudo fdisk -l" is
Disk /dev/sda: 200.0 GB, 200049647616 bytes
255 heads, 63 sectors/track, 24321 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x94dfead2
Device Boot Start End Blocks Id System
/dev/sda1 * 1 24 192748+ 83 Linux
/dev/sda2 9143 24321 121925317+ 83 Linux
/dev/sda3 8535 9142 4883760 82 Linux swap / Solaris
/dev/sda4 25 8534 68356575 83 Linux
Partition table entries are not in disk order
Disk /dev/sdb: 200.0 GB, 200049647616 bytes
255 heads, 63 sectors/track, 24321 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00024d7b
Device Boot Start End Blocks Id System
/dev/sdb1 1 24321 195358401 83 Linux
The result for "sudo cat /etc/fstab" is
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda2
UUID=ba5bd5a0-a5db-4b4c-8075-35f9a14163c7 / xfs relatime 0 1
# /dev/sda1
UUID=8bfe7efd-b0b4-47ef-ba75-dda7887f5bad /boot ext2 relatime 0 2
# /dev/sdb1
UUID=a647a451-7692-41e8-9bd3-84e956ec9e67 /home xfs relatime 0 2
# /dev/sda4
UUID=d0cf0d29-374b-4e02-827b-1740719b985c /user xfs relatime 0 2
# /dev/sda3
UUID=2686784f-4301-4b5c-b235-db980204d1d8 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
I also tried to use LabVIEW image file (.nrg) to install. But my software AcetoneISO2 can only load LabVIEW 8.5 image file.
It still can not load LabVIEW 8.6.1 image file.
Hope you can give some suggestions.
Thanks a lot.
07-08-2009 12:58 PM
07-21-2009 09:42 AM
07-23-2009 05:36 AM
I have the same problem. I'm running Ubuntu 9.04 on a Lenovo T61 7664 1KU. What I found concerning the DVD drive is the following:
| Type | DVD±RW (±R DL) / DVD-RAM - removable plug-in module |
|---|---|
| Read Speed | 24x (CD) / 8x (DVD) |
| Write Speed | 24x (CD) / 8x (DVD±R) / 2x (DVD-R DL) / 2.4x (DVD+R DL) |
| Rewrite Speed | 16x (CD) / 4x (DVD±RW) / 3x (DVD-RAM) |
When I insert the Linux DVD of LabVIEW 8.6.1, Ubuntu tries to mount the medium, but then fails with a popup window giving the same message as in the first post. But the DVDs for Windows can be mounted without any problem.
"sudo cat /etc/fstab" gives the following information:
# /etc/fstab: static file system information.
#
# Use 'vol_id --uuid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=5270a8e9-84aa-4d30-a509-dd4b12031da1 / ext4 relatime,errors=remount-ro 0 1
# /home was on /dev/sda5 during installation
UUID=daa56cd9-15bf-4593-9b7f-5d26884c09dc /home ext4 relatime 0 2
# swap was on /dev/sda3 during installation
UUID=b798d3f9-25c6-4d66-a000-374c83186168 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
I'm pretty new on Linux, just installed Ubuntu 2 days ago. Hope you can help!
Cheers,
Sebastian
07-23-2009 07:26 AM
07-23-2009 03:20 PM
I did not use mount commend. I just insert the DVD to the DVD rom.
Then double click the DVD rom icon. Then the error message just comes out.
07-26-2009 09:10 AM
I tried (with Ubuntu 9.04) a manual mount of the drive with these commands
(I think
ISO9660 and UDF are the standard filesystems for DVDs/CDs?):
$ sudo mount -t iso9660 /dev/sr0 /media/cdrom
$ sudo mount -t udf /dev/sr0 /media/cdrom
In both cases I get the same error message:
mount: block device /dev/sr0 is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/sr0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
So I tried, what the above code suggested:
$ dmesg | tail
This is the result:
[10968.396447] ISOFS: Unable to identify CD-ROM format.
[11035.652954] UDF-fs: No partition found (1)
It seems, that when
trying to launch with the ISO filesystem the format of the DVD can not
be identified at all and with the UDF filesystem the DVD can be
identified, but no partition is recognized. Is this interpretation
correct? So, as it does not work with both of the filesystems, is it
possible, that I need to install an additional filesystem? On the DVD
is the Linux distribution of LabVIEW as well as the MAC distribution. Is it possible, that the DVD has a MAC specific filesystem, which is
not known to my Ubuntu?
Cheers,
Sebastian
07-27-2009 07:48 AM