Ubuntu Servers :: Unable To Mount Usb Printer

Apr 29, 2010

I am trying to mount my usb printer in Ubuntu Server 9.10. I'm trying to do this so that the usb printer will be picked up by vmware server so the Windows XP guest I have on there will then be able to access the printer as if it were hooked up to it directly. I found a few posts online and this is what I've done so far. I found in a couple of posts that they said I should uncomment out the following lines in /etc/init.d/mountdevsubfs.sh. Well I found that the file didn't exsist. Someone posted up their copy of it so I copied that code into the mountdevsubfs.sh script. That code is the following:

Code:

#! /bin/sh
### BEGIN INIT INFO
# Provides: mountdevsubfs mountvirtfs
# Required-Start: mountkernfs
# Required-Stop:

[code]....

I also added this line to the bottom of my /etc/fstab file

Code:

usbfs /proc/bus/usb usbfs auto 0 0

When I go ahead and run the script it errors out on this line:

Code:

. /lib/init/mount-functions.sh

I went to go look in /lib/init and the mount-functions.sh script doesn't exist. I've googled this and I haven't been able to find anything. why am I missing /lib/init/mount-functions.sh and how can I get that script?

View 1 Replies


ADVERTISEMENT

Ubuntu Servers :: Unable To Mount / Make It Possible?

Feb 20, 2010

I'm trying to run this command code...

how do I fix this? Although I'm working on Ubuntu 8.04.4 server 32 bit

View 3 Replies View Related

Ubuntu Servers :: VMWare Guest - VFS Unable To Mount

Jul 21, 2010

I've built a customized 2.6.32 kernel over Ubuntu 10.04 server (physically) -note: it is the same version that comes with the livecd-. Then I added my stuff, cloned the disk, applied it to 3 different hardware boxes and it works perfectly. But when I put that image on a VMWare Workstation 7.1 or VirtualBox machine it doesn't load... I get a "kernel panic: not syncing vfs unable to mount root fs on unknown-block 0,0". So, I've created a new vm, I've installed ubuntu and it booted without a problem.

I ran my kernel patching as I did on the physical machine, but when I rebooted with the new kernel, I got the same error. So, the problem seems to be something in the customized kernel, but specifically going over virualized copies. By the way - In a previous version, specifically Debian 5 with kernel 2.6.18, I did the same stuff about a year ago and the machine loads perfectly in any virtualized environment. Then, the only thing left to think about my problem is that some grub parameter or kernel driver or something is messing up with booting. The customization of the kernel is only the patching for IMQ stuff.

View 5 Replies View Related

Ubuntu Servers :: Unable To Mount NFS4 Driver?

Dec 14, 2010

I tried this command in a Ubuntu 10.10 server

$ sudo mount -t nfs4 -o port=99 xxx.xxx.xxx.xxx:/home /mnt/tmp

The server returns an error message "mount.nfs4: Protocol family not supported" and I have installed nfs-common.

View 5 Replies View Related

Ubuntu Servers :: Unable To Mount New Storage / Enable This?

Aug 24, 2011

My 11.04 installation is running beautifully in VM on ESXi. I'm trying to add storage so I added the disks, assigned them in vmware to the vm, then tried to mount them when I received the error code...

my setup:
HP Microserver, booting vmware from USB drive. Hardware RAID card (Adaptec RAID 2405), 2 x 250GB HDD in RAID1 (datastore1) with VM's, 2 x 2TB HDD in RAID1 (datastore2) - the storage I'm trying to add.

A search of the above errors yielded many results, all of them were different scenarios to mine.

View 8 Replies View Related

OpenSUSE Hardware :: Unable To Add USB Printer Via The YaST2 Printer Configuration Setup Tool In 11.3

Aug 26, 2010

I am unable to add my USB printer via the YaST2 Printer Configuration setup tool in openSUSE 11.3. The printer, a Dell Color Laser 1320c, was last used with openSUSE 11.2, and setup was entirely uneventful. No driver is provided by Dell, so I used the Fuji Xerox DocuPrint C525A Linux driver. The problem: To add a print queue in 11.3, a Connection must be specified (parallel, USB, network, etc). However, the configuration wizard fails to show the presence of the USB print device.

[Code]...

This printer was working just eight weeks ago under 11.2, and 11.3 is obviously able to detect its presence and identify it correctly. I feel certain the solution is simple, but I haven't found documentation that provides the answer.

View 7 Replies View Related

OpenSUSE Hardware :: Unable To Connect To Printer Wirelessly - Error Idle "Connecting To Printer"

Jun 23, 2011

I am unable to connect to my printer wirelessly. I get this: Idle - "Connecting to printer..." The computer never connects. I can print a configuration report and get the ip address. If I type that in a webrowser, I get an error: unable to connect. Even if I plug the printer into the computer by a usb, I am unable to access the printer's ip address in the webrowser. I'm not sure how to proceed on getting the printer working wirelessly. It is a hp 6940 I use the HP Deskjet 6940 Series hpijs, 3.10.2rc1.9 driver. I have only recently been having printer problems. The printer has been hooked up on the same network for years. It still prints via usb.

View 5 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 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 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 :: 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

Debian :: Unable To Add Printer: Forbidden When Adding "New Printer"?

Aug 19, 2011

I'm installed CUPS:

1. apt-get install cups cups-client hplip
2. /etc/init.d/cups start
3. localhost:631

When I try to add "New Printer" I see the message on the screen:
Unable to add printer: Forbidden

In log file message:

failed to CreateProfile: org.freedesktop.DBus.Error.NoReply:Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. Returning HTTP Forbidden for CUPS-Get-Devices (no URI) from localhost [CGI] CUPS-Get-Devices request failed with status 401: Forbidden

View 2 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 :: 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

Software :: Error - 'some Of Your Partitions Are Unable To Mount Press 's' To Skip Or 'm' To Manually Mount

Jun 26, 2011

actually some my windows ntfs partiitions are unable to mount at start up. the error msg is -'some of your partitions are unable to mount press 's' to skip or 'm' to manually mount.

View 14 Replies View Related

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

Mar 21, 2010

i'm trying to connect to the three other machines in my house but am having quite a hard time doing so. i've never had a problem in the past with ubuntu, but, with 9.1 and windows 7, things have gotten a bit harder. i'm running 9.1 and my roommates are running windows 7. i've installed, set up and configured samba and i can see the computers on my network, but any time i try to access either of the drives, it says unable to mount location: failed to mount windows share.

View 4 Replies View Related

Software :: Unable To Mount Windows Drive - Mount Error 92 = Protocol Not Available

Oct 4, 2010

Not able to mount windows drive & foder, in linux. i have got following error.

mount error 92 = Protocol not available

View 10 Replies View Related

Software :: IPhone 4 Won't Mount (LMDE) - Unable To Mount Location: Unhandled Lockdown Error (-5)

Jan 6, 2011

I just installed Linux Mint Debian Edition on my friend's laptop. The biggest problem is getting his iPhone 4 to mount. On libimobiledevice.org it shows a cool video of a guy managing his iPhone with Linux thanks to libimobiledevice. libimobiledevice.org also says libimobiledevice supports the iPhone 4. But when he plugs it in, he gets an error that says:

Quote: Unable to mount location: Unhandled Lockdown error (-5) It's a serious issue and needs to be resolved ASAP. ***EDIT*** If this is a hardware topic, any mods can feel free to move it.

View 5 Replies View Related

Software :: Truecrypt Has Lost Mount Type - Unable To Mount

Aug 17, 2010

I have been using truecrypt to mount a partition on my computer for a few months now. Yesterday I tried to access it and it failed, with the following error:" mount: you must specify the filesystem type "

When creating the partition, the filesystem type was set to ext2. Apart from yesterday, I have not accessed this partition for a number of days now, and have done nothing to the operating in system in the ways of changing settings and such for a good week.

View 3 Replies View Related

Ubuntu Networking :: Printer Fails To Mount After Upgrade?

May 28, 2011

I have no problems accessing files, with the windows shares. The only problem is getting my printer to mount. Here is the trouble shoot log, I didn't fine the problem till, I tried to print something.

Quote:

Page 1 (Scheduler not running?):
{'cups_connection_failure': False}
Page 2 (Choose printer):
{'cups_dests_available': [], 'cups_queue_listed': False}

[Code]....

View 2 Replies View Related

Debian :: Unable To Mount Using Udisks But Mount Is Working

Mar 6, 2011

I am using Debian 6.0. When I try to mount a drive (USB) in GNOME or using udisks, I end up with following error message:

Code:

And the when executing

Code:

Code:

Seems like it is trying to mount a CD.

But I am able to mount the same using

Code:

I tried the same with different filesystem and getting same message form udisks.

I am able mount other hard disk partition using udisks:

Code:

How to mount drives using udisks. I don't know how I can configure udisks.

View 1 Replies View Related

Ubuntu :: Unable To Play Audio CD's Or Video DVD's - Unable To Mount Disc: Location Is Not Mountable

May 24, 2010

I'm totally unable to play or mount audio CDs and unable to use video DVD's on my box right now. When I insert an audio CD I get a dialog box saying:

Unable to mount disc: Location is not mountable

and if I check messages in the Log File Viewer I see the following text repeated (save for the last line) a couple of dozen times.

Code:

May 24 13:04:37 Amber kernel: [ 6680.434685] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
May 24 13:04:37 Amber kernel: [ 6680.434691] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current]
May 24 13:04:37 Amber kernel: [ 6680.434695] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track

[code]...

on a similar but ultimately unrelated thread someone was asked to enter a few commands so I tried them and the following was the output:

Code:

main@Amber:~$ ls /dev/scd*
/dev/scd0
main@Amber:~$ sudo mount /dev/cdrom /media/cdrom0

[code]...

An error occurred: Could not open location; you might not have permission to open the file. As far as I can tell I have the relevant CSS libraries installed I'm lost without being able to play CD's and DVD's on my system.

View 9 Replies View Related

Ubuntu :: Unable To Boot/unable To Mount File System

Jun 12, 2010

I switch on the PC and it loads the Grub splash screen. However, it does not automatically boot the top entry after two seconds as it's supposed to and just hangs. I hit enter to boot it and it attempts to but after a few seconds gives me the error "unable to mount file system....a maintenance shell will be started"

This occurred after I was using it and then everything suddenly froze up on me and I had to crash out Now this!

View 6 Replies View Related

Ubuntu Networking :: Sharing Windows 7 Drives - Unable To Mount Location - Failed To Mount Windows Share Error Message

Sep 5, 2010

I have recently set up an ubuntu installation on an old PC. After some fiddling with both it, and the windows 7 machine, I have managed to share all of my drives. However, when attempting to access them from ubuntu, only 2 of the 4 hard disk shares will mount, with the other 2 failing with a Unable to mount location, failed to mount windows share error message.

View 2 Replies View Related

Ubuntu :: Can't Load A Drive / Volume - "Unable To Mount Location Error Mounting: Mount: /dev/sda1: Can't Read Superblock"

Dec 25, 2010

I have a problem in my ubuntu 10.01 that it can't load a drive/volume in ubuntu. When I tried, it said: "Unable to mount location Error mounting: mount: /dev/sda1: can't read superblock". And when I boot my pc with 'Windows', it said : "UNMOUNTABLE_BOOT_VOLUME" under a blue screen. What can I do to solve this problem?

View 9 Replies View Related

Red Hat :: Unable To Boot RHEL 5.2 And Unable To Mount Root File System In Rescue Mode

Jan 28, 2010

Environment: A 32-bit kernel RHEL5.3 system running on a virtual machine. The root(/) filesystem is on an LV.

Issue: Unable to resize the FS after extending the root LV since it is mounted. After extending the LV, online resizing of the FS was not supported and the root filesystem could not be unmounted while it was in use. On rebooting, I got a kernel panic error. In runlevel 1, I couldn't run chroot, couldn't find the /etc/fstab, root FS could not be mounted, fsck did not run (tried block 31 for second copy of superblock using dd count=1 bs=4k skip=31 seek=1 if=/dev/sda2 of=/dev/sda2), couldn't find any rpm on installation media to install unix-utils rpm. On running commands in runlevel 1,

I got the following output.

View 5 Replies View Related

Ubuntu Networking :: Mount An HP Laser Printer On Home Network Through A VPN IPSES Connection From Laptop?

Dec 12, 2010

I have tried to mount an HP laser printer on my home network through a VPN IPSES connection from my laptop, but I cannot manage to see the printer or make it accept commands.

View 1 Replies View Related

Debian Installation :: When Connect The Printer, Doesn't Recognize Printer As The Photosmart B109 Printer For Unknown Reason?

Jan 3, 2011

I've bought a HP Photosmart printer, HP Photosmart wireless e-All-in-One printer - B110a and i've got a problem installing it properly. I'm using Debian 6.0 Squeeze. When i connect the printer, Debian doesn't recognize my printer as the Photosmart B109 printer for unknown reason. When i go to the site of HP and search for a driver, it directs me to this site:I've downloaded that latest hplip file as a .run file and installed it. My printer is recognized proparly, but when i try to print a colored image, it comes out black/white. Something is not crrect. Does anyone recognize this problem with this type HP printer?

View 7 Replies View Related

General :: Networking 2 Boxes - Error: "unable To Mount Location Failed To Mount Windows Share"

Mar 27, 2011

im trying to get a network setup i followed the instruction via gentoo wiki samba what i have done

[Code]...

then i did chmod 777 to the shared folders on both machines went into nautilus it sees the folder but it will not mount the folder showing the error msg:"unable to mount location failed to mount windows share" ive been searching unbuntu forums opensuseforums and google for an answer to this issue but as of right now anything that i have tried to do has failed and nothing seems to be working.

View 12 Replies View Related

General :: Installing Printer - Add Printer In Local Network Or Windows Printer Via Samba

Nov 23, 2009

I just upgrade to Fedora 11.

I have problem in installing the printer, no matter add printer in local network or Windows Printer via Samba.

The summary is as follow:

I have download a printer driver and had installed but got error when I tried to printer a test page.

View 6 Replies View Related







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