Mounting shares with nautilus

When I was using Ubuntu a few months ago Nautilus automatically mounted shared folders. That was really convenient and I'm trying to figure out how to do this on Arch. My shared folder icon comes up but when I try to open it I get the error, Unable to Mount Location: Failed to mount windows share.
I browsed the forum and the wiki looking for answers. I've messed with the samba.conf file and can't seem to get this to work. I even copied my roommates smb.conf from his computer running Ubuntu. Here's the smb.conf:
# Sample configuration file for the Samba suite for Debian GNU/Linux.
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options most of which
# are not shown in this example
# Any line which starts with a ; (semi-colon) or a # (hash)
# is a comment and is ignored. In this example we will use a #
# for commentary and a ; for parts of the config file that you
# may wish to enable
# NOTE: Whenever you modify this file you should run the command
# "testparm" to check that you have not made any basic syntactic
# errors.
#======================= Global Settings =======================
[global]
## Browsing/Identification ###
# Change this to the workgroup/NT-domain name your Samba server will part of
workgroup = WORKGROUP
# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
; wins support = no
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
# This will prevent nmbd to search for NetBIOS names through DNS.
dns proxy = no
# What naming service and in what order should we use to resolve host names
# to IP addresses
; name resolve order = lmhosts host wins bcast
#### Networking ####
# The specific set of interfaces / networks to bind to
# This can be either the interface name or an IP address/netmask;
# interface names are normally preferred
; interfaces = 127.0.0.0/8 eth0
# Only bind to the named interfaces and/or networks; you must use the
# 'interfaces' option above to use this.
# It is recommended that you enable this feature if your Samba machine is
# not protected by a firewall or is a firewall itself. However, this
# option cannot handle dynamic or non-broadcast interfaces correctly.
; bind interfaces only = true
#### Debugging/Accounting ####
# This tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/log.%m
# Cap the size of the individual log files (in KiB).
max log size = 1000
# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
; syslog only = no
# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
syslog = 0
# Do something sensible when Samba crashes: mail the admin a backtrace
panic action = /usr/share/samba/panic-action %d
####### Authentication #######
# "security = user" is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html
# in the samba-doc package for details.
; security = user
# You may wish to use password encryption. See the section on
# 'encrypt passwords' in the smb.conf(5) manpage before enabling.
encrypt passwords = true
# If you are using encrypted passwords, Samba will need to know what
# password database type you are using.
passdb backend = tdbsam
obey pam restrictions = yes
; guest account = nobody
invalid users = root
# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
unix password sync = yes
# For Unix password sync to work on a Debian GNU/Linux system, the following
# parameters must be set (thanks to Ian Kahan <<[email protected]> for
# sending the correct chat script for the passwd program in Debian Sarge).
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# 'passwd program'. The default is 'no'.
pam password change = yes
# This option controls how nsuccessful authentication attempts are mapped
# to anonymous connections
map to guest = bad user
########## Domains ###########
# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the 'domain master' setting to no
; domain logons = yes
# The following setting only takes effect if 'domain logons' is set
# It specifies the location of the user's profile directory
# from the client point of view)
# The following required a [profiles] share to be setup on the
# samba server (see below)
; logon path = \\%N\profiles\%U
# Another common choice is storing the profile in the user's home directory
; logon path = \\%N\%U\profile
# The following setting only takes effect if 'domain logons' is set
# It specifies the location of a user's home directory (from the client
# point of view)
; logon drive = H:
; logon home = \\%N\%U
# The following setting only takes effect if 'domain logons' is set
# It specifies the script to run during logon. The script must be stored
# in the [netlogon] share
# NOTE: Must be store in 'DOS' file format convention
; logon script = logon.cmd
# This allows Unix users to be created on the domain controller via the SAMR
# RPC pipe. The example command creates a user account with a disabled Unix
# password; please adapt to your needs
; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u
########## Printing ##########
# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
; load printers = yes
# lpr(ng) printing. You may wish to override the location of the
# printcap file
; printing = bsd
; printcap name = /etc/printcap
# CUPS printing. See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
; printing = cups
; printcap name = cups
############ Misc ############
# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
; include = /home/samba/etc/smb.conf.%m
# Most people will find that this option gives better performance.
# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html
# for details
# You may want to add the following on a Linux system:
# SO_RCVBUF=8192 SO_SNDBUF=8192
socket options = TCP_NODELAY
# The following parameter is useful only if you have the linpopup package
# installed. The samba maintainer and the linpopup maintainer are
# working to ease installation and configuration of linpopup and samba.
; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' &
# Domain Master specifies Samba to be the Domain Master Browser. If this
# machine will be configured as a BDC (a secondary logon server), you
# must set this to 'no'; otherwise, the default behavior is recommended.
; domain master = auto
# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
; idmap uid = 10000-20000
; idmap gid = 10000-20000
; template shell = /bin/bash
# The following was the default behaviour in sarge,
# but samba upstream reverted the default because it might induce
# performance issues in large organizations.
# See Debian bug #368251 for some of the consequences of *not*
# having this setting and smb.conf(5) for details.
; winbind enum groups = yes
; winbind enum users = yes
# Setup usershare options to enable non-root users to share folders
# with the net usershare command.
# Maximum number of usershare. 0 (default) means that usershare is disabled.
; usershare max shares = 100
# Allow users who've been granted usershare privileges to create
# public shares, not just authenticated ones
usershare allow guests = yes
usershare owner only = False
#======================= Share Definitions =======================
# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user's home directory as \\server\username
;[homes]
; comment = Home Directories
; browseable = no
# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
; read only = yes
# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
; create mask = 0700
# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
; directory mask = 0700
# By default, \\server\username shares can be connected to by anyone
# with access to the samba server. Un-comment the following parameter
# to make sure that only "username" can connect to \\server\username
# This might need tweaking when using external authentication schemes
; valid users = %S
# Un-comment the following and create the netlogon directory for Domain Logons
# (you need to configure Samba to act as a domain controller too.)
;[netlogon]
; comment = Network Logon Service
; path = /home/samba/netlogon
; guest ok = yes
; read only = yes
; share modes = no
# Un-comment the following and create the profiles directory to store
# users profiles (see the "logon path" option above)
# (you need to configure Samba to act as a domain controller too.)
# The path below should be writable by all users so that their
# profile directory may be created the first time they log on
;[profiles]
; comment = Users profiles
; path = /home/samba/profiles
; guest ok = no
; browseable = no
; create mask = 0600
; directory mask = 0700
#[printers]
# comment = All Printers
# browseable = no
# path = /var/spool/samba
# printable = yes
# guest ok = no
# read only = yes
# create mask = 0700
# Windows clients look for this share name as a source of downloadable
# printer drivers
#[print$]
# comment = Printer Drivers
# path = /var/lib/samba/printers
# browseable = yes
# read only = yes
# guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# Replace 'ntadmin' with the name of the group your admin users are
# members of.
; write list = root, @ntadmin
# A sample share for sharing your CD-ROM with others.
;[cdrom]
; comment = Samba server's CD-ROM
; read only = yes
; locking = no
; path = /cdrom
; guest ok = yes
# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0
# The CD-ROM gets unmounted automatically after the connection to the
# If you don't want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
; preexec = /bin/mount /cdrom
; postexec = /bin/umount /cdrom
[usershares]
comment = Video Folder
path = /home/cd/video
read only = no
browseable = yes
writable = yes
public = yes
guest ok = yes
available = yes
usershares max shares = 100
usershares owner only = False

I'm having the same issue here, though not just in Nautilus.
Samba is working to some extent because I can access the directories I'm sharing on both of my Linux computer from a Windows laptop with no trouble. Come to think of it the Windows laptop (running XP) and my VirtualBox, also running XP, both access the samba shares fine.
However, I can not access them from the Linux computers. I have two Linux machines actually, Avalon and Atlantis. The one, Avalon, I can't access anything from/on (though Windows can access it just fine). The other one, Atlantis, I am sharing /homes and /srv, /srv mounts fine, but /homes will not. I'm sharing /srv on Avalon as well, but it won't mount.
To simplify, /srv on Atlantis is the only share I can access from either Linux machine. But only the /srv on Atlantis, not the /srv on Avalon.
I have smbnetfs installed. Here are my daemons from rc.conf:
DAEMONS=(syslog-ng network netfs smbnetfs crond dbus hal fam alsa mysqld mythbackend mpd openntpd lircd cups httpd sshd privoxy tor samba gdm)
I am curious though: does netfs and smbnetfs need to be running?
Any help would be appreciated. Thanks.
Frantic wrote:You should check your logs and see why the mount is failing, it's probably a small tweak (maybe fuse not loaded)
Probably something I should know already, but what logs should I check? Thanks.
Last edited by The Avatar of Time (2009-03-06 10:16:03)

Similar Messages

  • Mounting Remote Shares with the Same Name

    I am accessing shares on remote servers and can mount volumes with no problems initially, using command+k and setting the Server Address to smb://ServerNameOrIP/SharePoint. This mounts a volume with the name of the share point. The problem I've run into is at work I need to mount 2 volumes on 2 different servers with the same share point name. These are shared servers, and for unrelated reasons the folder names on either server can not be changed. This doesn't work well for me. It creates the first volume with the name "Share" and a second one that in finder appears to be called "Share" as well, but if I use "Get Info" or in Terminal run ls /Volumes I can see that it actually gets mounted as "Share-1".
    Is it possible to change the name of one (or both) of these mounts? Mostly so I can see which one I'm on when browsing though Finder. I changed some settings in Finder so that the title bar allows me to see whether I'm on "Share" or "Share-1" but that doesn't actually tell me what server I'm on. Any ideas?

    I just discovered this after trying frivolously to get 2 shares of the same name from 2 different NAS drives to auto mount ....
    limitation with autofs or something ? it should really be painless, as it is in windows. but it seems on the mac side, OS X won't allow shares with the same name to auto mount ....

  • Accessing Windows CIFS Shares via Nautilus

    Hi,
    I've recently installed and configured Solaris 11, am having problems accessing Windows CIFS shares via Nautilus.
    I've installed both samba (needed for CUPS to print to printers connect to a windows pc) and smb/client. The smb/client and samba services are running. The smb/server service is not installed.
    I can print to any printer on the windows PC I'm trying to access via Nautilus, so I know my username/password for accessing the pc are correct.
    I can also manually mount any share on the windows PC via the cli (eg mount -F smfs -o user=elin //elink/users /mnt), and browse the files directly that way, except the file permisssions don't seem to align with any unix user. Again this just shows that the username/password combination is ok.
    For Samba, I'm using the default smb.conf file as /etc/samba/samba.conf. Workgroup is set to WORKGROUP in smb.conf.
    On the Windows pc, in the security event viewer, I can see the auth request, however is failing with bad password (event ID 4776, error code 0x006a). In the default group policy object for networking, I've set to accept "LM & NT, NTLMv2 when neogiatated", as this allows legacy clients to connect. (Legacy meaning NT4, Win95, etc, and also has the benefit of allowing other OSes to connect as well).
    I'm also able to access the WIndows PC CIFS shares from an Arch Linux based setup (running GNOME 3.2 w/ Nautilus 3.2), so I doubt it's the Windows side of things causing the problems. Additionally, when I was running Solaris 10u9 (just before upgrading to Sol11), I was able to access the shares via Nautilus as well.
    So my question is:
    1. Does Nautilus use Samba or the Oracle smb/client service to handle mount windows CIFS shares?
    2. What log files or configuration files do I need to looking at to help with this error?
    As a side question,
    I've found that on a clean installation running the "Print Manager" accesses CUPS fine, but once you install a printer, it'll no longer connect to CUPS, unless run from the cli "sudo system-config-printers". So this is a permissions issue, where's the best place to fix/handle that one.

    Replying to my own thread, as I have a possible but very-hackish solution.
    To add some further details to my original post.
    There are 4 PCs on the LAN.
    1. Hellfire - OS = Solaris 11 11/11
    2. Brimstone - OS = Arch Linux
    3. Elink - OS = Win7 Pro x64 SP1
    4. IsaacPC - OS = WinXP Home SP3
    Attempting to connect to Elink from Hellfire, accessing CIFS shares via Nautulis fails. (Mounting shares via Nautulis fails, but works fine from CLI using 'mount' command which to my understanding uses the smb/client service to work). Elink also hosts all the printers on the LAN, a HP LJ1200 and an Epson Fax/Printer/Scanner.
    Helfire does attempt to authenticate, as listed in the event logs on the Win7 PC (elink), but is returning bad password when using Nautulis. (but printing from hellfire to either printer on elink works fine, as does mounting CIFS shares using 'mount').
    Booting the live CD of Solaris 11, also exhibits the same non-working behaviour when attempting to mount CIFS shares in Nautulis.
    Attempting to access CIFS shares on elink from Brimstone (via Nautulis 3.2 within GNOME 3.2), or from IsaacPC works fine.
    Hellfire configuration.
    Samba is installed, but NOT running (samba is needed for accessing the printers on elink, as CUPS needs smbspool which is part of the samba package), and the native smb/client service is also running.
    smb.conf is a direct copy of the default *.conf file, except the WORKGROUP is set to 'WORKGORUP'. There is a symlink to smb.conf in /etc/sfw/smb.conf -> /etc/samba/smb.conf
    Onto the hackish-fix.
    I've noticed that there are 2 copies of libsmbclient.so installed on the system, one in /usr/sfw/lib (part of the "libsmbclient" package) and another in /usr/lib/samba (part of the "samba" package).
    "libsmbclient" appears to be based on samba 3.5.8 codebase, and is linked to the gvfsd-smb daemon (this is the software that Nautulis uses to talk SMB to access CIFS shares).
    "samba" is based on the samba 3.5.10 codebase, and it's installation has nothing to do with GNOME or Nautulis in any manner.
    Using any of the samba included tools to test SMB/CIFS functions, work with 1 minor exception (which I'll list below). eg, using smbclient I can list all shares on any PC on the LAN, etc.
    So as a hunch, I renamed the libsmbclient.so.0 in /usr/sfw/lib, and symlinked /usr/sfw/lib/libsmbclient.so.0 -> /usr/lib/samba/libsmbclient.so.0 (so that gvfsd-smb is linked against the slightly newer version of the libsmbclient.so as included in the samba package located in /usr/lib/samba).
    I rebooted Hellfire, and now I'm able to access CIFS shares via Nautulis, provided that some form of authentication is needed (that is a username and password is needed - guest access and blanks passwords don't work - but these IMO should be disabled immediately as part of a baseline security package in regards to Windows - so no harm there).
    Now to the minor exception I noted earlier. When using smbclient to actually connect and transfer files, I get:
    ld.so.1: smbclient: fatal: relocation error: file /usr/lib/libreadline.so.5: symbol tgetent: referenced symbol not found
    As far as I know, tgetent is part of libtermcap.so, so I guess when building smbclient or libreadline.so, the link reference to termcap was left out? (or something like that). Anyway, that's another issue...

  • Browsing SMB shares in nautilus broken

    After some recent updates to samba (don't remember exactly what was updated, but I remember it was definitely some stuff to do with samba and this problem came up right after) I can no longer view any of my windows shares. I use gnome 3 and view my windows shares through nautilus. This used to work fine after only installing samba and gvfs-smb. Now when I try and browser shares it constantly freezes, in seemingly random places. Sometimes just clicking "browse networks" nothing happens. Sometimes it works fine and I can click windows network, but when I click "WORKGROUP" it freezes and then says unable to retrieve share list.
    Last edited by bwat47 (2011-08-14 17:30:36)

    got another samba update today but still same issue. Half the time it won't even open browse network itself (says something about it being mounted in another location)
    Last edited by bwat47 (2011-08-18 04:01:05)

  • Openoffice + windows share + GNOME/Nautilus

    Hi,
    I'm trying to edit a windows excel file which is located in a windows share.
    I've done this before using Ubuntu's OpenOffice without problems.
    When I'm trying to save the changes into the file (after say yes to the Excel format) I'm getting the following error:
    "Error saving the document name_of_the_doc: General input/output error while accessing to /home/name_of_user/.gvfs/name_of_share/name_of_the_doc.xls"
    I get this twice and a last error which says:
    "Error saving the document name_of_the_doc:
    General Error
    General input/output error."
    The funniest thing is that after all those errors a new file is created in the share with the same names plus a sequential number (one for each try). This file has the same content as the original without the changes.
    I just migrated from Ubuntu and I really like ArchLinux, but with such a problem I can't even work... Any ideas??
    Thank you.
    Derek.

    Windows shares tend to be read only unless you have the ntfs-3g driver installed, and even then you would be better mounting via fstab than via gvfs.  At least that's my experience.
    Hi, thank you for your comment SiC! Well, I mostly agree with you but there are two facts which make me relate this problem to OpenOffice exclusively:
    1.- The rest of programs (i.e. gedit) can save into that share without problem
    2.- I had this configuration under Ubuntu working for months.
    Is anyone there who could test the same scenario (that is, saving a windows share located excel 2003 file changed by openoffice 2.4/3, share mounted using gvfs) ?
    Thank you.
    Derek

  • Lion will not mount shares from Debian Linux 5.0 server

    HI after Lion update I cant mount shares from our server, it replys back with this:
    "The version of the server you tryed to connect to are not supported"
    I can not find info about server versions supported anywhere
    Anyone know what can be done to fix this problem with shares?.

    I figured out the problem.
    This is going to sound a little crazy, but I've spent a lot of time on this one.
    There's some kind of incompatibility with Lion and Seagate ST31000340AS drives. I was trying to install Lion on these drives and it would consistently fail. I've also tried to use these drives in a RAID volume. No go. I tried three different drives of this model. All of them failed.
    I tried to install Lion on a Seagate ST31000528AS and it worked first time and sings beautifully.

  • Auto mount failure with "not owner"

    I have setup auto_master with the following line:
    /-    auto_direct
    I also have tested a client smb share connection with the following successfully since this node is a member of the cih-ettm windows domain;
    I have also setup smbadm add-key with this users name and password so that when I mount here with the following command a password is not required.
    mount -F smbfs //chaos.cih-ettm.com/InboundImages /export/home/ttp/images
    This works and I get a mount point and I can copy files to the directory and the windows box sees and can access the files.
    If I try to set this up as an automount by adding the following line to /etc/auto_direct and execute the command automount I receive the error 'not owner'
    /export/home/ttp/images -fstype=smbfs,dirperms=0755,uid=ttp //chaos.cih-ettm.com/InboundImages
    Error returned:
    automount: mount /export/home/ttp/outboundimages/images: Not owner
    I also have the following lines in the /etc/security/exec_attr
    Basic Solaris  User:solaris:cmd:::/usr/lib/fs/smbfs/mount:privs=sys_mount
    Basic Solaris User:solaris:cmd:::/usr/lib/fs/smbfs/umount:privs=sys_mount
    In all cases the 'ttp' user is the owner of the /export/home/ttp/images
    Any help would be appreciated.
    Thanks,
    Dave

    I have setup auto_master with the following line:
    /-    auto_direct
    I also have tested a client smb share connection with the following successfully since this node is a member of the cih-ettm windows domain;
    I have also setup smbadm add-key with this users name and password so that when I mount here with the following command a password is not required.
    mount -F smbfs //chaos.cih-ettm.com/InboundImages /export/home/ttp/images
    This works and I get a mount point and I can copy files to the directory and the windows box sees and can access the files.
    If I try to set this up as an automount by adding the following line to /etc/auto_direct and execute the command automount I receive the error 'not owner'
    /export/home/ttp/images -fstype=smbfs,dirperms=0755,uid=ttp //chaos.cih-ettm.com/InboundImages
    Error returned:
    automount: mount /export/home/ttp/outboundimages/images: Not owner
    I also have the following lines in the /etc/security/exec_attr
    Basic Solaris  User:solaris:cmd:::/usr/lib/fs/smbfs/mount:privs=sys_mount
    Basic Solaris User:solaris:cmd:::/usr/lib/fs/smbfs/umount:privs=sys_mount
    In all cases the 'ttp' user is the owner of the /export/home/ttp/images
    Any help would be appreciated.
    Thanks,
    Dave

  • [SOLVED] Mount NAS with writing permissions

    I've got a MyBook World Edition NAS which i only use from time to time - so i decided to mount it manually.
    To mount it convenient i've added the following to my /etc/fstab so i can mount it with "sudo mount /mnt/mybook":
    //IPC/Public /mnt/mybook cifs users,noauto,noatime,ip=192.168.1.200,username=**********,password=**********,iocharset=utf8,file_mode=0777,dir_mode=0777
    Mounting works well, but i don't get writing permissions.
    Shouldn't "file_mode/dir_mode" do the trick?
    Last edited by Flylow (2010-08-14 08:59:30)

    Flylow wrote:
    Thanks for the tip with the external .creds file :-)
    1) Don't get the point - need some further explanation
    2) Owner is root, i can change it to myself, but as soon the NAS gets mounted the owner changes to root
    Does this maybe has to do with "sudo mount ..." Shouldn't I be able to mount without sudo since i added users to fstab?
    Ah...
    1) means is the share exported as read write execute from the NAS?
    2) Since the owner is root:root that may explain your problem.  What are the permissions on the share once mounted?  I'm guessing 744 or 644?
    Instead of the file_mode and dir_mode, try a uid,gid to the mount line and match them up to your user.

  • Map 2 NAS shares with the same name.

    Hello,
    I can map each of them, but not two at a time.
    let´s say server1 has a share called "public" and server2 the same share.
    No, rename of the share is not possible.
    Any idea?
    Pls. help!!!
    Thx
    Hans

    I just discovered this after trying frivolously to get 2 shares of the same name from 2 different NAS drives to auto mount ....
    limitation with autofs or something ? it should really be painless, as it is in windows. but it seems on the mac side, OS X won't allow shares with the same name to auto mount ....

  • Quicktime would fail to write/export to server windows share with "Error -43: file not found" errors

    Summary:
    With the combination of Windows 7 and Quicktime 7.x, Quicktime would fail to write/export to server windows share with "Couldn't create output movie storage" and "Error -43: file not found" errors
    Steps to Reproduce:
    Trying to render to Quicktime files using network shared folders as a destination:
    Unable to open file. (-1610153459)
    The funny thing: it only happens when there are at least two shared folders mapped on the workstation, and the destination folder used for the rendered movie is not the first one.
    If we have only two mapped drives, F: and G: for example, and we try to render something to F:, everything works fine and no error is showed. But, when the destination is the G: drive, rendering never works, the error is showed, but a zero-byte file is created in F: (!!). ODD! If we remap F: drive with a different letter, but a letter BEFORE G:, the problem always happens. If we remap drive F: to any letter AFTER G:, making G: the first available network drive, rendering works. Also, simply unmapping F: and leaving G: as the only connected network folder makes render to work.
    We do not have a D: drive in our Windows 7 workstations, they are all C: only.
    It is a 100% reproducible problem. We tried with three different Active Directory networks and workstations. It has all of the features of a software bug.
    Any help would be appreciated.
    Cheers!
    Expected Results:
    Error -43: file not found
    Actual Results:
    The workaround seems to be to use the full path to the servers instead of the mapped mount point (ie //server/z/... instead of Z:/...
    Regression:
    All versions of quicktime 7 in combination with windows 7 client and more than one smb share point mapped in a letter.
    Notes:
    All software that uses quicktime movie exports showed this error.

    Not sure what file your are referencing?  Thanks for your suggestion, however, it's not relavant.
    It renders fine if you render to either the UNC path or the first mapped drive.
    i.e. If you have two mapped drives G: and H:
    they both point to \\fileserver\share1\folder
    If you render to H: it will fail, if you render to G: it works!  Same path, same user, same permissions.
    The only difference is H comes after G, so it fails... BUG.  If it was to do with anything else, underscores, permissions etc, it would fail on both.

  • Determining volume as physical hard drive or mounted share

    Is it possible to determine via the terminal if a mounted volume is actually a mounted share (and subsequently get its IP address) versus a physical hard drive?
    Just like how the Finder's Get Info will display "Server: smb://000.000.000.000/sharename" if the volume is a share volume.
    I've been scouring the "man" pages and the only remotely related command "diskutil list" only shows information on physically attached drives.
    I'm almost completely inexperienced in the command line but I'm beginning to delve into this world as part of a larger programming project.
    TIA!

    Hi,
    I fear that I didn't understood your final goal but to determine if there is a network volume mounted on your system you can use the mount command (simply type mount in a terminal window). A mounted network volume appear in that list with a beginning double slash followed by the sharepoint and the mountpoint on your system.
    -------------------snip---------------------
    pronto-macpro:Preferences pronto$ mount
    /dev/disk2s2 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    /dev/disk1s2 on /Volumes/HD_3 (hfs, local, journaled)
    /dev/disk0s2 on /Volumes/HD_2 (hfs, local, journaled)
    /dev/disk3s2 on /Volumes/HD_4 (hfs, local, journaled)
    /dev/disk2s3 on /Volumes/BOOTCAMP (ntfs, local, read-only, noowners)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    /dev/disk5s2 on /Volumes/DVDToolKit (hfs, local, nodev, nosuid, read-only, noowners)
    //[email protected]/orgfiles on /Volumes/orgfiles (smbfs, nodev, nosuid, mounted by pronto)
    /dev/disk4s2 on /Volumes/WIN (msdos, local, nodev, nosuid, noowners)
    /dev/disk4s1 on /Volumes/AppleStick (hfs, local, nodev, nosuid, noowners)
    -----------------------snap----------------------
    You can filter out this network volumes by using a piped grep command:
    -----------------------snip----------------------
    pronto-macpro:Preferences pronto$ mount | grep //
    //[email protected]/orgfiles on /Volumes/orgfiles (smbfs, nodev, nosuid, mounted by pronto)
    -----------------------snap----------------------
    Hope that helps
    Bye Tom

  • PROBLEM: Filemaker Server is ROOT and ROOT can't see mounted shares

    We have Filemaker server 8 running on our machine and have found a silly problem. Filemaker has a built in tool to backup databases. Databases can be backed path can be over the network by typing:
    filemac:/[volume]/[path]
    Unfortunately, the process "Filemaker" is owned by ROOT, while the server (another OSX server) is owned by the user "filemaker". In theory ROOT is god, and can do anything, but for some reason ROOT doesn't appear to be able to get to shares owned by a user on the machine. Can anyone help me with any of the following potential sollutions?
    1) Mount a share on startup as ROOT
    2) Allow ROOT read/write to shares that other users have mounted
    3) Change "ownership" of the "Filemaker" proccess to be a user (instead of ROOT)
    Worse case I could back up the files locally, and then create an applescript to PUSH the files where they're supposed to live, but that feels like one more thing that could go wrong to me, and I like to have as few moving parts as possible.
    Thanks in advance

    This is incorrect, Filmaker Server is not "ROOT" and you probably won't have much satisfaction pursuing your line of thinking.
    ps -aux | grep -i filemaker
    fmserver 457 3.0 -2.5 186340 53236 ?? Ss 19Mar06 316:56.83 /Library/FileMaker Server/Tools/fmserverd
    fmserver 431 1.1 -0.4 93736 8576 ?? Ss 19Mar06 179:51.17 /Library/FileMaker Server/Tools/fmserver_helperd
    I think you may be confusing the parent process with posix user/group permissions. Yes, the parent process of many running processes will show as "root", because the initial process that launches others runs as/belongs to root.
    the "root" user in *nix has full permissions and can see mounted shares. You may have some other issues due to misconfiguration, sorry.
    Just in case you are doing so, no matter what anyone tells you anywhere, it is not a good idea to log in as "root" via the GUI (when the server finishes booting and asks for a username and password).
    One should not do this for a number of reasons.
    As for your FM Server problem, I've done two migrations/updates to FM 8 server & client quite recently.
    The installation creates a new system user and group, which you will not see without selecting the "show system users" in Workgroup Manager.
    The user (ie: owner) is (shortname) fmserver , and the group is fmsadmin
    FM Server stores the working databases in /Library/FileMaker Server
    and that "FileMaker Server" directory is owned by fmserver:fmsadmin
    You should not change that or FM won't run properly, if at all.
    You can point to whatever directory you wish, using FM Server's built-in backup automation.
    What is probably throwing you off, is that, unless you put a trailing slash at the end of the path you enter (in the dialog for the FM Server built-in backup routine), it will tell you:
    "invalid path"

  • What causes the automatic unmount of mounted shares?

    Hi all,
    I was wondering what would cause a share to automatically unmount...
    Let's say I mount 3 shared folders located in 3 different machines on my LAN (AFP shares).
    "SharedFolder1" is on "Machine1"
    "SharedFolder2" is on "Machine2"
    "SharedFolder3" is on "Machine3"
    From "Machine0" I can read and write the content of all the shared folders.
    However, when I come back the next morning, only "SharedFolder2" is mounted (on "Machine0") and I get no error message (at least none that is still visible). I can remount "sharedFolder1" and "SharedFolder3", but I was wondering why these were unmounted on "Machine0"... All I know is that "Machine1" and "Machine3" didn't reboot nor shut down...
    Maybe it is a setting on "Machine1" and "Machine3", respectively?
    Maybe they went to sleep?
    Maybe this is due to user switching on the remote machine?
    Maybe there's a time limit where an idle mounted share would be automatically unmounted?
    I don't know, there are so many settings... and I could run a lot of tests to figure it out...
    Does anyone know what can cause a share to be unmounted?
    Thank you very much in advance for your help.
    Best,
    -a-

    "Since I recently bought a Time Capsule, I set up a sharing volume with my wife's computer. I set wake on demand and it works perfectly. Even putting her computer to sleep and mine gone to sleep, the volume stays mounted. When I wake mine up, the shared folder from her computer ejects momentairly on startup, but remounts imediately after fully waking. Her computer is still in sleep mode."
         Exactly the behavior I would be expecting...
         Although I would also expect a password prompt if it is not stored
         in the client...
    "So, to answer you question, if wake on demand is set up correctly on the shared computer, the shared folder does not eject when putting shared computer in sleep mode.
    But, if the sharing computer looses power or wake on demand is not set or working correctly, it will disconnect and eject the volume."
         This is what I get right now, but different shares
         (different remote machines)
         behave differently, some of them unmount, while other
         remain mounted...
         I can't find out what the difference is among their respective settings.
    "Apple says it requires an Airport Airport Base Station or Time Capsule with up to date firmware for wake on demand to work, so I don't know if any other router today will support that feautre for Apple. I know for sure my older router did not have the capability and I could never find a work around."
         Why the heck to they ALWAYS do that?!?
         Whatever... Thank you very much for your answer anyway.
         Happy Holiday
         -a-

  • Same mounted shares different user accounts problem

    I have two accounts on my MacPro that mount 4 smb shares from a Windows Server and two AFP shares from a NAS in an automater script
    The shares work fine but when the other user logs on they can see the mounted shares but they are the generic blue folder icon with the red circle no access icon at the bottom of the icon.
    They do not have access to the "icon" share even though they have the same share mounted and have access to the share.
    When I remove the phantom "icon" share it removes the "real" mounted share from the other users account.
    What or can I do anything to stop the redundant nonaccessable shares from being mounted?
    Thank You

    One additional comment on this: I did change iTunes preferences so that the location of iTunes files is the shared folder. With that I'd expect each user to be pointed to the same iTunes folder, but that's not the behavior.

  • Auto-mount failing with segfault on FAT drives

    I've been running Arch on ThinkPads for years, just got an x240 and installed Arch on it. Everything seems to work fine except for external drives of any sort.
    I'm running Gnome 3.
    With my USB stick, every time I insert it, Nautilus detects it and when I attempt to view the drive it fails. Here's the dmesg output:
    [32426.659595] usb 2-1: new SuperSpeed USB device number 4 using xhci_hcd
    [32426.675126] usb-storage 2-1:1.0: USB Mass Storage device detected
    [32426.675173] scsi5 : usb-storage 2-1:1.0
    [32427.676716] scsi 5:0:0:0: Direct-Access Patriot Memory PMAP PQ: 0 ANSI: 6
    [32427.677167] sd 5:0:0:0: [sdb] 60566016 512-byte logical blocks: (31.0 GB/28.8 GiB)
    [32427.677442] sd 5:0:0:0: [sdb] Write Protect is off
    [32427.677458] sd 5:0:0:0: [sdb] Mode Sense: 45 00 00 00
    [32427.677775] sd 5:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [32427.831483] sdb: sdb1
    [32427.832493] sd 5:0:0:0: [sdb] Attached SCSI removable disk
    [32439.190500] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [32439.328724] usb 2-1: reset SuperSpeed USB device number 4 using xhci_hcd
    [32444.339799] usb 2-1: device descriptor read/8, error -110
    [32444.443060] usb 2-1: reset SuperSpeed USB device number 4 using xhci_hcd
    [32449.454646] usb 2-1: device descriptor read/8, error -110
    [32449.611683] sd 5:0:0:0: [sdb] Unhandled error code
    [32449.611686] sd 5:0:0:0: [sdb]
    [32449.611687] Result: hostbyte=0x07 driverbyte=0x00
    [32449.611688] sd 5:0:0:0: [sdb] CDB:
    [32449.611690] usb 2-1: USB disconnect, device number 4
    [32449.611689] cdb[0]=0x28: 28 00 00 00 0d 9b 00 00 0f 00
    [32449.611695] end_request: I/O error, dev sdb, sector 3483
    [32449.617844] sd 5:0:0:0: [sdb] Unhandled error code
    [32449.617846] sd 5:0:0:0: [sdb]
    [32449.617847] Result: hostbyte=0x01 driverbyte=0x00
    [32449.617848] sd 5:0:0:0: [sdb] CDB:
    [32449.617849] cdb[0]=0x28: 28 00 00 00 0d 9c 00 00 0e 00
    [32449.617852] end_request: I/O error, dev sdb, sector 3484
    [32449.617876] sd 5:0:0:0: [sdb] Unhandled error code
    [32449.617877] sd 5:0:0:0: [sdb]
    [32449.617878] Result: hostbyte=0x01 driverbyte=0x00
    [32449.617878] sd 5:0:0:0: [sdb] CDB:
    [32449.617879] cdb[0]=0x28: 28 00 00 00 0c ab 00 00 f0 00
    [32449.617882] end_request: I/O error, dev sdb, sector 3243
    [32449.617952] FAT-fs (sdb1): FAT read failed (blocknr 3211)
    [32449.618677] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff8801574ef380
    [32449.618680] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff8801574ef3c0
    [32449.621107] FAT-fs (sdb1): Directory bread(block 32768) failed
    [32449.621111] FAT-fs (sdb1): Directory bread(block 32769) failed
    [32449.621113] FAT-fs (sdb1): Directory bread(block 32770) failed
    [32449.621115] FAT-fs (sdb1): Directory bread(block 32771) failed
    [32449.621117] FAT-fs (sdb1): Directory bread(block 32772) failed
    [32449.621119] FAT-fs (sdb1): Directory bread(block 32773) failed
    [32449.621120] FAT-fs (sdb1): Directory bread(block 32774) failed
    [32449.621122] FAT-fs (sdb1): Directory bread(block 32775) failed
    [32449.621124] FAT-fs (sdb1): Directory bread(block 32776) failed
    [32449.621126] FAT-fs (sdb1): Directory bread(block 32777) failed
    [31813.104727] ------------[ cut here ]------------
    [31813.104734] WARNING: CPU: 3 PID: 7798 at fs/sysfs/group.c:214 sysfs_remove_group+0xc6/0xd0()
    [31813.104736] sysfs group ffffffff81895c40 not found for kobject 'target3:0:0'
    [31813.104737] Modules linked in: nls_cp437 vfat fat twofish_generic twofish_avx_x86_64 twofish_x86_64_3way twofish_x86_64 twofish_common serpent_avx2 serpent_avx_x86_64 serpent_sse2_x86_64 serpent_generic xts loop usb_storage usbhid hid fuse ctr ccm snd_hda_codec_hdmi joydev mousedev arc4 snd_hda_codec_realtek intel_rapl x86_pkg_temp_thermal intel_powerclamp coretemp kvm iTCO_wdt iTCO_vendor_support cdc_mbim microcode evdev cdc_ncm psmouse uvcvideo pcspkr serio_raw iwlmvm usbnet videobuf2_vmalloc mii videobuf2_memops mac80211 cdc_acm videobuf2_core cdc_wdm videodev media btusb iwlwifi bluetooth cfg80211 rtsx_pci_ms memstick wmi tpm_tis thinkpad_acpi i915 snd_hda_intel nvram tpm rfkill ac battery snd_hda_codec video intel_agp intel_gtt drm_kms_helper drm e1000e snd_hwdep snd_pcm snd_page_alloc thermal
    [31813.104776] snd_timer mei_me lpc_ich mei i2c_algo_bit snd button shpchp i2c_i801 ptp soundcore pps_core i2c_core processor ext4 crc16 mbcache jbd2 dm_crypt dm_mod sd_mod rtsx_pci_sdmmc mmc_core atkbd libps2 crct10dif_pclmul crct10dif_common crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 lrw gf128mul glue_helper ablk_helper cryptd ahci ehci_pci libahci ehci_hcd libata scsi_mod rtsx_pci xhci_hcd usbcore usb_common i8042 serio
    [31813.104801] CPU: 3 PID: 7798 Comm: umount Not tainted 3.13.6-1-ARCH #1
    [31813.104802] Hardware name: LENOVO 20AL009NMC/20AL009NMC, BIOS GIET66WW (2.16 ) 12/02/2013
    [31813.104804] 0000000000000009 ffff88013ecb5b40 ffffffff81513274 ffff88013ecb5b88
    [31813.104806] ffff88013ecb5b78 ffffffff81061a3d 0000000000000000 ffffffff81895c40
    [31813.104809] ffff8800c72a5c38 ffff8802114d4190 ffff8801728fb000 ffff88013ecb5bd8
    [31813.104812] Call Trace:
    [31813.104818] [<ffffffff81513274>] dump_stack+0x4d/0x6f
    [31813.104824] [<ffffffff81061a3d>] warn_slowpath_common+0x7d/0xa0
    [31813.104827] [<ffffffff81061aac>] warn_slowpath_fmt+0x4c/0x50
    [31813.104831] [<ffffffff8151843e>] ? mutex_unlock+0xe/0x10
    [31813.104834] [<ffffffff8121925e>] ? sysfs_get_dirent_ns+0x4e/0x70
    [31813.104837] [<ffffffff8121a3e6>] sysfs_remove_group+0xc6/0xd0
    [31813.104843] [<ffffffff813b7033>] dpm_sysfs_remove+0x43/0x50
    [31813.104846] [<ffffffff813aceb5>] device_del+0x45/0x1c0
    [31813.104857] [<ffffffffa00a52b7>] scsi_target_reap_usercontext+0x27/0x40 [scsi_mod]
    [31813.104862] [<ffffffff8107b887>] execute_in_process_context+0x67/0x70
    [31813.104870] [<ffffffffa00a65d4>] scsi_target_reap+0xc4/0xf0 [scsi_mod]
    [31813.104879] [<ffffffffa00a8558>] scsi_device_dev_release_usercontext+0x188/0x1c0 [scsi_mod]
    [31813.104882] [<ffffffff8107b887>] execute_in_process_context+0x67/0x70
    [31813.104890] [<ffffffffa00a83cc>] scsi_device_dev_release+0x1c/0x20 [scsi_mod]
    [31813.104894] [<ffffffff813ac3f2>] device_release+0x32/0xa0
    [31813.104899] [<ffffffff812b6b47>] kobject_cleanup+0x77/0x1b0
    [31813.104902] [<ffffffff812b69c8>] kobject_put+0x28/0x60
    [31813.104906] [<ffffffff813ac7f7>] put_device+0x17/0x20
    [31813.104913] [<ffffffffa009c5eb>] scsi_device_put+0x3b/0x50 [scsi_mod]
    [31813.104920] [<ffffffffa025e7e0>] scsi_disk_put+0x30/0x50 [sd_mod]
    [31813.104926] [<ffffffffa025f6a1>] sd_release+0x31/0x70 [sd_mod]
    [31813.104931] [<ffffffff811dc75c>] __blkdev_put+0x17c/0x1b0
    [31813.104936] [<ffffffff811dc6f7>] __blkdev_put+0x117/0x1b0
    [31813.104940] [<ffffffff811dd0be>] blkdev_put+0x4e/0x140
    [31813.104944] [<ffffffff811a5f64>] kill_block_super+0x44/0x70
    [31813.104947] [<ffffffff811a622d>] deactivate_locked_super+0x3d/0x60
    [31813.104950] [<ffffffff811a67e6>] deactivate_super+0x46/0x60
    [31813.104954] [<ffffffff811c24d5>] mntput_no_expire+0xe5/0x170
    [31813.104958] [<ffffffff811c3730>] SyS_umount+0x90/0x3c0
    [31813.104962] [<ffffffff8151d8be>] ? do_page_fault+0xe/0x10
    [31813.104966] [<ffffffff815216ad>] system_call_fastpath+0x1a/0x1f
    [31813.104968] ---[ end trace 9c2068df074620da ]---
    I never had any trouble this this before on my previous laptop (Lenovo ThinkPad E330).
    Likewise, when I use TrueCrypt to mount a volume, although I don't get the stack trace, It does never shows up in Nautilus, and dmesg has the following to say about it:
    [31234.534922] loop: module loaded
    [31234.610930] FAT-fs (dm-5): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    I can view the drive, however, so it's not as bad as the USB stick, but still not the correct behavior. There is no automount and Nautilus does not show it in the device list.
    I've tried formatting the USB stick a few different times (it needs to be FAT for compatibility) and always Arch ends up corrupting the drive and making it useless.
    Anyone have any idea as to what's going on here?
    Thanks
    -Nick
    Last edited by silverbucket (2014-03-16 23:59:56)

    Trying again, to manually mount the USB stick, when I insert it, dmesg shows:
    [22021.214586] usb-storage 2-1:1.0: USB Mass Storage device detected
    [22021.214633] scsi5 : usb-storage 2-1:1.0
    [22022.215965] scsi 5:0:0:0: Direct-Access Patriot Memory PMAP PQ: 0 ANSI: 6
    [22022.216251] sd 5:0:0:0: Attached scsi generic sg1 type 0
    [22022.216440] sd 5:0:0:0: [sdb] 60566016 512-byte logical blocks: (31.0 GB/28.8 GiB)
    [22022.216733] sd 5:0:0:0: [sdb] Write Protect is off
    [22022.216736] sd 5:0:0:0: [sdb] Mode Sense: 45 00 00 00
    [22022.217088] sd 5:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [22022.373041] sdb: sdb1
    [22022.374051] sd 5:0:0:0: [sdb] Attached SCSI removable disk
    I then try to mount it with:
    # mount /dev/sdb1 /mnt/usbstick
    And although the command appears to be successful, I get the following in dmesg:
    [22182.804311] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [22186.212884] usb 2-1: reset SuperSpeed USB device number 4 using xhci_hcd
    [22191.224027] usb 2-1: device descriptor read/8, error -110
    [22191.327268] usb 2-1: reset SuperSpeed USB device number 4 using xhci_hcd
    [22196.338854] usb 2-1: device descriptor read/8, error -110
    [22196.495462] sd 5:0:0:0: [sdb] Unhandled error code
    [22196.495465] sd 5:0:0:0: [sdb]
    [22196.495466] Result: hostbyte=0x07 driverbyte=0x00
    [22196.495468] sd 5:0:0:0: [sdb] CDB:
    [22196.495470] usb 2-1: USB disconnect, device number 4
    [22196.495468] cdb[0]=0x28: 28 00 00 00 0c ad 00 00 f0 00
    [22196.495477] end_request: I/O error, dev sdb, sector 3245
    [22196.502037] sd 5:0:0:0: [sdb] Unhandled error code
    [22196.502041] sd 5:0:0:0: [sdb]
    [22196.502043] Result: hostbyte=0x01 driverbyte=0x00
    [22196.502045] sd 5:0:0:0: [sdb] CDB:
    [22196.502046] cdb[0]=0x28: 28 00 00 00 0c ae 00 00 ef 00
    [22196.502056] end_request: I/O error, dev sdb, sector 3246
    [22196.502138] FAT-fs (sdb1): FAT read failed (blocknr 3213)
    [22196.502139] sd 5:0:0:0: [sdb] Unhandled error code
    [22196.502141] sd 5:0:0:0: [sdb]
    [22196.502142] Result: hostbyte=0x01 driverbyte=0x00
    [22196.502143] sd 5:0:0:0: [sdb] CDB:
    [22196.502144] cdb[0]=0x28: 28 00 00 00 0d 9d 00 00 0d 00
    [22196.502152] end_request: I/O error, dev sdb, sector 3485
    [22196.504146] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff8800785c7980
    [22196.504149] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff8800785c79c0
    A `df` does not show the mounted location, neither does Nautilus, however `mount` does.
    /dev/sdb1 on /mnt/ZELENACEK type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
    When I attempt to unmount it:
    # umount /dev/sdb1
    I get the following dmesg output:
    [22410.233289] FAT-fs (sdb1): FAT read failed (blocknr 3210)
    [22415.819947] FAT-fs (sdb1): Directory bread(block 32768) failed
    [22415.819951] FAT-fs (sdb1): Directory bread(block 32769) failed
    [22415.819953] FAT-fs (sdb1): Directory bread(block 32770) failed
    [22415.819955] FAT-fs (sdb1): Directory bread(block 32771) failed
    [22415.819956] FAT-fs (sdb1): Directory bread(block 32772) failed
    [22415.819958] FAT-fs (sdb1): Directory bread(block 32773) failed
    [22415.819960] FAT-fs (sdb1): Directory bread(block 32774) failed
    [22415.819961] FAT-fs (sdb1): Directory bread(block 32775) failed
    [22415.819963] FAT-fs (sdb1): Directory bread(block 32776) failed
    [22415.819964] FAT-fs (sdb1): Directory bread(block 32777) failed
    [22556.688959] ------------[ cut here ]------------
    [22556.688967] WARNING: CPU: 2 PID: 27239 at fs/sysfs/group.c:214 sysfs_remove_group+0xc6/0xd0()
    [22556.688968] sysfs group ffffffff81895c40 not found for kobject 'target5:0:0'
    [22556.688970] Modules linked in: sg nls_cp437 vfat fat usb_storage fuse ctr ccm snd_hda_codec_hdmi joydev mousedev arc4 intel_rapl x86_pkg_temp_thermal intel_powerclamp coretemp kvm iTCO_wdt iTCO_vendor_support microcode iwlmvm evdev cdc_mbim pcspkr uvcvideo psmouse serio_raw mac80211 videobuf2_vmalloc videobuf2_memops btusb videobuf2_core videodev cdc_ncm usbnet bluetooth mii cdc_acm cdc_wdm media iwlwifi rtsx_pci_ms cfg80211 memstick thermal snd_hda_codec_realtek wmi e1000e i915 ac thinkpad_acpi nvram rfkill battery tpm_tis snd_hda_intel tpm snd_hda_codec intel_agp intel_gtt snd_hwdep drm_kms_helper mei_me snd_pcm i2c_i801 ptp drm snd_page_alloc video snd_timer mei i2c_algo_bit snd button shpchp soundcore pps_core i2c_core lpc_ich processor ext4 crc16 mbcache jbd2 dm_crypt dm_mod sd_mod rtsx_pci_sdmmc
    [22556.689016] mmc_core atkbd libps2 crct10dif_pclmul crct10dif_common crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 lrw gf128mul glue_helper ablk_helper cryptd ahci libahci libata ehci_pci ehci_hcd xhci_hcd rtsx_pci scsi_mod usbcore usb_common i8042 serio
    [22556.689032] CPU: 2 PID: 27239 Comm: umount Tainted: G W 3.13.6-1-ARCH #1
    [22556.689034] Hardware name: LENOVO 20AL009NMC/20AL009NMC, BIOS GIET66WW (2.16 ) 12/02/2013
    [22556.689035] 0000000000000009 ffff880066217b40 ffffffff81513274 ffff880066217b88
    [22556.689038] ffff880066217b78 ffffffff81061a3d 0000000000000000 ffffffff81895c40
    [22556.689040] ffff88020af40438 ffff880089e30190 ffff880211ce7800 ffff880066217bd8
    [22556.689043] Call Trace:
    [22556.689048] [<ffffffff81513274>] dump_stack+0x4d/0x6f
    [22556.689052] [<ffffffff81061a3d>] warn_slowpath_common+0x7d/0xa0
    [22556.689055] [<ffffffff81061aac>] warn_slowpath_fmt+0x4c/0x50
    [22556.689058] [<ffffffff8151843e>] ? mutex_unlock+0xe/0x10
    [22556.689060] [<ffffffff8121925e>] ? sysfs_get_dirent_ns+0x4e/0x70
    [22556.689063] [<ffffffff8121a3e6>] sysfs_remove_group+0xc6/0xd0
    [22556.689067] [<ffffffff813b7033>] dpm_sysfs_remove+0x43/0x50
    [22556.689070] [<ffffffff813aceb5>] device_del+0x45/0x1c0
    [22556.689079] [<ffffffffa00c02b7>] scsi_target_reap_usercontext+0x27/0x40 [scsi_mod]
    [22556.689082] [<ffffffff8107b887>] execute_in_process_context+0x67/0x70
    [22556.689089] [<ffffffffa00c15d4>] scsi_target_reap+0xc4/0xf0 [scsi_mod]
    [22556.689096] [<ffffffffa00c3558>] scsi_device_dev_release_usercontext+0x188/0x1c0 [scsi_mod]
    [22556.689098] [<ffffffff8107b887>] execute_in_process_context+0x67/0x70
    [22556.689105] [<ffffffffa00c33cc>] scsi_device_dev_release+0x1c/0x20 [scsi_mod]
    [22556.689107] [<ffffffff813ac3f2>] device_release+0x32/0xa0
    [22556.689111] [<ffffffff812b6b47>] kobject_cleanup+0x77/0x1b0
    [22556.689114] [<ffffffff812b69c8>] kobject_put+0x28/0x60
    [22556.689117] [<ffffffff813ac7f7>] put_device+0x17/0x20
    [22556.689123] [<ffffffffa00b75eb>] scsi_device_put+0x3b/0x50 [scsi_mod]
    [22556.689128] [<ffffffffa029a7e0>] scsi_disk_put+0x30/0x50 [sd_mod]
    [22556.689133] [<ffffffffa029b6a1>] sd_release+0x31/0x70 [sd_mod]
    [22556.689136] [<ffffffff811dc75c>] __blkdev_put+0x17c/0x1b0
    [22556.689140] [<ffffffff811dc6f7>] __blkdev_put+0x117/0x1b0
    [22556.689143] [<ffffffff811dd0be>] blkdev_put+0x4e/0x140
    [22556.689145] [<ffffffff811a5f64>] kill_block_super+0x44/0x70
    [22556.689148] [<ffffffff811a622d>] deactivate_locked_super+0x3d/0x60
    [22556.689150] [<ffffffff811a67e6>] deactivate_super+0x46/0x60
    [22556.689153] [<ffffffff811c24d5>] mntput_no_expire+0xe5/0x170
    [22556.689156] [<ffffffff811c3730>] SyS_umount+0x90/0x3c0
    [22556.689158] [<ffffffff815216ad>] system_call_fastpath+0x1a/0x1f
    [22556.689160] ---[ end trace 615f2c14f65f6abb ]---
    If I take the USB stick out and plug it in to my other Arch Linux laptop, the drive mounts fine (and complains about fsck only because of the problems incurred on my main laptop). I know the USB stick is good, it's new and I've used it many times between my other machines. I'm assuming the hardware is good as it's a new laptop, I installed Arch Linux from this same USB stick without an issue. I've also used other types of USB devices, like wireless headphones, without issues.
    It must be some system configuration error. Perhaps something with the kernel or system libraries that are / are not installed? lib32 issues? (it's an x86_64 install)? I don't know, I'm grasping at straws. I have read through the USB_Storage_Devices and Udisks Arch Wiki pages without any luck.
    Any help is greatly appreciated as I currently can't get any large amounts data on or off this laptop easily.
    Last edited by silverbucket (2014-03-16 23:42:56)

Maybe you are looking for

  • How do i change the master password on lion

    hi, i know the master password on my macbook pro but i would like to change it and since i upgraded to lion i cant a optionto change it any where. Macbook Pro osx 10.7 FileVault Is ON

  • Migration assistant - PC doesn't receive Passcode

    I am trying to use the Migration Assistant to transfer data from my PC (XP SP3) to my Macbook Pro.  It hangs up when the Mac tries to transmit a passcode to the PC.  It never comes through.  I've tried using my wireless home network, and I've tried c

  • Transporting active version of datasource from DEV to PRD

    Hi, When I transport a 3.x datasource from DEV to PRD, the version I am getting in PRD is 'modified'. In DEV we have both modified and active versions and there's no difference between them. When I try to activate the modified version, it says that I

  • Oracle Retail standard file format for batches - specification needed

    Is there any accurate specification of Oracle Retail standard file format for batches, such as EdiUpcat.pc (possibly with examples)? I am trying to produce a file with supplier cost changes for Cost Change Batch (ediupcat.pc). In "Operations Guide -

  • Can't attach files to emails

    I recently upgraded to a G5 Dual 2GHz system running OS X Tiger. I am having trouble attaching files of any kind to email. I have email accounts with Charter High Speed Cable, and a SquirrelMail account with APlus.net (who hosts my Website). On my ol