Ubuntu :: Mount Dvd9 Iso Images?

Apr 25, 2010

I can't seem to browse/mount iso images larger than 4.7gb i am using lucid lynx latest build on a x86 system I understand it is an issue with udf 2.5 something

View 1 Replies


ADVERTISEMENT

Ubuntu :: How To Make A Dvd9 Fit On A Dvd5 - Dvd95 And K9copy Hanging

Feb 7, 2010

Trying to make a dvd9 fit on a dvd5. Mainly would like to strip all the menus so it plays nicely. The DVD in question is copy protected but plays just fine on my system with Movie Player or VLC.But so far when dvd95 or k9copy tries to analyze the structure of the dvd, they just turn grey and hang. Then my computer locks shortly after. If I have system monitor open I can see what happens -- it's not a hard lock. Basically the memory just starts filling up, and then when it starts filling the swap space that slows everything down and makes it unresponsive. If I'm really patient I can get to a console and kill the process, which returns my system to normal.Handbrake works just fine, but I don't actually want to transcode the video, just strip the menus.

View 7 Replies View Related

Ubuntu Multimedia :: DVD9 To DVD5 Floating Point Exception?

Oct 14, 2010

I have been trying to convert a DVD9 to DVD5 using the following steps

1)Rip the DVD title(s) to harddisk with DVD:RIP in a project folder. This created VOB files of the the movie and the soundtrack you picked.

2)Concatenate (merge) the VOB files into one by running in a console: cat *.vob > movie.vob

3)demutliplex movie.vob and get the M2V and AC3 files out of there. tcextract -i movie.vob -t vob -x mpeg2 > movie.m2v

4)tcextract -i movie.vob -a 0 -x ac3 -t vob > movie.ac3

5)I then shrank the movie.m2v tcrequant -i movie.m2v -o shrinked.m2v -f 1.5

[Code]...

View 2 Replies View Related

General :: How To Mount / Use ISO Images

Mar 15, 2010

I have *.iso images on a CD. I had used nero to mount these images in windows. How can I use them in linux!

View 4 Replies View Related

Fedora :: Mount Images Without Any Third Party Software?

Jan 4, 2011

I am using fedora 13 and i have an image file with the format of cue/bin. How can I mount these images without any third party softwares?

View 1 Replies View Related

Ubuntu :: Images Available 2.6.31-17 Generic And After The Download Is Complete Both Images Exist?

Jan 6, 2010

using the update maneger to update on ubuntu new linux images available 2.6.31-17 generic and after the download is complete both images exist in the grub menu should i remove them ? or just remove them from the boot menu ? and if so how could i do each.

View 6 Replies View Related

Software :: Download Some Images From A Website - Single Column Of Links To The Images?

Jul 26, 2010

I am running Linux from a DVD, not installed. I am not good with installing software, but since the DVD cannot be corrupted, I am content to operate this way. Lately, I have been having problems that previously did not occur. When I try to click on the checkbox to get rid of emails, it doesn't register in most cases, or when it does, I am clicking multiple times so it registers twice, meaning it is unchecked again. Even more frustrating is some issues that are affecting my ability to update my business. I am trying to modify spreadsheets (text not calculations).

Whenever I try to click & drag to select something to change, it keeps jumping around to select only some of what I want, something else or some combination of the 2. When I try to copy and paste several fields from 1 column to another, everything from the several fields in the source column ends up together in the last field in the target column. I am also trying to download some images from a website. There is a single column of links to the images. I have to click on the link to get to the image in order to copy it, then back out to continue looking for more links to do the same.

My computer keeps jumping back 2 steps, then forward 2 steps, and sometimes I lose my place in that list. I could deal with it if it were a small number of links, but this is a list of probably close to 20,000 links. Again, i am operating off of a live DVD so this should not be corruptible, but this has just started happening, and has been an issue the last several sessions.

View 14 Replies View Related

General :: Concatenate Several Images Into A PDF File With Several Images Per Page

May 2, 2011

I know that ImageMagick's convert program can be used as follows to convert a collection of images -- say, in PNG format -- to a PDF file:

convert *png output.pdf

The problem with this is that each image is then stretched to fit on one page, whereas I would like to keep the original dimensions of the images and put as many as possible on one page in the PDF file before moving on to another page.

View 1 Replies View Related

General :: Replace DVD / CD Install Images With USB Images

Sep 21, 2009

I am just spent half an hour hunting for a thing that should be totally available already:USB install images of Ubuntu, knoppix and all the others.And, the only good way are so far complicated tutorials where you extract the stuff from an CD image. Why??Hasn't everybody notices that CDs/DVDs are vanishing big time? That more and more systems don't have the readers anymore? Instead of following a 10 point instruction list, it would be nice to just be able to download a Ubuntu 8.10 or whatever USB image and be able to beam that DIRECTLY to a USB stick with a dd command.

Or am a missing something here? Does this exist?It should by no means be mariginal, considering how important USB stick in specific and flash memory in general have become.

View 4 Replies View Related

Ubuntu :: Mount -o Loop - Flash BIOS Error "Intel UCode Loading Error" - Make Iso Images Bootsble From The Harddisk

Feb 19, 2010

I need to flash my BIOS to get rid of an error: "Intel uCode loading error". On [URL] I have found a tutorial, that looks to be fine. I can even see in the comments, that somebody have done this with success from Ubuntu 9.04, the very same system, that I use. Nevertheless I cannot make this bootCD with my Ubuntu 9.04, as it doesn't know the loop option to mount the image.

In the tutorial it says: "Requirements for this step is that you have support for the vfat and loop file systems in the kernel. Or you can have those features compiled as modules. In the latter case you can load the modules before the next step, like this:

modprobe vfat
modprobe loop"

loop doesn't seem to be present in my system, and the command modprobe loop returns an error that the module is not available. I tried to follow the tutorial anyway, but with no success. How can I get the module lopp? I also want to use it to make iso images bootsble from the harddisk.

View 2 Replies View Related

Ubuntu Servers :: Mount A USB Drive In Rc.local With /sbin/mount And UUID Instead Of Fstab?

Feb 6, 2010

I run a headless Ubuntu 8.04 server, which acts as a web, email and file server. I am sticking with 8.04 as it is a LTS release and will upgrade to the next LTS when it is released.

I have two external USB drives, that I need to mount at boot. I have been using /etc/fstab up until now, with the following entries:

Code:

However, as I gather from doing searches is quite common, occasionally I get an error during boot (causing the system to drop to a recovery shell) because the USB drives take time to wake up and the system hasn't found them by the time it reads /etc/fstab.

From doing searches, it seems there is nothing you can do to fstab to fix this, so you need to mount them using an rc.local script instead, using:

Code:

The problem is, as I have two USB drives, their /dev/sdxx location changes between boots. I thus want to use UUID codes as I do in fstab, however I haven't found anything about this.

Does anyone know how I can use the mount command and UUID to mount a drive in rc.local and what options I have to use the mount the drive with the same options that I am using in my fstab entry? Obvisouly, I can't refer back to fstab using the mount command, because then I will still get the boot error issue if they are listed in fstab. And there is no space internally for the USB drives as there is already two internal drives.

View 3 Replies View Related

Ubuntu :: Can't Mount The Installer CD: $sudo Mount - Unknown Filesystem Type 'iso9660'

Mar 12, 2010

I installed Ubuntu Server 9.10 in a virtual machine, and I'm trying to install the VMware Tools but I can't mount the installer CD: $ sudo mount /dev/scd0 /media/cdrom mount: unknown filesystem type 'iso9660'

View 1 Replies View Related

Ubuntu Networking :: Unable To Mount Location / Failed To Mount Windows Share

Jul 26, 2010

I have a Dell Inspiron 1720 running Ubuntu v10.04 with a wireless card.My desktop is a Dell Optiflex running WinXP.The desktop is connected via ethernet cable to a Linksys wireless router. Certain folders on the desktop are set for sharing. Up until early last week I was able to access the desktop folders from the laptop with no issues.Suddenly I am now getting this error "Unable to mount location Failed to mount Windows share" whenever I try to access the desktop folders from the laptop.I suspect an upgrade is the culprit, but not sure.

View 3 Replies View Related

Ubuntu :: Fresh 9.10 Install Reboot Error No Device - Mount Partition Mount: Can't Fin?

Jun 24, 2010

what now trying to mount partition get this error this is the partition ubuntu 9.10 is installed on and upon reboot error no device with a long string. mount: can't find /dev/sda6/mnt in /etc/fstab or /etc/mtab

so now that I believe I've successfully mounted the partition how do I direct the bootloader to this partition /dev/sda6 on /media/11076e45-e27d-470b-bb6d-6894f7809a0c type ext4 (rw,nosuid,nodev,uhelper=devkit)

View 1 Replies View Related

Ubuntu :: Mount Failure - Press S To Skip Mount Or M For Manual Recovery

Jan 16, 2011

I saw a post where you were faceing "Type s for swith or M or mannual restore"

I got the same message. I tried S but nthing happend then I tried M. it took me to root@ubuntu:/#

How i restore it manunally or if not possible I need to back up the data to pend drive

but i cant find the pendrive in the home section.

View 2 Replies View Related

Ubuntu :: Mount Single Directory To Multiple Mount Points

Jan 27, 2011

I have a requirement that seems to be unique in nature. I have multiple clients who are caged to their home directories. I would like to "share" a directory which exists above these chroots with all these caged users. I know this can be accomplished using mounts but my problem is, how can I mount a single directory to multiple mount points located in each users home dir? Can this be done in the fstab file?

View 9 Replies View Related

Ubuntu Servers :: Mount Does Not List CIFS Mount Options On 10.04.2 LTS?

Apr 4, 2011

Linux box info: root@mytestbox:~# uname -a Linux mytestbox 2.6.32-30-generic-pae #59-Ubuntu SMP Tue Mar 1 23:01:33 UTC 2011 i686 GNU/Linux

Windows box info: Windows Server 2008 SP2 Enterprise I've verified via --verbose output that mount.cifs is indeed processing the passed on options.

root@mytestbox:~# mount -t cifs //10.1.1.10/Test /root/testwin --verbose -o credentials=/root/testcreds,rw,nocase,noperm,noacl,nounix,noserverin o,iocharset=utf8,file_mode=0777,dir_mode=0777

[Code]...

Yet, when I type mount all it reports is (rw,mand). The share works just fine, and I can see the masking (all files are showing as rwxrwxrwx as expected etc) but mount is not listing the options?!

Is this normal expected behavior? Is there a bug report on this? I've google'd to the best of my capabilities and could not locate any such information which is why I decided to hit the forums prior to filing a bug.

View 1 Replies View Related

Ubuntu :: Mount: Only Root Can Mount /dev/sdb1 On /media/MyUSBDrive

Apr 27, 2011

I used the ntfs-config utility to mount my windows drives automatically at startup. While doing so, I had my USB-HDD still attached, and after making changes and rebooting, it did something unknown I didn't expect and I cannot mount my USB-HDD again, and it gives me the following error message:

Error mounting: mount exited with exit code 1: helper failed with:
mount: only root can mount /dev/sdb1 on /media/MyUSBDrive

I did manage to open it somehow, but then all the data was erased apart from ~3 GiB [edit: it's got some kind of extra drive built-in which is mounted as a CD-ROM drive, and when I open that one first all the files are missing in the actual drive, otherwise I get the message above]. I don't know what information I should include here, but my fstab looks like this:

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>

[code]....

This line in terminal:

sudo mount -t ntfs-3g /dev/sdb1 /media/sdb1

Gives:

fuse: failed to access mountpoint /media/sdb1: No such file or directory

What should I do to recover my files and fix the mount error? [edit: at the very least, how do I backup my files onto my internal HDD so I can format it and recover it in this manner]

View 6 Replies View Related

Ubuntu :: Unable To Mount Internal Drive - Error: Mount Exited With Exit Code 1: Helper Failed

Aug 5, 2010

I have 2 internal drives. One is for the OS and one is for the Data. I tried to get the Data drive to mount automatically at login using some crap I found on a linux blog. Safe to say it didn't work and now I can't mount it with the OS on the OS Drive.

It mounts from a live CD and all the data is perfectly safe. When I try to mount the drive I get this error message: "Error mounting: mount exited with exit code 1: helper failed with: mount: only root can mount /dev/sdb1 on /media/data" What have I done wrong and how can I make it mount again? Preferably this time at login.

View 2 Replies View Related

Ubuntu :: Cannot Mount Partitions Anymore - Error Mounting: Mount Exited With Exit Code 1: Helper Failed

Aug 24, 2010

First of all: it's been more than 12 years ago since I worked with Linux, and a lot has changed in the meantime. But I considered it a challenge to install Ubuntu 9.10 and lateron upgraded to 10.04 LTS without any troubles, until now:

Except my main partition ("/") all other partitions fail to mount. All NTFS partitions from my other OS and also 2 other linux ext4 partitions I've made are not accessible anymore. and, what bothers me the most: I deleted those 2 new linux partitions in the meantime because I couldn't access them initially because Root was the owner (Duh! root is standard disabled in Ubuntu, right?). After an attempt to try to automount all partitions following the help guides I got now big grey errors on my splashscreen while booting, telling that an error occured with e.g. /media/Backup because it is missing or it cannot be mounted, with 3 options below: waiting, skipping or using a command prompt to solve this. I always choose Skip for safety.

Now if I want to see the content of all my other partitions I got a popup telling me unable to mount e.g. /media/Downloads and the message included:

[Code]....

View 9 Replies View Related

Ubuntu Networking :: Samba And External Drive - Unable To Mount Location - Failed To Mount Windows Share - Dialog Box

May 25, 2010

I have been trying to share folders from my main PC which is running Ubuntu 10.04. I have been able to figure out Samba enough to get my a couple of folders shared, but I have been unable to share any folders which are on my external harddrive. After entering the path in my smb.conf file they appear on the network but I am unable to navigate to them. When trying to navigate to them through the network folder on the pc they are actually connected to I get an "Unable to mount location: Failed to mount windows share" dialog box. On the windows pc I am trying to share with I get, "Windows cannot acces \Josh-Desktop
ame of folder"

My smb.conf file looks like this:

That folders I cannot access are Music and Videos.

View 9 Replies View Related

Ubuntu Installation :: Mount Or Not To Mount - Can't Create A Partition

Jan 2, 2010

I've just bought a HP mini compaq laptop. The laptop doesn't have any CD/DVD "reader". So i was forced to download the .iso file to install ubuntu in addition to Windows XP that was present when i bought it. To do so i used UNetbootin, and i used my only hard disk as a live CD. But when i wanted to install ubuntu, they told me to create a partition. The problem is that i can't. I have only one partition sda1(nfst) which covers the whole stockage memory, and an empty space(8Mo). I can't acceed to any of the resizing or modifying options to edit the nfst partition. The only options are manage flags and umount. When i click on this one, they tell me : # umount /cdrom : cdrom is busy.

View 3 Replies View Related

Ubuntu :: Unable To Mount Location Can't Mount File

May 7, 2009

I on a dell latitude c500/c600 and running 9.10 and have a maxtor 160 gb external hd that wont mount right. it shows up in / but when i click on it i get the error message:unable to mount location can't mount file. could someone give a suggestion to get this to work.

View 9 Replies View Related

Ubuntu :: Way To Delete Old Images?

Jan 8, 2010

every time a new linux_image_generic install, my grub boot menu gets longer, any way to delete old images?

View 7 Replies View Related

Ubuntu Multimedia :: Cannot See Gif Images ?

Feb 26, 2010

I am configuring an ubuntu system for a friend of mine, he is Arab and he used to watch (with windows) the films on this site: [url]

I tried to open the site with firefox but I cannot see the image on that page, I see the cursor changing shape and clicking with right button in the properties I see they are gif images, furthermore clicking on the (not displayed) images should open a link to the film but instead a blank page opens with error.

View 3 Replies View Related

Ubuntu :: Convert Images To Pdf?

Mar 9, 2010

i have alot of images that need to be printed into a pdf.

i am not aware of any software that allows me to do this. and searching on the web is bringing to to alot of propitiatory garbage.

aside from openoffice, what alternatives do i have?

i do not prefer open office because it doesn't let me utilize the whole page smack-off-the-bat.

if it pasted images to the size they were meant to be (the whole page) it would be good enough for me (but its not ) the images need to be in a particular order.

View 5 Replies View Related

Ubuntu :: Booting Various Iso Images From Usb?

Mar 24, 2010

I've searched for answers in google, but get not i wanted. I wanted to prepare bootable iso from usb under Ubuntu. Fine, there's UNetBootin, dd if= of= command etc. But I am concerned and the specific type of iso images booting - AntiVirus rescue cd's.

Using UNetBootin i could only prepare thumb drive to boot Dr. Web Rescue CD, but neither Kaspersky Rescue Disk nor F-Secure Rescue CD couldn't be preapred well (NOTE that my BIOS can boot livecd from usb drive!). Using dd if= of= command also didn't worked, cause prepared thumb couldn't boot - get errors: "Missing operating system" or "Could not find kernel image: linux". Is it that i must install grub/lilo or syslinux on thumb, then edit .cfg file and then copy image, or what? I'm concerned only on AV Rescue Disk's, like: Kaspersky, F-Secure, GData Boot CD, BitDefender Rescue Disk etc. I've booted (and it worked) Symantec boot cd but it's based on WinPE and i had prepared thumb under Windows 7, so it's a completely different story.

I have Bootable USB Drive Assistant in my Ubuntu 9.04 but when i try to choose some of those cd's, i get error that "It isn't installable CD image, so application can't use it" or something like that. What application do i have to use then?

View 1 Replies View Related

Ubuntu :: Cut Jpg Images In Two Parts?

Nov 7, 2010

How do I cut jpg images in two parts?

If I want to e.g. slice an jpg vertically at so and so many pixels from the bottom.

View 1 Replies View Related

Ubuntu Multimedia :: Different Images Will Pop Up For Less Than A Second?

Jan 20, 2011

I'm running Ubuntu 10.10 with an NVIDIA GeForce 6100 video adapter and my monitor seems to flicker whenever the the computer is processing. My system is up to date and I did install the recommended NVIDIA driver. The monitor isn't going blank or anything like that, it just seems like every once in a while different images will pop up for less than a second. Any ideas as to what the problem might be? I've attached a copy of the xorg.conf file as well:

Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
EndSection
Section "Module"
Load "glx"
EndSection

[Code]...

View 1 Replies View Related

Ubuntu :: Can't Open Images - Img - Dvd - Ccd

May 26, 2011

I can't open images

Example: .img .dvd .ccd

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved