Thunar mounting/unmounting NTFS drive in the side pane.

Hey ,
Could someone help me to set up Thunar to be able to mount/unmount & browse my NFTS drive "/dev/sda1" "/mnt/HDD" in the side pane?
Like this:
I already have a link to it in the side pane:
But...
I'd prefer to set it up properly, I've searched google and the bbs but couldn't find any info's on this.
Thanks

terminal:
*diskutil unmount /Volumes/"diskname"*
apple script:
tell application "Finder"
eject disk "diskname"
end tell
Keep the quotation marks in the above.
Mounting a disk is trickier because you need to know the mountpoint.
First, when the disk is mounted enter the following terminal command:
df
this will list all mounted devices.
locate the line with your disk and read off the first column. It should look something like
/dev/disk2s2
Unmount the disk. To mount it run
*diskutil mount /dev/disk2s2*

Similar Messages

  • Mount USB NTFS drive at boot

    I'm trying to get my NTFS formatted USB disk to mount at boot. I'm using FSTAB, but it fails with an error when it tries to mount- only problem is, arch boots so quickly I can't see it. It works fine mounting manually afterwards (using mount -a or explicitly telling it to). It also works fine within XFCE4, using thunar/volman.
    I suspect the probem is that the drive hasn't been properly initalised when it's being booted.
    The best solution, would be to have some kind of process that doesn't just mount drives when they're plugged in, like happens now, but that also just mounts all drives it finds that aren't already mounted. Is there anything that does this?
    The second best solution would be to make arch run a mount command at the very end of boot- possibly and addendum to on of the rc files? I don't really want to do this, since it just seems a bit messy.
    Cheers for any help!

    Looks like ntfs module doesn't load immediately on the boot, just a little bit later so system cannot mount ntfs drive in the boot time. I see simple solution. Just add mount string into /etc/rc.local. rc.local starts at the end of boot process so usb device initialized and ntsf module loaded:
    mount /mnt/Terra
    or
    mount -o remount /mnt/Terra
    Last edited by knedlyk (2009-09-29 20:15:37)

  • I am unable to mount my NTFS partition after the last update

    I usually mounted my NTFS partition with the "gnome-disk" utility. It works no longer, only if I start it with "sudo". But in this case the mount point will be in a directory called "root" and this cause several problems, eg.: old hardcoded paths stop working in scripts. What can I do to make the gnome-disk utility work as an ordinary user.

    Thx, maybe I could use the fstab to mount the partition, am I right? But I don't know how to do it properly, because when I tried it in the past native hungarian characters iny the file and directory names always caused problems. If I somehow could capture the command sequence which the gnome-disk utility passes to the kernel / bash, would be helpful.

  • Automatically mount an ftp drive on the finder at startup?

    Is there any way to automatically mount an ftp drive on the finder at startup?  I would like to use this to a centralized and controlled way for company staff to access and download files while outside the company.

    thanks for the suggestion.  Not sure what you mean by network volume?
    Most of the time I access the ftp using Transmit.  It will mount the disk to the finder, however only for the duration that the computer is running.  Likewise the ftp disk can be dragged to the login items, however will not open or connect following a restart.
    I have tried Automator, set up a small app in the startup items, and viola, it works like a charm.  Transmit opens automatically, mounts the ftp disk and then transmit shuts down.  Great.
    Now is there any way that this can be set up on a LION server, so that the ftp mounts, and then can be shared for access to clients on the company's local network?  Staff could then upload files that they would like to have available on mobile devices.

  • Mounting network drives in the left pane of the finder...

    in tiger, i was able to mount a network drive and have it show up in the left pane of the finder. now, when i connect to a network drive (clicking "go", "connect to server", and typing the IP address). it opens up a new finder window with the contents of the network drive, however, it doesn't show up in the finder pane...
    also, the "network" icon in the left pane is gone. is there a way to bring this back?

    Does this work for you?! I can't get this to appear, least i have the icon on the desktop now but having it in the finder is what I really want,
    Some very good features in Leopard but they really do seem to have messed around with things unnecessarily, custom firewall changes, network mounts appearing etc etc

  • Mounting an ntfs drive

    i have windows xp installed on the same drive i have solaris installed on and i was wondering how to mount the winxp ntfs partition in solaris. there are a lot of files there id like to be able to use while im in solaris.
    thanks.

    Interesting. I'll have to try that. I tried the external USB formatted as FAT32 and it would work with Windows Backup because of the 4GB file size limit. I tried that with the drive plugged into the PC. I did not try it through the Time Capsule. I'll give that a go and see what happens.
    I'll try the HFS+ format. I don't like FAT32 because of the fixed File Allocation Table size. When files get fragmented, and they always do, FAT can drop file clusters and the data is gone. NTFS doesn't have that problem and I understand that HFS+ doesn't either.
    Now is the time to fool with this stuff before I get too much data out there to shuffle it around. My internal disks are filling rapidly so it's time to get hot. Thanks!

  • [SOLVED] Bash scripts to mount & unmount optical drive in Worker?

    I'm running XFCE on Arch with the HAL daemon being called in /etc/rc.conf.
    I can access media on my optical drive (DVD's or CD's) through the desktop icon that appears after HAL has recognised the drive, VLC automatically does its thing as does NeroLinux.
    The reason I'm posting is that I found a great DOpus clone yesterday called Worker - http://www.boomerangsworld.de/cms/worker/index?lang=en, which I am in the process of configuring.
    A problem I have is being able to access the optical drive via Worker.
    The way it is on my system, with HAL handling it, the first line (see below) appears after HAL mounts the media, which basically makes the two lines below it useless:
    /media/<title of disk>
    /media/cd
    /media/dvd
    I have tried configuring Worker to use /media/dvd (or cd), to access the optical media, these don't work for the reason stated above, & /dev/sd0 doesn't work either.
    So, do I have to turn off HAL, uncomment the lines in fstab & use mount?
    A little bash script, that would do the job for me would be great, as Worker will accept a script or a command string.
    I am a bash baby, so if someone can see a solution please post it?
    All input welcome.
    Thanks.
    Last edited by handy (2008-11-19 04:11:02)

    Zariel wrote:
    i guess something like this?
    %optical ALL=(ALL) NOPASSWD: ALL
    I found the clues for this in the sudoers manual:
    handy   ALL = NOPASSWD: /sbin/umount /CDROM,\
                    /sbin/mount -o nosuid\,nodev /dev/cd0a /CDROM
    Which works in so far as now mounting no longer needs the password.
    Which leaves me with the problem of trying to understand how to get Worker to mount the optical drive on command.
    If I enter the bash command in the Terminal as follows:
    mount /mnt/dvd
    the media is mounted, after which I can push the button in Worker, which I have configured with:
    /mnt/dvd
    & the root list of the optical media is displayed in the active panel of Worker.
    I just haven't been able to get Worker to use "mount /mnt/dvd" yet, there will be a way, I wonder how long it will take me to find it? lol
    Last edited by handy (2008-11-19 06:48:09)

  • [KDE] Force ntfs drives to be case insensitive. How?

    Hi to all,
    I use KDE and I mount usb ntfs drives with the applet (no fstab configs).
    I would like to configure KDE and ntfs-3g to mount ntfs drives using the mount option "windows_names" to force linux to consider that filesystem as case insensitive (as is the default under Windows XP).
    Is there any config file I can use to set such an option?
    Thank you,
    Xwang
    PS I don't know if it is the correct forum to post such a question. In case it isn't, can some moderator move the discussion to the correct forum, please?

    Short Answer: No.
    I did some digging and it looks like this is not possible to set in a config file.
    KDE uses udisks "under the hood" to mount filesystems. In most cases, KDE just asks udisks to use its default settings. However, sometimes KDE will pass along extra mount options. For example, KDE forces udisks to use the flush option on vfat volumes as a result of this bug report (https://bugs.kde.org/show_bug.cgi?id=273792). This is all done in the source code (solid/solid/backends/udisks2/udisksstorageaccess.cpp).
    UDisks has a bunch of default options, but they are also set in the source code (http://cgit.freedesktop.org/udisks/tree … lesystem.c). You could recompile with those defaults changed if you wanted to.
    The KDE Solid backend for hardware has some plain text rules files in /usr/share/apps/solid/actions where you might be able to intercept KDE and insert your own program. Probably it is not worth the trouble.

  • Problems mounting ntfs drives

    hidar, all.  new arch user says hi.
    i'm attempting to mount an ntfs drive at /dev/sda1 to /media/Data
    i'm using ntfs-3g, and wrote an entry in fstab for the drive
    however, i can't launch fuse to run ntfs-3g
    when i run modprobe fuse i get the error
    could not load /lib/modules/2.6.33-ARCH/modules.dep:  no such file.
    now the problem here is that i'm running 2.6.34, so
    /lib/modules/2.6.34-ARCH/modules.dep should be the place modprobe is looking for the file, but it isn't.
    how can i fix this?

    oh, man, gg.  i'm a noob.
    solution here.  it involves restarting.
    http://bbs.archlinux.org/viewtopic.php?id=3314

  • Can't mount my NTFS ****

    Knowing the fact that my new macbookpro can't write on NTFS hdd, I went to install NTFS Paragon 6.5 so that i can write on NTFS. (This version worked for a friend of mine)
    But who knows after installing it, i realised my NTFS hdd now can't even be mounted. I then tried to uninstall this NTFS 6.5 but it says it is not installed, when the NTFS Paragon is still in System Preferences. I tried to uninstall/reinstall/delete/restart Paragon NTFS 8.0 and see if it fixes, and I found out that it still fail to mount my <edited by host> NTFS hdd (both my external NTFS hdd and bootcamped NTFS windows 7 hdd).
    I used disk utility to fix but it just won't mount. It said "updating boot support partitions for the volume as required" when i repair it. I even format my drive with zero out data and reinstall my Mac OS X 10.6.7.
    After all these steps, i still can't mount my NTFS hdd. Please help me as I am getting frustrated.

    Uninstall Paragon if you can
    Do a Apple Menu > About this Mac > more Information  and scroll down where it says "Software" and click on it.
    On the right will say "System Software Overview"
    Look down to "64 bit Kernal and Extensions" It will say "Yes" or "No"
    I think someone said Paragon only works with 32 kernal in Snow Leopard.
    Reboot into 32 bit mode by holding 3 2 keys, this should make Paragon work until you get your files off, but you should uninstall it, it's not needed anymore.
    (do get your machine back into 64 bit mode, boot holding the 6 4 keys)
    Here is a free utility that enables NTFS read/write support in Snow Leopard.
    It's a hack so know it might not work in Lion, but get you by for now.
    http://ntfsmounter.com/
    If all that fails, burn a ISO of PartedMagic to cd using Disk Utility. Windows 7 right click, or the free ImgBurn for Windows.
    Hook up a HFS+ or exFAT formatted external powered drive to transfer files too.
    Hold c/option and boot from the disk, install into RAM and the disk will spit out.
    On the left is MountDevcies, doubleclick it twice to get two file transfer windows.
    http://partedmagic.com/doku.php?id=screenshots
    Use the third smaller window to mount your drives, use the file transfer windows to transfer data from the NTFS drive to the exFAT/HFS+ drive.
    Once completed unmount the drive and use the lower left corner to exit and reboot. Linux reads and writes anything just about
    From now on, format all your external drives to be used with PC's and Mac's as exFAT in Disk Utility (important!)
    If you have a Windows XP machine, Microsoft has a free exFAT format to download. Vista and 7 should be fine.
    Only Mac's with 10.6.5 and later can read/write exFAT, but exFAT allows larger than 4GB sized files and it the future cross platform disk format.
    Don't need Paragon or other third party software anymore, likely why they didn't make a 64 bit kernal extension.

  • Weird problem with NTFS drive

    I went on and compiled my own kernel, it's not the first time i do it, but what happened to me yesterday was so unusual.
    i put the kernel compilation at night, i went to sleep, the morning i had the package ready, no errors what so ever, then i went and restarted the computer, now after the kernel loads i get an error when it tries to auto mount that ntfs drive, well i thought i made a mistake in the kernel, but no, the reason it got an error was it could not find the UUID.
    well, i went and tried using blkid on it, nothing was returned.
    then tried to mount the partition manually, it said it contains an error and i need to run chkdsk.
    i tried using the ntfsfix, nothing helped, still complains to run chkdsk.
    well, tried to log in into windows from grub (nothing was changed there and it worked as before), i got it does not recognize that system file. although fdisk -l shows NTFS!
    I went far and created a bootable rescue cd with some tools (windows based), it recognized the drive, but not as NTFS, just as an unformatted drive, and it have 100% freespace, this is so weird, i really don't care of the files that were there, it was just an winxp installation with outlook (and the emails are kept on the server) but what i really care is that it could be that ntfs-3g unmounted the partition some how in a wrong way causing the partition to fail? (sounds weird to me..)
    i also ran chkdsk but the chkdsk could not check that partition as it said it can't access it, unknown file systems.
    Lucky nothing worthy to me was deleted because i had nothing in there, but i still feel something bad happened to there, it's must have been ntfs-3g because i didn't use anything else on that partition and also i didn't use the partition at ALL (no copy/del , etc..) since the computer was up.
    I tried many ways saving the partition, but no luck, everything i tried complained about wrong fs system (including windows tools).
    Well, more space to archlinux now

    If you have a two devices banged out, deleted them and restart.  It should auto detect the devices and load the driver.    I had a problem like this.  That worked for me. 
    What kind of hard drive is it.  

  • Mount external hard drive on boot

    I have a Mac mini run on SL, I want to set it up as a samba server with a external hard drive which formatted in NFS format.
    I tried to write a plist in LaunchDaemons to call a script to mount the hard drive, but it does not work.
    Here is my plist
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>com.kg.mount</string>
    <key>RunAtLoad</key>
    <true/>
    <key>ProgramArguments</key>
    <array>
    <string>/System/Library/script/com.kg.mount</string>
    </array>
    </dict>
    </plist>
    It get loaded at the start, if I user command 'launchctl list', I can see the service is loaded, but the disk is not mounted. If I run the plist manually after boot, the disk will be mounted.
    Does somebody know how to mount a disk at boot time?
    Thanks

    The OS automatically mounts storage devices when they come online. If that doesn't happen, you need to fix the problem.
    First back up the disk, if you haven't already done that.
    Get rid of the script and the launchd item. Unload it first -- I assume you know how to do that.
    Launch Disk Utility and select the "EX" volume, then run "Repair Disk." If any errors are reported, repeat until there are no more.
    If the disk is now mounted, unmount it. Check the /Volumes directory for any empty subdirectories named "EX", "EX-1", or some such. If present, delete them.
    Unplug the drive, then plug it in again. If it still doesn't mount, plug it into a different port (if it's USB.) If it still doesn't mount, try it on a different Mac.

  • How to safely unmount a drive from Air?

    Hello,
    Now that it is possible from Air2 beta2 to detect mount/unmount of drive, I wanted to know if it was possible to unmout propertly the drive that has been mounted.
    I'm developping a fullscreen Kiosk, where the user can plug his USB key to download photos from a folder.  So far, from what I have tried, if the user removes the USB key without unmounting it properly, a message pops up that says "Device Removal .. the device you removed was not properly put away..." (at least in Mac it does) .  It would be nice if I could avoid this message by having an "Eject button"..
    Thanks for any help.
    --Seb.

    will do, thanks!
    Alex Britez
    Kearny, NJ
    www.unthinkmedia.com
    Google Talk: abritez
    image: Linkedin <http://www.linkedin.com/in/unthinkmedia>[image:
    Facebook] <http://www.facebook.com/abritez>[image:
    Flickr]<http://www.flickr.com/abritez>[image:
    Twitter] <http://www.twitter.com/abritez>
    --- @ WiseStamp
    Signature<http://my.wisestamp.com/link?u=h9vc2g6p6q673jq6&site=www.wisestamp.com/email-install>.
    Get it now<http://my.wisestamp.com/link?u=h9vc2g6p6q673jq6&site=www.wisestamp.com/email-install

  • How to get mountain lion to see ntfs drive

    I am unable to mount a ntfs drive. tried several 3rd party applicatons but they do not work with 10.8.3

    You should be able to read the hard drive in Mountain Lion, but you will not be able to write to the drive without 3rd party software like Paragon NTFS for Mac or NTFS-3G.

  • Connect to multiple drives in the same directory?

    Please pardon me for not using correct terminology. I cannot mount (map) two drives in the same directory. I use "Go >Connect to Server >smb://fs.domain.edu/~directory/folder1" and the folder1 icon pops up on my desktop. Then if I use the same structure with /~directory/folder2, the Finder window opens to the same folder1 I originally mounted. I have to disconnect from the first before I can successfully mount the second. Since I sometimes need to work on documents in both simultaneously, it is VERY inconvenient. Is there a solution, and is it on my machine or do I need to bug our techies (again)??

    No. In the Go >Connect to Server dialog they show as:
    smb://fs.domain.edu/~directory/folder1
    smb://fs.domain.edu/~directory/folder2
    I have access also to another directory:
    smb://fs.domain.edu/~directory2/folder1
    smb://fs.domain.edu/~directory2/folder2
    And can simultaneously mount a drive in that directory with a drive in the other directory, but cannot simultaneously mount two drives in the same directory.

Maybe you are looking for

  • How to apply dll file or user defined function in B1

    Dear all, I have dll file and user defined function which use for converting number amount to text of my language. I plan to create UDF to keep the result of function on A/R invoice and I will use this UDF on print layout desiner but I don't know how

  • Display Warehouse Stock in SAP EWM

    Dear Experts, Kindly let me know what is the transaction code to display Warehouse Stock in SAP EWM. Thanks, Shetty

  • After iOS 6, iMessage Microphone Gray

    Okay, I'ved searched everywhere and can't find an answer.  After I updated to iOS 6 in iMessage ONLY, my microphone to dictate is grayed out.  Siri Dictation works everywhere else (email, notes, etc) with out a problem.  Any help would be greatly app

  • [SOLVED]Something wrong with Locale, "ÅÖÄ" doesn't work in terminal.

    If you have this kind of problem stated above in the title, or similar, here is what I did... Make sure you have correct locale, you'll need a UTF-8 one. As stated in the install guide(or beginner's guide iirc) do the following: Uncomment  one of the

  • After Effects CS6 Performance issues

    Hello all. Well, got three new mac pro 12 core systems all running 65 - 128gigs of ram with Quadra 4000 GPU cards, up to date drivers, up to date AECS6 and dedicated 500 gig solid state drives for global cache. Their all set-up according to Adobe spe