[SOLVED] automount external ntfs disk

Hello,
After Arch fires up I can see my external hard drive in Thunar, however it is not mounted. I have to click on the icon to actually mount it. How can I make this "click" automatic? Thank you.
Last edited by totolotto (2012-12-15 10:14:52)

The result of blkid:
/dev/sda1: UUID="5385fd72-c052-44c1-b536-1e4a08f1757c" TYPE="ext4"
/dev/sda2: UUID="4c64fa62-0407-4cc6-ac08-dc4429ce4512" TYPE="ext4"
/dev/sda3: UUID="0f84c531-9a0e-45eb-95da-1f0c9837d22b" TYPE="ext4"
/dev/sdb1: LABEL="My Book" UUID="402A80C12A80B586" TYPE="ntfs"
and when I inserted this to /etc/fstab
/dev/sdb1 /Media ntfs-3g defaults 0 0
startx did not even start. Thunar shows this place when mounted:
/run/media/ko/My Book/
What did I do wrong?

Similar Messages

  • I3 window manger & automount external hard disk / usb drive

    Hi,
    I using arch x86_64 with 3.11.5-1-ARCH #1 SMP PREEMPT kernel + i3 window manager + pcmanfm.
    But i'm unable to automount my external hard disk or usb drive.(I have installed gvfs package as well.
    Also is there any gui tool to configure keybinding? (something like obkey in openbox)
    Please help.
    Thank you.

    epic wrote:Also is there any gui tool to configure keybinding? (something like obkey in openbox)
    I think you need to look at https://wiki.archlinux.org/index.php/I3#Volume_Manager and the output of man i3
    tl;dr - the ~/.i3/config file does it nicely.
    Here is mine:
    ewaller$@$odin ~ 1001 %cat .i3/config
    # This file has been auto-generated by i3-config-wizard(1).
    # It will not be overwritten, so edit it as you like.
    # Should you change your keyboard layout somewhen, delete
    # this file and re-run i3-config-wizard(1).
    # i3 config file (v4)
    # Please see http://i3wm.org/docs/userguide.html for a complete reference!
    set $mod Mod4
    # Font for window titles. Will also be used by the bar unless a different font
    # is used in the bar {} block below. ISO 10646 = Unicode
    #font -*-charter-medium-r-*-*-*-100-*-*-*-*-*-*
    # The font above is very space-efficient, that is, it looks good, sharp and
    # clear in small sizes. However, if you need a lot of unicode glyphs or
    # right-to-left text rendering, you should instead use pango for rendering and
    # chose a FreeType font, such as:
    font pango:DejaVu Sans 8
    # Use Mouse+$mod to drag floating windows to their wanted position
    floating_modifier $mod
    # start a terminal
    bindsym $mod+Return exec i3-sensible-terminal
    # kill focused window
    bindsym $mod+Shift+q kill
    # start dmenu (a program launcher)
    bindsym $mod+d exec dmenu_run
    # There also is the (new) i3-dmenu-desktop which only displays applications
    # shipping a .desktop file. It is a wrapper around dmenu, so you need that
    # installed.
    # bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
    # change focus
    bindsym $mod+j focus left
    bindsym $mod+k focus down
    bindsym $mod+l focus up
    bindsym $mod+semicolon focus right
    # alternatively, you can use the cursor keys:
    bindsym $mod+Left focus left
    bindsym $mod+Down focus down
    bindsym $mod+Up focus up
    bindsym $mod+Right focus right
    # move focused window
    bindsym $mod+Shift+j move left
    bindsym $mod+Shift+k move down
    bindsym $mod+Shift+l move up
    bindsym $mod+Shift+semicolon move right
    # alternatively, you can use the cursor keys:
    bindsym $mod+Shift+Left move left
    bindsym $mod+Shift+Down move down
    bindsym $mod+Shift+Up move up
    bindsym $mod+Shift+Right move right
    # split in horizontal orientation
    bindsym $mod+h split h
    # split in vertical orientation
    bindsym $mod+v split v
    # enter fullscreen mode for the focused container
    bindsym $mod+f fullscreen
    # change container layout (stacked, tabbed, toggle split)
    bindsym $mod+s layout stacking
    bindsym $mod+w layout tabbed
    bindsym $mod+e layout toggle split
    # toggle tiling / floating
    bindsym $mod+space floating toggle
    # change focus between tiling / floating windows
    bindsym $mod+Shift+space focus mode_toggle
    # focus the parent container
    bindsym $mod+a focus parent
    # focus the child container
    #bindsym $mod+d focus child
    # switch to workspace
    bindsym $mod+1 workspace 1
    bindsym $mod+2 workspace 2
    bindsym $mod+3 workspace 3
    bindsym $mod+4 workspace 4
    bindsym $mod+5 workspace 5
    bindsym $mod+6 workspace 6
    bindsym $mod+7 workspace 7
    bindsym $mod+8 workspace 8
    bindsym $mod+9 workspace 9
    bindsym $mod+0 workspace 10
    # move focused container to workspace
    bindsym $mod+Shift+1 move container to workspace 1
    bindsym $mod+Shift+2 move container to workspace 2
    bindsym $mod+Shift+3 move container to workspace 3
    bindsym $mod+Shift+4 move container to workspace 4
    bindsym $mod+Shift+5 move container to workspace 5
    bindsym $mod+Shift+6 move container to workspace 6
    bindsym $mod+Shift+7 move container to workspace 7
    bindsym $mod+Shift+8 move container to workspace 8
    bindsym $mod+Shift+9 move container to workspace 9
    bindsym $mod+Shift+0 move container to workspace 10
    # reload the configuration file
    bindsym $mod+Shift+c reload
    # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
    bindsym $mod+Shift+r restart
    # exit i3 (logs you out of your X session)
    bindsym $mod+Shift+e exit
    #bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
    # resize window (you can also use the mouse for that)
    mode "resize" {
    # These bindings trigger as soon as you enter the resize mode
    # Pressing left will shrink the windows width.
    # Pressing right will grow the windows width.
    # Pressing up will shrink the windows height.
    # Pressing down will grow the windows height.
    bindsym j resize shrink width 10 px or 10 ppt
    bindsym k resize grow height 10 px or 10 ppt
    bindsym l resize shrink height 10 px or 10 ppt
    bindsym semicolon resize grow width 10 px or 10 ppt
    # same bindings, but for the arrow keys
    bindsym Left resize shrink width 10 px or 10 ppt
    bindsym Down resize grow height 10 px or 10 ppt
    bindsym Up resize shrink height 10 px or 10 ppt
    bindsym Right resize grow width 10 px or 10 ppt
    # back to normal: Enter or Escape
    bindsym Return mode "default"
    bindsym Escape mode "default"
    bindsym $mod+r mode "resize"
    # Bindings for my HP Pavilion
    bindsym XF86AudioPlay exec mpc toggle
    bindsym XF86AudioPrev exec mpc prev
    bindsym XF86AudioNext exec mpc next
    bindsym XF86AudioStop exec mpc stop
    bindsym XF86AudioRaiseVolume exec pavolume increase
    bindsym XF86AudioLowerVolume exec pavolume decrease
    bindsym XF86AudioMute exec pavolume mute
    bindsym XF86Save exec dmenu_run
    bindsym $mod+x exec x48
    bindsym $mod+Tab workspace next
    bindsym $mod+Shift+Tab workspace prev
    bindsym Mod1+Tab workspace next
    bindsym $mod+Menu exec i3-winmenu.py
    bindsym $mod+XF86Save exec gmrun
    for_window [title="Execute program feat. completion"] floating enable' border none; focus mode_toggle
    for_window [title="x48-0.6.4"] floating enable' border none; focus mode_toggle
    for_window [title="Wicd Network Manager"] floating enable' border none; focus mode_toggle
    # Float notifications
    for_window [class="Xfce4-notifyd"] floating enable; border none; focus mode_toggle
    # Start i3bar to display a workspace bar (plus the system information i3status
    # finds out, if available)
    bar {
    status_command i3status
    #exec --no-startup-id i3-msg 'workspace 2; exec firefox; workspace 1'
    exec --no-startup-id i3-msg 'workspace 10; exec claws-mail; workspace 1'
    exec --no-startup-id exec nitrogen --restore
    exec --no-startup-id exec xcompmgr
    exec --no-startup-id exec conky
    exec --no-startup-id exec mpd
    #exec --no-startup-id emacs
    exec --no-startup-id exec wicd-gtk -t
    ewaller$@$odin ~ 1002 %

  • How to delete files from external ntfs hard disk [Solved]

    Hi guys
    first, sorry for my bad English.
    I have an external hard disk ( WD 500GB ) with ntfs file system and i have installed ntfs-3g package.
    3 days ago, when i wanted to delete some files, i get a problem with it,
    look the output :
    [jahangir@Arch New Metal]$ sudo rm *
    [sudo] password for jahangir:
    rm: cannot remove '02 - Korn - Love and Meth.mp3': No such file or directory
    rm: cannot remove '30Seconds To Mars': No such file or directory
    rm: cannot remove '30Seconds To Mars 1': Is a directory
    rm: cannot remove 'Avantasia': No such file or directory
    rm: cannot remove 'Avantasia 1': Is a directory
    rm: cannot remove 'Avantasia 2': Is a directory
    rm: cannot remove 'Behemoth': No such file or directory
    rm: cannot remove 'Behemoth 1': Is a directory
    rm: cannot remove 'Hanging Garden - At Every Door - 2013': No such file or directory
    rm: cannot remove 'Hanging Garden - At Every Door - 2014': No such file or directory
    rm: cannot remove 'Rosetta': No such file or directory
    rm: cannot remove 'Rosetta 1': No such file or directory
    rm: cannot remove 'Sepultura': No such file or directory
    rm: cannot remove 'Sepultura 1': No such file or directory
    rm: cannot remove 'Slipknot': No such file or directory
    rm: cannot remove 'Slipknot 1': No such file or directory
    rm: cannot remove 'Tokio Hotel': No such file or directory
    rm: cannot remove 'Tokio Hotel 1': No such file or directory
    rm: cannot remove 'T\303\275r': No such file or directory
    rm: cannot remove 'neww': No such file or directory
    [jahangir@Arch New Metal]$
    Who can help me ?
    I wanted to delete .trash-1000 file from my main directory hard dist and i confront with this error :
    [jahangir@Arch My Passport]$ sudo rm .Trash-1000
    [sudo] password for jahangir:
    rm: cannot remove '.Trash-1000': No such file or directory
    [jahangir@Arch My Passport]$
    In the event that it is there.
    also in main directory of my hard disk i have 1 mp3 file that i can't view it in file manager and it will be displayed in Windows OS and with ls command in terminal :
    [jahangir@Arch My Passport]$ ls
    ls: cannot access 01 - Lost.mp3: No such file or directory
    ls: cannot access 02 - Surrendered To The Decadence.mp3: No such file or directory
    01 - Lost.mp3 In The Name Of God Videos ZzZ - IMAN winold
    02 - Surrendered To The Decadence.mp3 New Metal World of Warcraft Cataclysm 4.3.4 enGB navid wow wrath
    [jahangir@Arch My Passport]$
    what is this file and how can i delete .Trash-1000 and this files and content of "New Metal" directory ?
    Last edited by jiros (2013-12-23 20:57:05)

    I believe you used ntfs for a reason. As far as I know, Windows isn't friendly with hdd filesystems others than fat or ntfs, so once you format your external harddrive to ext4, windows won't talk to it at all, unless you install some additional driver or software.
    You have several possibilities to do:
    1) You could use FAT32, it's kind of a dumb filesystem, linux, mac and windows can read and write to it, there are some limitations like file permisions or 4GB file size limit.
    2) You could make multiple partitions on your external harddrive, one with ntfs (for windows) and the other with some fs that is support natively in Linux and Mac, I believe only option would be HFS+. I'm not an expert, maybe somebody will correct me. Anyway, if you aren't going to connect your disk to Mac, than ext4 would be a good choice. But this approach with two different partions is kind of dumb, because usually you need the same data available on whatever platform.
    3) If I were you, I would continue using NTFS or FAT32. It's not ideal, but it's a price you have to pay for dealing with Windows systems.
    4) If there is any other smarter solution, I believe somebody will add it to responses bellow.
    Anyway, it's weird that your problem persists. There has to be something wrong with your filesystem, otherwise ls wouldn't show you question marks in its output. Did you perform chkdisk via GUI? It has to say that either there wasn't any error with your fs, or that there was some error. We live (unfortunatelly) in binary computer world. I mean you can perform that command from shell, or however microsoft calls it, and if you run it in a proper configuration, it will tell you whether your fs is bad or not and perform needed repairs.
    And how to format disk to ext4?
    Backup your data, run as root fdisk /dev/yourexthdd (fdisk /dev/sdd), delete all partitions, create new ones, once you are done, write changes down. fdisk is pretty easy to use, don't be afraid of it. Then you have to create filesystem on each partition you created with fdisk, so if you created only one, run mkfs.ext4 /dev/yourexthddwithpartnumber (mkfs.ext4 /dev/sdd1). There are nice articles about doing these things on Arch Wiki (https://wiki.archlinux.org/index.php/File_Systems), don't be worried to read them

  • Time Capsule doesn't allow to access NTFS external USB Disks

    good morning. I've just configured a 2TB Timecapsule, in a wireless network with 2 MACBookPro and 1 windows xp.
    A HP HJPro 8500 is connected to TC and is reachable via wireless, thru a Belkin USB port replicator.
    two time machine's usb disks are connected thru the same belkin adapter and work fine.
    Another two external usb disks, formatted as NTFS, are not visible at all (even if they are, if connected directly to the macs of to the xp.
    I've tried to disconnect the TM disks, leaving connected only the two ntfs disks, with no results.
    Any idea to solve this issue? i don't expect to have NTFS disks not accessible thru TC.. no manuals mentioned this as a problem..
    thank you in advance.
    F

    NTFS is not supported:
    http://support.apple.com/kb/ht2426

  • [solved] Automount USB disk on startup?

    Hi!
    I've got an external USB disk that's always connected to my computer (it sits in a "slot" in my computer) and I'm having trouble getting it to automount upon startup. I use openbox as WM and pcmanfm as FM. To mount it I have to access the disk through pcmanfm and then it gets mounted perfectly. Since I've set up my computer as a freevo media center it's kinda annoying that the disk doesn't get automounted and I have to drag my a** out of the couch to mount it.
    My fstab looks like this:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    /dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0
    /dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0
    /dev/sda1 /boot ext2 defaults 0 1
    /dev/sda2 / ext3 defaults 0 1
    /dev/sda3 /var reiserfs defaults 0 1
    /dev/sda4 /home ext3 defaults 0 1
    /dev/sdb1 /extra ext3 defaults 0 1
    I tried to add:
    /dev/sdc1 /media/disk ext3 defaults 0 1
    but get a error message during boot that filesystem can't be checked and the entire boot process halts. So I canged it to:
    /dev/sdc1 /media/disk ext3 defaults 0 2
    but then the disk didn't get mounted.
    How can I get this to work?
    Last edited by Perre (2008-05-11 12:08:25)

    sudo mount /dev/sdc1 /media/disk ext3 defaults 0 0 in rc.local gives this:
    Usage: mount -V : print version
    mount -h : print this help
    mount : list mounted filesystems
    mount -l : idem, including volume labels
    So far the informational part. Next the mounting.
    The command is `mount [-t fstype] something somewhere'.
    Details found in /etc/fstab may be omitted.
    mount -a [-t|-O] ... : mount all stuff from /etc/fstab
    mount device : mount device at the known place
    mount directory : mount known device here
    mount -t type dev dir : ordinary mount command
    Note that one does not really mount a device, one mounts
    a filesystem (of the given type) found on the device.
    One can also mount an already visible directory tree elsewhere:
    mount --bind olddir newdir
    or move a subtree:
    mount --move olddir newdir
    One can change the type of mount containing the directory dir:
    mount --make-shared dir
    mount --make-slave dir
    mount --make-private dir
    mount --make-unbindable dir
    One can change the type of all the mounts in a mount subtree
    containing the directory dir:
    mount --make-rshared dir
    mount --make-rslave dir
    mount --make-rprivate dir
    mount --make-runbindable dir
    A device can be given by name, say /dev/hda1 or /dev/cdrom,
    or by label, using -L label or by uuid, using -U uuid .
    Other options: [-nfFrsvw] [-o options] [-p passwdfd].
    For many more details, say man 8 mount .

  • Can not able to mount ntfs external hard disk

    Hi
    Getting the below error when try to mount NTFS external harddisk
    Disk /dev/sdb: 1000.2 GB, 1000204885504 bytes
    255 heads, 63 sectors/track, 121601 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    /dev/sdb1 1 121602 976761558 7 HPFS/NTFS
    sudo mount -t ntfs /dev/sdb1 /media
    [root@devtest ~]# sudo mkdir /media/Skliros_Diskos
    [root@devtest ~]# sudo mount -t ntfs-3g /dev/sdb1 /media/Skliros_Diskos
    mount: unknown filesystem type 'ntfs-3g'
    Rgrds,

    Oracle Linux NTFS how-to:
    Oracle Linux NTFS how-to

  • Which external hard disk format (fat32 or ntfs) is compatible with macbook pro ?

    Hi . I just bought a macbook pro (13.3 inches) . As the internal storage is not much , i am thinking if buying an external hard disk . Please guide which format of external hard disk (fat32 or ntfs) is compatible with my mac.
    Thanks .

    Paul-nz wrote:
    Ouch! Bad day? .
    One other option you might want to consider is exFat.
    Its supported on Mac and Windows, and even my TV!
    Its got very large file (128PB) and volume size support.
    Cheers.
    Not again.
    The OP wants this to use with a PS3, which does not support exFat. So that suggestion (while quite correct on its face) won't work.
    Maybe this will help you.
    Check what the File System type is. Do this by going to Start, Control Panel, Administrative Tools, Computer Management, Disk Manager. Select the external drive and read the "File System" type. The file system type must be FAT32 in order for the PlayStation to recognize it.
    Split larger, high quality files into smaller files, if necessary. FAT32 has a limit of 3.9 Gigabytes per file, which means some high quality HD movies might have to be split into smaller files, and that makes it less than ideal for some HD content.
    2 for 2

  • Mac Pro Notebook to see, read & write to PC Windows 7 External Hard Disk NTFS

    Hi
    I have a Windows 7 PC desktop with an external hard disk coonected to it by USB formatted as NTFS. Is is connected by cable to a wireless router.
    I now also have a Macbook Pro.
    I would like to work on jpg and Raw files on the External Hard Disk both via the desktop (as I currently do) and also now via the Macbook using Photoshop Elements which exists on both.
    Is there a way that the Macbook can read the external drive and read and write the same files as the pc without purchasing a Macdrive and reformatting the External Drive?
    Thank you
    Regards
    CGJ

    Hi everyone
    I've managed to work out how to share my desktop and the external drive attached to it via wireless so my Macbook Pro can see, open, and edit and save photo files via Photoshop Elements.
    I can also then view and edit them through the Windows PC - though they say some properties are missing this I can live with.
    Therefore no re-formatting needed, and no downloads either.
    Many thanks
    Regards

  • NTFS formatted external hard disks?

    does mountain lion supports writing on NTFS formatted external hard disks?

    I'm getting immense slow-downs using Tuxera NTFS (latest release as of August 2012).  I moved my home folder to an NTFS shared drive.  Reading/writing to the cache while browsing in Safari is slow.  Takes about 30 seconds for Finder to open my NTFS drive, takes about 1 minute to open an app and close the app.  If I disable Tuxera NTFS and make my drive read-only, everything goes back to snappy performance (except for write-errors, since disabling Tuxera means I can't write to my home folder). 
    What shocks me the most is that if you visit the Tuxera community forum on their corporate website, none of their support representatives have helped their customers since the release of Tuxera NTFS for OS X Mountain Lion.  It's as if the company realized they messed up, so they went silent.
    I'm about to try the latest version of Paragon.  I had it for OS X Lion, but it corrupted my entire drive after 2 months of use, which is why I tried to give Tuxera a shot.  Here's to hoping Paragon has fixed their issues.

  • TS1394 i cannot install macfuse and ntfs 3g on my mac os x (version 10.4.11). cannot read my external hard disk

    Hi,
    I have a mac os x (vers Op. syst. 10.4.11). I purchased an external hard disk, but i cannot copy files into it, it says " cannot b midified", it is in read only. I then downloaded Macfuse and NTFS 3 G on my mac but couldnt install : the image is mounted on the dsktop but when i clicon the pkg file to installnothing hapens. I also tried to format the external hard disk onmy mac but i didnt find the " Disk utility" application! is it normal? checked with the spotlight but nothing it is not in there !
    Please need help urgently.
    hank you in advance.
    Sou

    Formatting & Partitioning a Hard Drive in OS X - Tiger and Leopard - http://www.kenstone.net/fcp_homepage/partitioning_tiger.html
    Kappy's extensive hard drive formatting post - http://discussions.apple.com/thread.jspa?messageID=8340551 - note that instructions at end are for zeroing data.
    BDAqua's Formatting instructions - http://discussions.apple.com/message.jspa?messageID=8901255
    Pondini: Formatting,  Partitioning, Verifying,  and  Repairing  Disks... - http://web.me.com/pondini/AppleTips/DU.html
    Disk Utility in Applications > Utilities

  • Finder cannot searching for NTFS formatted external hard disk

    MacBookAir,1.8GhZ,Memory 4GB1600 MHz DDR3
    osx10.9.3
    Finder  can show and open the files from the external hard disk but can not searching for the files.

    Barney-15E wrote:
    Tuxera or paragon will give you write access, but I don't know if that will allow Spotlight to work on those drives.
    A brief experiment suggests that Spotlight does not index an NTFS volume driven by Paragon NTFS. I don't have a copy of Tuxera to test.
    Sorry, cchaikittiporn. Paragon does not seem to be a solution for your issue.

  • [SOLVED] Automount CD or DVD doesn't work (consistently)

    Problem with mounting CD's / DVD's and Device Notifier
    DVD's are not mounted in /media/, and the Device Notifier does not show them.
    CD's (which aren't actually mounted)  I can always access in Dolphin with "AudioCD:/", but Device Notifier rarely pops up (maybe 1 out of 10 times).
    facts:
    - No device listing in /etc/fstab for DVDROM
    - File in /etc/hal/fdi/information/<device>.fdi has bool set to 'true' (and I tried deleting the whole file as well)
    - HAL notices that the CD / DVD is inserted (with lshal -m):
    storage_model_DVDRW___DVR_K17B property storage.removable.media_available = true
    - Tried deleting .KDE4 profile, but that didn't change anything,
    - I've got Ubuntu 10.10 installed on the same hardware, and it mounts / shows everything without problems (conclusion: problem is not hardware-related). Ubuntu doesn't use HAL.
    - SystemSettings -> Removable Devices -> Automount on Attach is enabled (just in case),
    - USB flashdrives and external Hard Disk are mounted and shown by Device Notifier without problem.
    - I do get these errors with cat /var/log/errors.log | grep sr0, but they also appear in the rare event when a CD or DVD is actually mounted and shown by Device Notifier:
    DVD:
    Sep  7 13:55:05 localhost kernel: end_request: I/O error, dev sr0, sector 4096
    Sep  7 13:55:05 localhost kernel: Buffer I/O error on device sr0, logical block 1024
    Sep  7 13:55:05 localhost kernel: Buffer I/O error on device sr0, logical block 1025
    CD: 
    Sep  7 13:58:57 localhost kernel: end_request: I/O error, dev sr0, sector 0
    Sep  7 13:58:57 localhost kernel: Buffer I/O error on device sr0, logical block 0
    Sep  7 13:58:57 localhost kernel: Buffer I/O error on device sr0, logical block 1
    (the CD in this case was actually shown by Device Notifier normally! So these errors don't seem to have anything to do with it)
    I don't think this is HAL - related, so it must be udev, dbus (not likely), or maybe KDE / device notifier.. ?
    How do I troubleshoot this? Any suggestions?
    Using:
    Linux laptop 2.6.35-ARCH #1 SMP PREEMPT Fri Aug 27 17:14:28 CEST 2010 x86_64 Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz GenuineIntel GNU/Linux
    Hal 0.5.14-4
    Dbus 1.2.24-1
    KDE 4.5.1
    Last edited by christopher72 (2010-09-09 22:54:10)

    Problem solved:
    At one time, I was using the [testing] repo.  Removed it from pacman.conf a week ago, because i wanted to get back to the stable packages.  I re-installed all the older versions of the packages that are in core / extra and that pacman warned me about.  Did not get any further warnings after that, so I assumed everything was fine, and the rest of the system was stable and working just fine.  But something must have been broken, see the above.   In other words: I messed up things without knowing about it. :-S
    Today I added [testing] again to check if this would solve my problems, and it did!
    Or... is it just the newer version of udev that is in testing at the moment. :-)  Who knows.
    This leads me to my next question: how can i safely disable [testing] and return to stable packages, without breaking anything?

  • Bootcamp backup deletes external NTFS HDD

    maybe someone can help:
    I wanted      (because OSX Lion does not allow to run Bootcamp with WIN XP) to      remove the Bootcamp-Partion on my MAC drive, but save it on an      external disk for backup. 
        For that reason I      have connected an external WIN formatted NTFS-USB Drive to my      MacbookPro, and tried to copy the Bootcamp partition to this Drive      - in addition to the data, which were already on that drive (and      this data are very very important films I made in the past).
        I had done this with the following procedre:
        "Instructions
        1 .Plug in an      external hard drive to copy the Boot Camp partition. Make sure the      drive contains an empty partition of equal or larger size.
        2. Open the      "Utilities" folder inside the "Applications" folder, then run      "Terminal."
        3 .Type the      following command and then press "Enter":
        diskutil list
        This displays a      partition table with four columns. Locate the "Boot Camp"      partition, and make a note of its identifier. This will be similar      to "disk0s3." Make a note of the identifier of the external drive      partition.
        4. Type the      following command to unmount the Boot Camp partition:
        diskutil unmount      /dev/disk0s3
        Replace "disk0s3"      with your Boot Camp partition identifier.
        5. Type the      following command to unmount the external backup drive partition:
        diskutil unmount      /dev/disk1s1
        Replace "disk1s1"      with your external drive partition identifier.
        6. Type the      following command to clone the Boot Camp partition to the external      drive:
        sudo dd      if=/dev/disk0s3 of=/dev/disk1s1 bs=1024
        Replace "disk0s3"      with your Boot Camp partition identifier, and "disk1s1" with the      external drive partition identifier.
        Unfortunately I      did not know the result of this procedure:
          Now I had killed my whole external drive (1TB), overwritten with      this Bootcamp-Mount.
          It seems, that there is now on the drive only one      "Bootcamp-partition (or Bootcamp-mount with 20 GB). I can see no      data on the drive with WIN XP.
    Does anone have any suggestion I could do, to remove      the Bootcamp-mount from the drive and rescue the old data bringing them up again?
        XP-Drive manager sees the drive with 931GB (one parttion) but no    bootsector or data (suggests a formatting).
        Is there any idea for me?
        Thanks in advance,

    Well I finally gave in and formatted the external drives to HTFS+, so now I can read and write on them from anywhere on my home network. But this does mean I cant unplug them and use then with a windows machine directly. Or I have to buy paragon HTFS+ for windows and have that every time with me on a USB drive been allowed to install it (for example on one of the the computer at my school). It feels to me like this just a marketing scheme to spend more money. I mean how am I as end user suppose to know that after I upgrade my OS I am not able to use external NTFS Hard drives on my network. No one in the store when I was buying a mac told me: "Hey when you buy a external drive do format it to HTFS+ immediately or else you could have problems. I mean apple knows that except maybe for a few brands the most used format for external drives is NTFS. There should have been at least a warring before installing Mountain Lion. The best scenario would have been if it just worked. Ok enough of my complaining, its just that this has been really frustrating. I mean to backup 3tb is about 20 hours and then copy it back to the drive is about 13. Am still copying as I write this.
    But anyway that's one problem solved. Wake on LAN still have no luck with that one. Well I got a work around but its not ideal. For me setting the Display Sleep to 3 hours works, because my iMac 24 and my main PC are nest to each other. But I guess for people that need this for remote servers even that wont work. O btw maybe this helps a few people, Teamviewer seems to be able to wake him up too.

  • HT201269 I am trying to save memory on my iPhone 4S/ ios6. Can I back up all photos to icloud and the external hard disk I normally use for photos? If I then delete photos from the iPhone do the get deleted on iCloud?

    I am trying to save memory on my iPhone 4S/ ios6.
    1) Can I back up all photos to icloud and the external hard disk I normally use for photos? If I then delete photos from the iPhone do the get deleted on iCloud?
    2) Can I back up the newsstand to iCloud and save memory on the iPhone?
    3) Can I back up the bookshelf to icloud and save memory on the iPhone?

    1. What format is the external drive? It sounds like it's ina format that Macs can't write to. Is it a NAS or NTFS?
    2. Easiest thing: just move your iPhoto Library to the external
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • Not able to delete file from external hard disk

    I connected my external hard disk to my macbook pro. But am not able to delete any file since it says the file cannot be deleted when I move it to trash. Could you let me know how to delete a file from the external hard disk?

    How is your HDD formatted? NTFS? FAT?
    Did you write files with rights? When you strike +I on any file, you can see its rights; if you're read-only, you may change your file's rights.

Maybe you are looking for

  • Itunes Wont Start At All No Error Messages Nothing HELP ME!!!!!!!!!!!!!!!

    My Itunes Wont Work At All No Error Message Comes Up NOTHING ive Uninstalled , Deleted the Files in c Drive and Re Installed it Over and Over Again Quicktime Works Fine But When i Open Quicktime My Itunes is on there :S its very Confusing But i still

  • Can anyone tell how to use daysbetween() function in analytical view?

    I have been trying to create a calculated column in analytical view. Column needs to calculate days between two dates. Using daysbetween (date1,date2) function, I have been trying to bring the difference but while validating i m getting error as date

  • Order GI date different from Delivery Planned GI date

    Hi Gurus, I noticed on one order-delivery that the order's GI date (in the schedule line) is different from the delivery's planned GI date. What could be the cause of that?

  • Team Speak 3 (64-Bit)

    Hello all, Windows 10 technical preview build 9926 (64-Bit), there seems to be an issue with Team Speak 3 (64-Bit). It will lock up the system, however, you can still talk on team speak it does not BSOD or auto reboot. The fix I found or work around

  • Como activo mi iphone

    mi iphon dice activando pero  no deja de hacerlo y al final dice que no se pudo activar y no me da acceso a nada que puedo hacer y ocurrio despues de actualizar el sofwere