Can't use built in volume manager in PCMan File Manager

Trying to use the built in volume manager in PCMan FM causes 2 error messages to appear.  They are unreadable (the title bar says "Unable t" that's it).  An error like the one that follows appears in the the console (or whatever Eterm is) for each:
(pcmanfm:3084): Gtk-WARNING **: Failed to set text from markup due to error parsing markup: Error on line 1 char 57: '-' is not a valid character following a '<' character; it may not begin an element name
After those a third message box appears and says: "Directory doesn't exist".  That box is not accompanied by any error text on the console.
I assume the first to say something like "Unable to mount" but I don't know WHY.
The problem does NOT occur if I mount it as root (using sudo) and access it that way.  This however then requires any further access to be made as root if anything useful is to be done with the drive (copying files, writing to it, etc.)
I'm running Fluxbox as my WM, if that matters.
Thanks in advance!

Hmm...the wiki refers to files I don't have.  /etc/hal/fdi/policy and /etc/hal/fdi/information are both empty directories (even when viewed as root).  Any thoughts?
I feel like an idiot now.  I should have guessed i needed to put those files in.
Last edited by guitarMan666 (2009-04-22 03:22:36)

Similar Messages

  • Can I use Microsoft SQL Server Management Studio version 11.0 to write SQL queries for "SQL Server Compact 4.0 Local Database"

    Hi, Can I use Microsoft SQL Server Management Studio version 11.0 to write SQL queries for "SQL Server Compact 4.0 Local Database" ?
    When I use Connect Object Explorer, the "Connect to Server" dialog box which pops up has only 4 selections in the Server Type Drop Down List. They are Database Engine, Analysis Services, Reporting Services & Integration Services. I have read
    somewhere that there should be a compact database option. but I do not see it.
    What I would like to do is use free form SQL Queries against the tables in "SQL Server Compact 4.0 Local Database" .
    Once I have validated these queries, then I will use them in my Visual Studio 2012 C#, ASP.NET application. I created the Local Database using Visual Studio 2012 for use by my application.
    Thank you for your help..
    diana4

    Hello,
    With SSMS 2005 we have had the Option to work with SQL CE database files, but not with higher Version of SSMS.
    You can use the free SQL CE Toolbax instead; see
    http://sqlcetoolbox.codeplex.com/
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Can I use built-in iSight camera with other apps?

    Can I use built-in iSight camera with other apps?
    How?
    doesn't work in imovie or image capture

    Hi Judson,
    THe built in iSight will actually work with iMovie if you have the version of iMovie which comes with iLife 6. (see http://docs.info.apple.com/article.html?artnum=61929 for a mention)
    There is a slightly clumsy "workaround" available for use with earlier versions of iMovie, but you need a dv cam to use it - see http://www.macosxhints.com/article.php?story=20051217210335199
    I gather that "EvoCam" - http://www.evological.com/evocam.html - will also work directly with the built in iSight.
    So too, should recent versions of QuicktimePro.
    As for other apps, tell us what you wish to do with it. We may be able to come up with some suggestions.
    Cheers
    Rod

  • How can I use time machine to recover my iWeb09 files?

    I read that iWeb stores one's website pages in the domain folder which can be located at ~/Library/Application Support/iWeb. Can I use time machine to recover my iWeb09 files? If so, how? -I tried. I entered my Time Machine back up, and went back in time and brought the domain file forward but it opened only my current site pages, not the ones I am trying to recover. And it says the Domain file was last modified in October 2007 which is crazy because I've been using iWeb a lot and have published many pages. It seems like the uncorrupted pages, which I am trying to recover, existed somewhere on my computer at one point in time and space, less than a week ago, becuse I just published my site to a new hosting service since Apple will soon stop web hosting. So why can I not find them using time machine?

    I continued searching and read another person's advise to down load an app named "Find File," then search for .sites. She said spotlight doesn't always find all files. So I did and sure enough, when I searched for .sites I found another Domain package, which I have no idea how it was created but which, it ends up, was the one actually being used by iWeb. So I went to that package then did the time machine and went back to before my web pages became corrupted. I had to delete corrupt blog pages out of my website menu to get iWeb to upload the other page changes even to a local folder.
    So I went to that newly found Domain, went back in time, then brought that forward and as you pointed out the domain package had the parts of the pages, the files and jpegs, but not the structure/layout of the pages. So, I guess I gave up on finding the old pages.
    Those pages still exist on the Apple hosting server but iWeb doesn't not reverse publication. Cyberduck would bring back the files and bits and peices but again not the pages as a total entity. I'm preparing for the end of Apple website hosting (next month?) and am republishing my old site. I decided to use a new domain name. So my entire original site is still totally intact on the web under the original domain name, on my mobile me site, I guess it will be there till sometime in June?
    My problems started when I tried to publish my website to the new server. It just would not publish the whole website in one session. So I decided to do it a few pages at a time. Some pages went up, but as I added more, for some unknown reason the, blog pages, (about 70 subpages),  which had aleardy uploaded just fine to the new server, became corrupt and locked up iWeb. Of course once I deleted the corrupt pages I didn't want to continue publishing the site to the host until I found and reinserted uncorrupted pages, knowing publishing changes would delete the already published pages.
    At first I thought it was the hosting server's fault, but when I discovered that it wouldn't publish even to a local fold I was able to locate the cause within iWeb, deleted those pages then tested by publishing to a local folder. iWeb worked locally, so I knew I had found the problem pages. Well this is way more than you wanted to know. Thanks for your advise but I'll just start the blogging pages over.

  • Can i use a environment variable inside a *.sql file?

    Hello,
    I want to create a external table.
    So i am using the command
    create or replace directory abc as 'C:\folder'.... inside a sql file.
    Now i want the path "C:\folder" to be dynamic as i am using this path in many other places also inside the sql file.So i thought to create a environment variable and put this value there.I tried using as %PATH% but it gives error..... where %PATH%=C:\folder.
    Can i use a environment variable inside a *.sql file?
    But how to do that or is there any other way.
    Thanks
    Swapna
    Edited by: user11018268 on Feb 19, 2010 1:03 AM

    user11018268 wrote:
    Actually what i want is the path "C:\folder" is not fixed it can be anything which i may not know the user may decide it later. Not supported. A directory object refers to a specific physical location (directory/folder) on a file system. Not a path.
    You can work around it by (creating and) using a function (running under a super user schema with authid definer privs). The caller (e.g. schema scott ) calls it with a physical path. E.g. GetDirectoryObject( 'C:\folder\2010\feb\week4' ).
    This function determines if there is an existing directory object for the path. If not, it uses a wildcard search to determine if there are any directory objects for parents in the path (e.g. for C:\folder\2010\feb or C:\folder\2010 or C:\folder ).
    If it finds a directory object, it interrogates the data dictionary to determine if the caller, schema scott for example, has read/write access on that directory object. If it has, it creates a new directory object and grants the caller read/write access to it. The function then returns the name of the directory object to the caller.
    The caller thus do not deal directly with directory objects. The function returns the object name given a physical path as input. Also, only a single base directory needs to be created (e.g. for C:\folder ) and access granted to the schema on it. Any sub-directory in that base directory can now be dynamically accessed by the schema.

  • You can't use Contribute to edit this type of file

    I've updated a few pages from a website, so they're just
    variations of pages that used to work with Contribute. Now I'm
    getting a message--on some of them--that "you can't used Contribute
    to edit this type of file." These are html files with the extension
    htm. They contain tables. They are based on templates. They don't
    seem to have any other distinguishing properties. Exactly what kind
    of files don't work? What might I be doing wrong? I teach this at a
    college & my students are as puzzled as I am.

    Ancient thread, but if anyone else is googling this phrase I thought I might respond with a possible answer.  I encountered the same error but could not find anything wrong with the page in question.  Turned out the page getting the error message was fine! The issue was actually with a simple typo on the page that linked to that page--it was missing the extension (e.g., linking to "page2" instead of "page2.php".  The web server (and Contribute's browser) were pulling up the page even though the extension was missing but Contribute didn't know what kind of file it was so it refused to allow editing.

  • Can I use Photoshop Elements 13 to create HTML file?

    Can I use Photoshop Elements 13 to create HTML file?

    See Barbara's answer in your duplicated post: How can I save a Photoshop Elements 12 file as HTML?
    No difference with PSE13.

  • Are there any libraries can be used to generate Type 1 font postscript file

    I am trying to create a Type 1 font postscript file. But I found it is hard to find the library to generate the Type 1 font postscript file. I just found a library named iText which can create the Type 1 font PDF file.
    Are there any libraries can be used to generate Type 1 font postscript file?
    Thanks!

    I don't see much benefit with the current ODI adaptors for planning if it is an EPMA type planning application.
    They have been specifically designed to work with classic planning applications.
    It certainly is possible to load into EPMA interface tables using ODI though there are no direct adaptors and it takes quite a bit of effect to get them into the correct format.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can I use my Mac to make a backup file of a MS DOS file

    Can I use my Mac to make a backup file of a MS DOS file?

    Have you verified that the mill is using FAT12?
    Do I understand correctly that the mill boots from the floppy - it has no other storage?
    If that is the case, then the new disk needs to be in the correct format and set up as a boot disk, which will not happen automatically, and I'm not sure if you can do it with OS X. The instructions on this page should help.
    If it is something you need to do a lot of, and have no access to an MS-DOS computer, you could consider installing the Parallels virtual machine software on your Mac, and setting up a virtual MS-DOS system.

  • Can I use the Camera Connection Kit to transfer files from my Mob/PS3/iPod?

    Can I use the Camera Connection Kit to transfer files from my mobile/iPod or Playstation 3 to iPad using a USB cable?
    I have an *iPod nano 16GB 5g* & my mobile is a *Samsung G800* and *Playstation 3 80GB*.
    _Thanks for reading_

    The CCK will find/ask to download (if iPad supported formate )picture and video files if the device is formated in FAT 16 or 32 and the supported files are placed in a "DCIM" folder in the root directory. I have transfered such files from SD card and USB drives. However, not USB drive work. I had an old 2GB (very large) and when i connected it it said it drew too much power.
    I also downloaded pictures and video files from a compact flash card and smart media card via a SanDisk USB card reader.
    AppleIpod60GB wrote:
    No. The CCK is only designed to allow you to import photos from a digital camera via USB or an SD card. You cannot import any data via this kit and no other files will work as it's designed for only the functionality it does. The kit looks for a folder with the label "DSC####### the same structure as most digital cameras, and will only function with JPG files.
    Message was edited by: lllaass to add CF and SM info

  • HT4847 Can i use icloud as a server and share files with others as it was possible before?!

    Can i use icloud as a server and share files with others as it was possible before?!

    iCloud does not provide general file storage and sharing. You will need to find a third-party alternative - this page examines some options:
    http://rfwilmut.net/missing3

  • Can't Use Built-in Ethernet-HELP!!!

    I am trying to connect a slot loading 350 mhz imac to the internet through the built-in ethernet for a friend that needs it, but the network status pane (OSX.3 Panther) keeps saying the ethernet cable is not plugged in. I've tried several different Cat 5 ethernet cables and it still says this, so we can't connect to the isp (with cable modem). It also says the internal modem is not working, I get the red light next to it and the built-in ethernet buttons in Network status. I've tried direct connections to two different external cable modems, and three different ethernet cables, I think the problem is a software issue that needs correcting. I just got through with a clean install of OS 9.1 and OSX.3, but the network still does not recognize the ethernet cable as being plugged in.
    Other things I've tried: zapping the PRAM, and resetting the nv-ram, but to no avail (as suggested by other posts I've come across). I ran Tech Tool 4 on it however,and the Network test PASSED.
    Isn't there something I can do in Preferences or terminal so the network can see the built-in ethernet? I'd really appreciate any ideas or suggestions!
    Thanks, Chuck

    You can easily restore without updating to the latest OS - simply don't purchase it. You can restore from iTunes - on the Summary page, just click on Restore.
    As to your WiFi problem (and that is what you most likely experiencing) tell us more about the network you are using, the hardware, who the heck your ISP is and so on. It may be as simple as whoever owns the network is blocking access to Apple sites.
    I am assuming by built in sites, you are referring to the App Store, iTunes, etc. correct?
    If your network indicates that you are logged in, tap Settings > WiFi. Does your network have a check mark next to it? If it does, tap the blue arrow (>) next to the name. Does your IP address start with 169.x or 192.x?

  • Can I use a project/issue management software with LabVIEW?

    There are project/issue management softwares.
    I only know Redmine.
    Can I use LabVIEW with such softwares?

    I am not aware, that you can hook LabVIEW to tools like bug tracing databases in a native way.
    What you can do is performing that link in a context of requirements management. Use NI Requirements Gateway for this functionality. 
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Can I use Built-in SQL Server in Visual Studio 2010 ?

    Hi Friends, I am Atif.
    If I will upload my project to my Server Domain and I want to use Built-in Visual Studio 2010 Sql Server Expreess Database then it will work. If yes then Please suggest me How..??
    Actually I don't want to install SQL Server Database Seperately.
    Tell me How can i achieve this.
    Thanks and Regards.
    Atif.

    Hi Atif,
    Besides other post, to use SQL Server Express for development work, you just need to specify the data source (SQL server's name) and authentication details in a connection string. For more information about SQL Server Express connection string, you can review
    the examples in the following articles.
    Database Connectionstrings
    SQL Server Connection Strings for ASP.NET Web Applications
    Also please note that SQL Server Express edition has some limitations, for example: only one CPU can be used by the express edition, the maximum size of a database is 4 GB (10GB in SQL Server 2008 R2 Express and higher versions of SQL Server Express),
    it can only use up to 1GB of RAM.
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Can I use Oracle BPEL process manager with other AS and DB

    Can we user oracle bpel process manager with jboss application server and postgresql database.. is it possible..
    and what will be the price.. per licencse when i go to just purchase Oracle BPEL process manager

    MAke sure you have not set ANY environment variable related to Oracle / BEA / Java / LD_library path. Use the following script to unset / set the initial settings:
    #!/bin/sh
    unset ORACLE_BASE ORACLE_HOME ORACLE_SID ORACLE_TERM
    unset LD_LIBRARY_PATH LD_LIBRARY_PATH_64
    unset CLASSPATH JAVA_HOME
    export PATH=.:/usr/sbin:/usr/bin:/usr/local/bin:/opt/VRTS/bin
    export BEA_HOME=/appl/oracle/products/9.2/weblogic
    Marc
    http://orasoa.blogspot.com

Maybe you are looking for