HAL doesn't let regular users browse NTFS drives

If I plug a USB hard drive into my computer that is using an NTFS filesystem, I get a dialog box saying "Failed to open directory "disk-1".  Permission denied."  Most of the time with flash drives and the like, I plug it in and it just works (wowee!).  But in this case, it's getting its unix on.  I haven't messed with the fstab if that's what I have to dink with.  What can I do to allow a regular user read and write to NTFS drives via HAL?

I use both the policy rule and the mount.ntfs-3g workaround, as I have many files with greek characters on my removable NTFS volumes- and without the workaround they are invisible (despite the fact that the system default is el_GR.UTF8).
I didn't need to apply the "ln -s /sbin/mount.ntfs-3g /sbin/mount.ntfs" workaround, as I had no issues (using a fairly standard kernel26).

Similar Messages

  • Mounting USB drive as regular user (with ntfs-3g)

    Hello. First of all, I not asking to do the homework for me, rather is someone can help me understand why I can't get this work.
    I spent the last night trying to figure how mount an USB drive as a regular user, using ntfs-3g. I read the related wiki entries and researched quite a lot in the forums. I came up with this:
    fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    devpts /dev/pts devpts defaults 0 0
    shm /dev/shm tmpfs nodev,nosuid 0 0
    #/dev/cdrom /media/cd auto ro,user,noauto,unhide 0 0
    #/dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
    #/dev/fd0 /media/fl auto user,noauto 0 0
    /dev/sda1 / ext3 defaults,noatime 0 1
    /dev/sda2 /home ext3 defaults,noatime 0 2
    /dev/sda3 swap swap defaults 0 0
    /dev/sdb1 /mnt/usb ntfs-3g noauto,uid=0,gid=0,noatime,umask=000, 0 0
    I created a ntfsuser group, added my user to that group and trim permissions to the ntfd-3g executable (link in this post). That allows me mount the partition as root and read/write as regular user. It works, so (i think) not big deal here.
    However if I add user to the mount options the following error shows up:
    Mount is denied because setuid and setgid root ntfs-3g is insecure with the
    external FUSE library. Either remove the setuid/setgid bit from the binary
    or rebuild NTFS-3G with integrated FUSE support and make it setuid root.
    Please see more information at http://ntfs-3g.org/support.html#unprivileged
    What bugs me the most is I don't understand why I can't mount as regular user when the user option is set in the fstab. Shouldn't that allow regular users to mount and unmount? Is not like that I'm mounting and dismounting USB drives every 5', but I would like to get this done because I know it can be done
    Sorry for asking such trivial question, but I sense that I'm missing something really stupid and I just can't figure what it is

    Beware of the double post! (+1)
    Ok, I decided I'd get this to work, although the method and the implications it could have might not seem pretty to some. There are certain conditions for a user to mount any ntfs volume with ntfs-3g, I will name them here:
    1. ntfs-3g with integrated fuse support. You'll get this by:
        1A. Removing ntfs-3g and fuse from your system if you have them installed as separate packages, so do this as root:
    pacman -Rn ntfs-3g
    pacman -Rn fuse
    Now you can install the new package.
        1B. Getting a modified version of the PKGBUILD found in that AUR link previously mentioned by me, here's mine:
    # Maintainer: Gula <gulanito.archlinux.org>
    # Slightly modified by anderfs
    # Don't forget to setuid-root for the ntfs-3g binary after you install this
    pkgname=ntfs-3g-fuse-internal
    pkgver=2010.5.16
    pkgrel=1
    pkgdesc="Stable read and write NTFS driver (whit internal fuse suport)"
    url="http://www.tuxera.com"
    arch=('i686' 'x86_64')
    license=('GPL2')
    depends=('glibc')
    conflicts=('ntfs-3g')
    makedepends=('pkgconfig')
    options=('!libtool')
    source=(http://www.tuxera.com/opensource/ntfs-3g-${pkgver}.tgz
    http://aur.archlinux.org/packages/ntfs-3g-fuse-internal/ntfs-3g-fuse-internal/25-ntfs-config-write-policy.fdi)
    sha1sums=('895da556ad974743841f743c49b734132b2a7cbc'
    '200029f2999a2c284fd30ae25734abf6459c3501')
    build() {
    cd "${srcdir}/ntfs-3g-${pkgver}"
    ac_cv_path_LDCONFIG=/bin/true ./configure --prefix=/usr \
    --with-fuse=internal --disable-static || return 1
    make || return 1
    package() {
    cd "${srcdir}/ntfs-3g-${pkgver}"
    make DESTDIR="${pkgdir}" install || return 1
    ln -s /bin/ntfs-3g "${pkgdir}/sbin/mount.ntfs" || return 1
    install -m755 -d "${pkgdir}/usr/share/hal/fdi/policy/10osvendor"
    install -m644 "${srcdir}/25-ntfs-config-write-policy.fdi" "${pkgdir}/usr/share/hal/fdi/policy/10osvendor/" || return 1
    Save this as PKGBUILD, preferrably in an empty directory so it doesn't clutter things up when you build it.
        1C. Now go to the directory where you saved it and do this as a regular user:
    makepkg PKGBUILD
    After that's done, you'll get a package called ntfs-3g-fuse-internal-2010.5.16-1-i686.pkg.tar.xz, or something similar.
        1D. Install that package as root:
    pacman -U ntfs-3g-fuse-internal-2010.5.16-1-i686.pkg.tar.xz
    If all went well you now have ntfs-3g compiled with integrated fuse support.
    2. The ntfs-3g version must be higher than 1.2506, this is already covered, the package installed from AUR matches this requirement.
    3. The ntfs-3g binary must be set to setuid-root, to accomplish this you shall do the following as root:
    chown root $(which ntfs-3g)
    chmod 4755 $(which ntfs-3g)
    I used 4750 instad of 4755, I guess that last bit can be a matter of personal taste as long as it isn't something obnoxious like "7".
    4. The user must have the right access to the volume. Okay, this is the ugly part, volumes are owned by root and managed by the disk group with permissions brw-rw----, this means you have to add any users you want mounting this volume to the disk group.
        4A. So, do this as root:
    gpasswd -a [user] disk
    Where [user] is obviously the name of whichever user you're adding to the disk group, do this for any user you want mounting this volume.
        Any users currently logged in will have to log out and back in for these change to take effect, this most likely includes you.
        4B. Now that you logged back in, try this:
    groups
    One of the groups listed should be disk, if it's not there you didn't completely log out of all open sessions.
    5. The user must have the right permissions/access to the mount point. For a user to be able to mount something to a mount point, that user needs to have read permission (pretty self-explanatory), write permission (so the user can make any changes to the sub-structure of the mount point), and execute permission (so the user can change-dir to that mount point) to it. Mount points can be anywhere, so this really depends where you're mounting.
    In my case, I'm mounting these volumes on certain directories under /mnt/, for example /mnt/example. If you're mounting stuff there, you might as well take advantage of the fact your "mounting user" is already in the group disk, and do the following as root:
    chgrp disk /mnt/example
    chmod 774 /mnt/example
    Now users in the disk group will be able to manage these mount points.
    6. Mount it. That's it, you should now be able to mount ntfs volumes as an "unpriveleged enough" user. Here's an example of what you'd have to put in /etc/fstab:
    UUID=XXXXYYYYXXXXYYYY /mnt/example ntfs-3g noauto,noatime,user,uid=0,gid=6,fmask=137,dmask=027,rw 0 0
    uid=0 means root will be the owner of this mount-point and anything in it after it's mounted. This is due to the fact that even though users might own their mountpoints and have rwx permissions on them, you might still not want them to write to the mounted ntfs volumes. Remove this if you want them to be able to write to the volume.
    gid=6 means this will be managed by the disk group in my system. Perhaps the disk group has a different id in your system, run "id root" to find out, as root usually is part of this group.
    fmask = 137 means the owner (root) can do anything with files in this volume except executing files. Group members (disk) can only read files here, not create or execute them. And other users can't do anything in this volume.
    dmask = 027 means the owner can do anything with directories (execute here is needed to chdir), users can't write directories but they can read or execute in them (once again, needed by 'cd'), and finally other users still don't have any access.
    You can use whichever fmask and dmask makes sense to you, or use an umask instead.
    Last edited by anderfs (2010-07-15 11:34:48)

  • Motion doesn't let open the Browser/Inspector windows

    Suddenly, my Motion 3 don't open the Browser/Inspector/Library windows. How Can I open them again? Thanks to all.

    1) Quit Motion.
    2) Navigate to User/Library/Preferences.
    3) Locate com.apple.motion.plist and delete it.

  • BIOS doesn't let me boot from CD drive.

    HI,
    Interesting problem, that I just can't seem to fix.  I have a MSI K8N Neo2 and for some reason I can no longer boot from the CD drive.  I have gone into the BIOS and set the optical drive as the first boot device and then saved the settings.  When I boot the system, the drive runs, but it just skips on by and boots from the HD.  Any ideas?

    Enlighten us
    It may help others 

  • Closing the browser in InfoView doesn't log the user off.

    In Business Objects XI R2 Infoview, closing the browser in InfoView doesn't log the user off no matter how you answer the subsequent popup question "A window has closed. Log off as well?" Is there a fix for this somewhere?

    hi,
    In InfoView, with Performance Management installed, user sessions fail to be released immediately when the Log Off button is clicked.
    If you click the logoff button in Infoview and watch the address bar you will notice that it actually goes to another page called default.htm. It does this really fast. That page is located at C:\Program Files\Business Objects\Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\InfoView. Remove both the default.htm and index.html and reboot your Tomcat server. Open a browser and go to Infoview. Once you have gotten in to Infoview click the log off button. You will get and error from the tomcat server and that is because the page does not exist anymore. If you look in CMS under servers and CMS you will also notice it dropped the session as well. So if you create another Default.htm page of your own and just redirect to another page it all should work.
    However I did notice an interesting ADAPT in CHF15 :-
    http://support.businessobjects.com/CommunityCS/FilesAndUpdates/boxir2_en_chf15_readme.pdf
    ADAPT00576483 Patch ID: 39,216,665
    Also did u do any customization setting before ?

  • My safari sometimes keeps asking me to log into the "Newcastle area" and doesn't let me browse any pages ? Why and how do I fix it ?

    My safari sometimes asking me to log into the "Newcastle area" and doesn't let me browse any pages ? Why and how do I fix it ?

    Try this:
    With Safari open type command + option + E - all three keys together.
    Next go to Safari in the menu bar, and select Reset Safari,

  • Hi, i downloaded the creative suite and installed the trial versions of the programs (Photoshop etc.). when i try to insert the alphanumeric code to set it regularly operative it doesn't let me digit letters so that the code lies incomplete and the obtain

    hi, i downloaded the creative suite and installed the trial versions of the programs (Photoshop etc.). when i try to insert the alphanumeric code to set it regularly operative it doesn't let me digit letters so that the code lies incomplete and the obtainment of the licence fails. how can i solve this disfunction?

    The alpha numeric code is the redemption code which needs to redeemed by following the steps in http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    This shall help you to use the CC .
    Regards
    Rajshree

  • Any time I try to down   download something from torrents an add fro MacKeeper pops up. It then doesn't let me complete the installation. so I have neither MacKeeper nor anything from Torrents. How do I stop the MacKeeper ad from popping up?

    Any time I try to down load something from Torrents an ad for MacKeeper pops up. It then doesn't let me down load it to my computer so I have neither MacKeeper nor anything from Torrents. It will not let me access the the client Transmission. How do I stop it from popping up and blocking my access to torrents?
    Thank you.

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of it have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Bluetooth SerialATA Fonts 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB 'com.adobe.AAM.Updater-1.0 com.adobe.AAM.Updater-1.0 com.adobe.AdobeCreativeCloud com.adobe.CS4ServiceManager com.adobe.CS5ServiceManager com.adobe.fpsaud com.adobe.SwitchBoard com.adobe.SwitchBoard com.apple.aelwriter com.apple.AirPortBaseStationAgent com.apple.FolderActions.enabled com.apple.installer.osmessagetracing com.apple.mrt.uiagent com.apple.ReportCrash.Self com.apple.rpmuxd com.apple.SafariNotificationAgent com.apple.usbmuxd com.citrixonline.GoToMeeting.G2MUpdate com.google.keystone.agent com.google.keystone.daemon com.microsoft.office.licensing.helper com.oracle.java.Helper-Tool com.oracle.java.JavaUpdateHelper com.oracle.java.JavaUpdateHelper org.macosforge.xquartz.privileged_startx org.macosforge.xquartz.privileged_startx org.macosforge.xquartz.startx' '879294308 4071182229 461455494 3627668074 1083382502 1274181950 1855907737 2758863019 1848501757 464843899 3694147963 1233118628 2456546649 2806998573 2778718105 2636415542 842973933 2051385900 3301885676 891055588 998894468 695903914 1443423563 4136085286 523110921 2883943871 3873345487' 51 5120 files 4 );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/faceb/s/(at\.)[^.]+/\1NAME/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[46]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: (E[^m]|[^EO])|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<10) print "com.apple.";} ' ' { sub(/ :/,"");print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:.+//p ' '/^root$/p' ' !/^\/[AD]|\/Contents\/.+\/Contents\//&&/\/(Lib|usr).+\/(.+\.framework|Contents|Info\.plist|Resources|Versions)$/ { n++;sub(/\/Info\.plist$/,"");sub(/\/(Content|Resource|Version)s(\/.+)?/,"");print|"sort|uniq";} END { if(n<1100) print "/System/";} ' '/\.dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { split("'"${p[41]}"'",b);split("'"${p[42]}"'",c);for(i in b) print b[i]".plist\t"c[i];if(n<500) print "Launch";} ' ' /^\/(Ap|Dev|Inc|Prev)/d;p;' 's/Pr.+n //p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&& $3!~/(255\.){3}0/)||(/v6:/&&$2!~/A/) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"cksum "F|getline C;split(C, A);C="checksum "A[1];"file -b "F|getline T;if(T~/^Apple b/) { f="";l=0;while("PlistBuddy -c Print "F|getline g) { l++;if(l<=L) f=f"\n   "g;};};if(T!~/^(AS.+ (En.+ )?text(, with v.+)?$|(Bo|PO).+ sh.+ text ex|XM)/) F=F" ("T", "C")";else F=F" ("C")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9|"sort|uniq";} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */   /;' ' s/^.+ |\(.+\)$//g;p ' '/\.(appex|pluginkit)\/Contents\/Info\.plist$/p' ' /2/{print "WARN"};/4/{print "CRITICAL"};' ' /EVHF|MACR|^s/d;s/^.+: //p;' ' $3~/^[1-9][0-9]{0,2}(\.[1-9][0-9]{0,2}){2}$/ { i++;n=n"\n"$1"\t"$3;} END { if(i>1) print n;} ' ' s/:[^:]+$//;s/ +([0-9]+)(.+)/\2 x\1/p;' ' { gsub(/[()"]/,"",$3);if(!$3) $3="N/A";print $3;} ' ' /es: ./{ s/^.+://;b0'$'\n'' };/^ +C.+ted: +[NY]/H;/:$/b0'$'\n'' d;:0'$'\n'' x;/: +N/d;s/\n.+//p;' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps crontab iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl smcDiagnose sysctl\ -n defaults\ read stat lsbom 'mdfind -onlyin /' ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' pluginkit scutil dtrace profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil lsof test osascript\ -e netstat mdls );S1() { printf kMDItemContentTypeTree=com.apple.$1'|sort';};S2() { printf 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :'$1'" {} \;|uniq';};c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" "`S2 CFBundleDisplayName`" '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '-F \$Message -k Sender kernel -k Message CSeq "I/O e"|sort|uniq -c' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$(RefProc): \$Message' -k Sender Req 'fsev|kern|launchd' -k RefProc Rne 'Aq|WebK' -k Message Rne '08012|Goog|ksadm|probe|Roame|SMC:|smcD|sserti|suhel| VALI|ver-r|xpma' -k Message Req 'abn|bad |Beac|caug|corru|dead[^bl]|FAIL|fail|GPU |hfs: Ru|idle ex|inval|jnl:|last value [1-9]|NVDA\(|pagin|pci pa|proc: t|Roamed|rror|SL|TCON|Throttli|tim(ed? ?|ing )o|WARN' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '/S*/*/Ca*/*xpc* >&- ||echo No' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' "`S1 bundle`" "`S1 mach-o-dylib`" `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" -m 'L*/{Con*/*/Data/L*/,}Pref* -type f -size 0c -name *.plist.???????|wc -l' kern.memorystatus_vm_pressure_level '3>&1 >&- 2>&3' " -F '\$Time \$Message' -k Sender kernel -k Message CSeq 'n Cause: -' " -i '-app Safari UserStyleSheetEnabled' -name\ kMDItem${p[35]} "`S2 ${p[35]}`" );N1=${#c2[@]};for j in {0..10};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files I/O\ errors 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents XPC\ cache Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors App\ extensions Lockfiles Memory\ pressure SMC Shutdowns Nets Stylesheet );N3=${#l[@]};for i in {0..3};do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};A'$((7+i))'() { v=` eval sudo "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};';done;A9(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "${s[63]}"<<<"$v"`&&C1 1 $1;};for i in 1 2 7 8;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 0 $((N1+8)) 71 $((N3+3));D13 1 10 7 9;D13 1 11 8 10;B1&&D73 19 53 67 55;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D13 5 5 69 1;D13 5 54 30 56;D23 5 14 12 14;D22 6 36 13 15;D22 20 52 66 54;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D82 35 49 61 51;D82 11 17 17 20;for i in 0 1;do D82 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A8 18 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 24 22 29;B7 12;B2 14;A4 39 57 70 14;B2 15;B6 14 15 4;C3 29;A1 24 23 32;B7 13;C3 30;B3 4 0 65;A3 14 6 32 0;B4 0 16 11;A1 26 50 64;B7 16;C3 52;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D73 21 0 32 19;D73 10 42 32 40;D82 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 20 32 25;D22 0 $((N1+10)) 51 32;D13 4 8 41 6;D12 21 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 38 55 68 57;D23 33 34 42 37;B1&&D83 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 10 42 32 41;D13 37 2 48 43;A1 4 3 60;B2 30;A1 4 58 60;B2 31;B6 30 31 4;C3 5;D12 21 56 35 58;D12 21 48 49 49;B3 4 22 57;A1 21 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D12 4 51 32 53;D23 22 9 37 7;A9;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • HT5622 I don't get why my Apple ID keeps saying this device is already associated with an Apple ID and something about 90 days but also it doesn't let me download any of my pre orders when available it has happened to me twice and my past purchases help m

    I don't get why my Apple ID keeps saying this device is already associated with an Apple ID and something about 90 days but also it doesn't let me download any of my pre orders when available it has happened to me twice and my past purchases can someone contact me and give me some help sorting this out
    Much appreciated
    <Email Edited by Host>

    Hi there
    I'm getting a similar problem with my Macbook Pro. itunes match was working fine until two days ago when i created another 'user id' for the laptop and then an itunes account for that user under their profile. Now i cant turn on itunes match on my itunes under my user account. Contacted Apple today who said to use the Express Lane and email the problem and they might be able to make an 'exception' on the account. Otherwise I'll have to wait 88 days to access a lot of my music on the macbook pro. itunes match is still working on the iphone 4S and ipad2.
    Can anyone help? The only thought was too re-stream the laptop. Ive already tried deauthorising the other user but it made no difference.
    Thanks
    Jules

  • HAL doesn't recognize my ext. drive with 1500GB, the 500GB one works

    Hi there
    Some days ago I bought a 1500GB external harddrive, but after plugin it in via USB, it doesn't appear in my file manager. I tested it with thunar and pcmanfm, with both it didn't work. I don't think, that it's their fault, I think HAL doesn't like my new drive. My older one with 500GB is automounted as it should be. And I also don't think, that its a hardware issue, because in an ubuntu live-session it works with both harddrives.
    This is how the two drives are partitioned
    Disk /dev/sdb: 500.1 GB, 500107862016 bytes
    255 heads, 63 sectors/track, 60801 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x0008941c
    Device Boot Start End Blocks Id System
    /dev/sdb1 1 60801 488384001 83 Linux
    Disk /dev/sdc: 1500.3 GB, 1500301910016 bytes
    255 heads, 63 sectors/track, 182401 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x0004aa3c
    Device Boot Start End Blocks Id System
    /dev/sdc1 1 182401 1465136001 83 Linux
    As you can see, no difference here. The drive with 1500GB has xfs as filesystem, the 500GB has jfs, but that isn't the reason, I tried many filesystems on the 1500GB one and it didn't work with all of them
    In the AUR, there appeared a new packaged called devicekit and I thought, that this might spit out some helpful informations. I used the command "devkit -m"
    1500GB:
    action=add @ 10:14:29.876418
    device: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1
    subsystem: usb
    device file: /dev/bus/usb/001/007
    symlink: /dev/char/189:6
    properties:
    TYPE=0/0/0
    DEVNAME=/dev/bus/usb/001/007
    DEVLINKS=/dev/char/189:6
    BUSNUM=001
    UDEV_LOG=0
    MINOR=6
    ACTION=add
    PRODUCT=152d/2336/100
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb1/1-1
    DEVICE=/proc/bus/usb/001/007
    MAJOR=189
    SUBSYSTEM=usb
    DEVTYPE=usb_device
    DEVNUM=007
    SEQNUM=1668
    action=add @ 10:14:29.945265
    device: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0
    subsystem: usb
    device file: (none)
    properties:
    TYPE=0/0/0
    INTERFACE=8/6/80
    UDEV_LOG=0
    ACTION=add
    PRODUCT=152d/2336/100
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0
    DEVICE=/proc/bus/usb/001/007
    SUBSYSTEM=usb
    DEVTYPE=usb_interface
    MODALIAS=usb:v152Dp2336d0100dc00dsc00dp00ic08isc06ip50
    SEQNUM=1669
    action=add @ 10:14:29.947723
    device: /sys/class/scsi_host/host4
    subsystem: scsi_host
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/scsi_host/host4
    SUBSYSTEM=scsi_host
    SEQNUM=1670
    action=add @ 10:14:29.952727
    device: /sys/class/usb_endpoint/usbdev1.7_ep81
    subsystem: usb_endpoint
    device file: /dev/usbdev1.7_ep81
    symlink: /dev/char/251:24
    properties:
    DEVNAME=/dev/usbdev1.7_ep81
    DEVLINKS=/dev/char/251:24
    UDEV_LOG=0
    MINOR=24
    ACTION=add
    DEVPATH=/class/usb_endpoint/usbdev1.7_ep81
    MAJOR=251
    SUBSYSTEM=usb_endpoint
    SEQNUM=1671
    action=add @ 10:14:29.978530
    device: /sys/class/usb_endpoint/usbdev1.7_ep02
    subsystem: usb_endpoint
    device file: /dev/usbdev1.7_ep02
    symlink: /dev/char/251:25
    properties:
    DEVNAME=/dev/usbdev1.7_ep02
    DEVLINKS=/dev/char/251:25
    UDEV_LOG=0
    MINOR=25
    ACTION=add
    DEVPATH=/class/usb_endpoint/usbdev1.7_ep02
    MAJOR=251
    SUBSYSTEM=usb_endpoint
    SEQNUM=1672
    action=add @ 10:14:29.986978
    device: /sys/class/usb_endpoint/usbdev1.7_ep00
    subsystem: usb_endpoint
    device file: /dev/usbdev1.7_ep00
    symlink: /dev/char/251:26
    properties:
    DEVNAME=/dev/usbdev1.7_ep00
    DEVLINKS=/dev/char/251:26
    UDEV_LOG=0
    MINOR=26
    ACTION=add
    DEVPATH=/class/usb_endpoint/usbdev1.7_ep00
    MAJOR=251
    SUBSYSTEM=usb_endpoint
    SEQNUM=1674
    action=add @ 10:14:29.992531
    device: /sys/class/usb_device/usbdev1.7
    subsystem: usb_device
    device file: /dev/usbdev1.7
    symlink: /dev/char/189:6
    properties:
    DEVNAME=/dev/usbdev1.7
    DEVLINKS=/dev/char/189:6
    UDEV_LOG=0
    MINOR=6
    ACTION=add
    DEVPATH=/class/usb_device/usbdev1.7
    MAJOR=189
    SUBSYSTEM=usb_device
    SEQNUM=1673
    action=add @ 10:14:34.967982
    device: /sys/class/bdi/8:32
    subsystem: bdi
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/bdi/8:32
    SUBSYSTEM=bdi
    SEQNUM=1679
    action=add @ 10:14:35.048659
    device: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/host4/target4:0:0/4:0:0:0
    subsystem: scsi
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/host4/target4:0:0/4:0:0:0
    SUBSYSTEM=scsi
    DEVTYPE=scsi_device
    MODALIAS=scsi:t-0x00
    SEQNUM=1675
    action=add @ 10:14:35.049786
    device: /sys/class/scsi_disk/4:0:0:0
    subsystem: scsi_disk
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/scsi_disk/4:0:0:0
    SUBSYSTEM=scsi_disk
    SEQNUM=1676
    action=add @ 10:14:35.051976
    device: /sys/class/scsi_device/4:0:0:0
    subsystem: scsi_device
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/scsi_device/4:0:0:0
    SUBSYSTEM=scsi_device
    SEQNUM=1680
    action=add @ 10:14:35.060884
    device: /sys/class/scsi_generic/sg3
    subsystem: scsi_generic
    device file: /dev/sg3
    symlink: /dev/char/21:3
    properties:
    DEVNAME=/dev/sg3
    DEVLINKS=/dev/char/21:3
    UDEV_LOG=0
    MINOR=3
    ACTION=add
    DEVPATH=/class/scsi_generic/sg3
    MAJOR=21
    SUBSYSTEM=scsi_generic
    SEQNUM=1681
    action=add @ 10:14:35.067457
    device: /sys/class/bsg/4:0:0:0
    subsystem: bsg
    device file: /dev/bsg/4:0:0:0
    symlink: /dev/char/254:3
    properties:
    DEVNAME=/dev/bsg/4:0:0:0
    DEVLINKS=/dev/char/254:3
    UDEV_LOG=0
    MINOR=3
    ACTION=add
    DEVPATH=/class/bsg/4:0:0:0
    MAJOR=254
    SUBSYSTEM=bsg
    SEQNUM=1682
    action=add @ 10:14:35.105877
    device: /sys/block/sdc
    subsystem: block
    device file: /dev/sdc
    symlink: /dev/block/8:32
    symlink: /dev/disk/by-id/usb-ST315003_41AS_908888888888-0:0
    symlink: /dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    properties:
    ID_SERIAL_SHORT=908888888888
    DEVNAME=/dev/sdc
    DEVLINKS=/dev/block/8:32 /dev/disk/by-id/usb-ST315003_41AS_908888888888-0:0 /dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    ID_MODEL=41AS
    ID_SERIAL=ST315003_41AS_908888888888-0:0
    ID_INSTANCE=0:0
    UDEV_LOG=0
    ID_PATH=pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    MINOR=32
    ACTION=add
    ID_VENDOR=ST315003
    ID_BUS=usb
    DEVPATH=/block/sdc
    ID_TYPE=disk
    ID_REVISION=0100
    MAJOR=8
    SUBSYSTEM=block
    DEVTYPE=disk
    SEQNUM=1677
    action=add @ 10:14:35.144133
    device: /sys/block/sdc/sdc1
    subsystem: block
    device file: /dev/sdc1
    symlink: /dev/block/8:33
    symlink: /dev/disk/by-id/usb-ST315003_41AS_908888888888-0:0-part1
    symlink: /dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0-part1
    symlink: /dev/disk/by-uuid/8a60b3b7-50bc-48a7-b3ba-aa0f13f32156
    symlink: /dev/disk/by-label/1500GB
    properties:
    ID_SERIAL_SHORT=908888888888
    ID_FS_LABEL=1500GB
    ID_FS_LABEL_ENC=1500GB
    DEVNAME=/dev/sdc1
    DEVLINKS=/dev/block/8:33 /dev/disk/by-id/usb-ST315003_41AS_908888888888-0:0-part1 /dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0-part1 /dev/disk/by-uuid/8a60b3b7-50bc-48a7-b3ba-aa0f13f32156 /dev/disk/by-label/1500GB
    ID_MODEL=41AS
    ID_SERIAL=ST315003_41AS_908888888888-0:0
    ID_INSTANCE=0:0
    UDEV_LOG=0
    ID_PATH=pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    MINOR=33
    ACTION=add
    ID_VENDOR=ST315003
    ID_BUS=usb
    DEVPATH=/block/sdc/sdc1
    ID_TYPE=disk
    ID_REVISION=0100
    ID_FS_USAGE=filesystem
    MAJOR=8
    SUBSYSTEM=block
    ID_FS_TYPE=xfs
    ID_FS_UUID=8a60b3b7-50bc-48a7-b3ba-aa0f13f32156
    DEVTYPE=partition
    SEQNUM=1678
    ID_FS_UUID_ENC=8a60b3b7-50bc-48a7-b3ba-aa0f13f32156
    500GB:
    action=add @ 10:13:40.628381
    device: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-2
    subsystem: usb
    device file: /dev/bus/usb/001/006
    symlink: /dev/char/189:5
    properties:
    TYPE=0/0/0
    DEVNAME=/dev/bus/usb/001/006
    DEVLINKS=/dev/char/189:5
    BUSNUM=001
    UDEV_LOG=0
    MINOR=5
    ACTION=add
    PRODUCT=1058/910/106
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb1/1-2
    DEVICE=/proc/bus/usb/001/006
    MAJOR=189
    SUBSYSTEM=usb
    DEVTYPE=usb_device
    DEVNUM=006
    SEQNUM=1653
    action=add @ 10:13:40.700691
    device: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-2/1-2:1.0
    subsystem: usb
    device file: (none)
    properties:
    TYPE=0/0/0
    INTERFACE=8/6/80
    UDEV_LOG=0
    ACTION=add
    PRODUCT=1058/910/106
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb1/1-2/1-2:1.0
    DEVICE=/proc/bus/usb/001/006
    SUBSYSTEM=usb
    DEVTYPE=usb_interface
    MODALIAS=usb:v1058p0910d0106dc00dsc00dp00ic08isc06ip50
    SEQNUM=1654
    action=add @ 10:13:40.701744
    device: /sys/class/scsi_host/host3
    subsystem: scsi_host
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/scsi_host/host3
    SUBSYSTEM=scsi_host
    SEQNUM=1655
    action=add @ 10:13:40.702982
    device: /sys/class/usb_endpoint/usbdev1.6_ep81
    subsystem: usb_endpoint
    device file: /dev/usbdev1.6_ep81
    symlink: /dev/char/251:21
    properties:
    DEVNAME=/dev/usbdev1.6_ep81
    DEVLINKS=/dev/char/251:21
    UDEV_LOG=0
    MINOR=21
    ACTION=add
    DEVPATH=/class/usb_endpoint/usbdev1.6_ep81
    MAJOR=251
    SUBSYSTEM=usb_endpoint
    SEQNUM=1656
    action=add @ 10:13:40.705026
    device: /sys/class/usb_endpoint/usbdev1.6_ep02
    subsystem: usb_endpoint
    device file: /dev/usbdev1.6_ep02
    symlink: /dev/char/251:22
    properties:
    DEVNAME=/dev/usbdev1.6_ep02
    DEVLINKS=/dev/char/251:22
    UDEV_LOG=0
    MINOR=22
    ACTION=add
    DEVPATH=/class/usb_endpoint/usbdev1.6_ep02
    MAJOR=251
    SUBSYSTEM=usb_endpoint
    SEQNUM=1657
    action=add @ 10:13:40.709720
    device: /sys/class/usb_endpoint/usbdev1.6_ep00
    subsystem: usb_endpoint
    device file: /dev/usbdev1.6_ep00
    symlink: /dev/char/251:23
    properties:
    DEVNAME=/dev/usbdev1.6_ep00
    DEVLINKS=/dev/char/251:23
    UDEV_LOG=0
    MINOR=23
    ACTION=add
    DEVPATH=/class/usb_endpoint/usbdev1.6_ep00
    MAJOR=251
    SUBSYSTEM=usb_endpoint
    SEQNUM=1659
    action=add @ 10:13:40.719258
    device: /sys/class/usb_device/usbdev1.6
    subsystem: usb_device
    device file: /dev/usbdev1.6
    symlink: /dev/char/189:5
    properties:
    DEVNAME=/dev/usbdev1.6
    DEVLINKS=/dev/char/189:5
    UDEV_LOG=0
    MINOR=5
    ACTION=add
    DEVPATH=/class/usb_device/usbdev1.6
    MAJOR=189
    SUBSYSTEM=usb_device
    SEQNUM=1658
    action=add @ 10:13:45.659241
    device: /sys/class/bdi/8:16
    subsystem: bdi
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/bdi/8:16
    SUBSYSTEM=bdi
    SEQNUM=1664
    action=add @ 10:13:45.680716
    device: /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-2/1-2:1.0/host3/target3:0:0/3:0:0:0
    subsystem: scsi
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb1/1-2/1-2:1.0/host3/target3:0:0/3:0:0:0
    SUBSYSTEM=scsi
    DEVTYPE=scsi_device
    MODALIAS=scsi:t-0x00
    SEQNUM=1660
    action=add @ 10:13:45.681808
    device: /sys/class/scsi_disk/3:0:0:0
    subsystem: scsi_disk
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/scsi_disk/3:0:0:0
    SUBSYSTEM=scsi_disk
    SEQNUM=1661
    action=add @ 10:13:45.695199
    device: /sys/class/scsi_device/3:0:0:0
    subsystem: scsi_device
    device file: (none)
    properties:
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/class/scsi_device/3:0:0:0
    SUBSYSTEM=scsi_device
    SEQNUM=1665
    action=add @ 10:13:45.703093
    device: /sys/class/scsi_generic/sg2
    subsystem: scsi_generic
    device file: /dev/sg2
    symlink: /dev/char/21:2
    properties:
    DEVNAME=/dev/sg2
    DEVLINKS=/dev/char/21:2
    UDEV_LOG=0
    MINOR=2
    ACTION=add
    DEVPATH=/class/scsi_generic/sg2
    MAJOR=21
    SUBSYSTEM=scsi_generic
    SEQNUM=1666
    action=add @ 10:13:45.709314
    device: /sys/class/bsg/3:0:0:0
    subsystem: bsg
    device file: /dev/bsg/3:0:0:0
    symlink: /dev/char/254:2
    properties:
    DEVNAME=/dev/bsg/3:0:0:0
    DEVLINKS=/dev/char/254:2
    UDEV_LOG=0
    MINOR=2
    ACTION=add
    DEVPATH=/class/bsg/3:0:0:0
    MAJOR=254
    SUBSYSTEM=bsg
    SEQNUM=1667
    action=add @ 10:13:45.773375
    device: /sys/block/sdb
    subsystem: block
    device file: /dev/sdb
    symlink: /dev/block/8:16
    symlink: /dev/disk/by-id/usb-WD_5000AAK_External_574341505730373832303839-0:0
    symlink: /dev/disk/by-path/pci-0000:00:1d.7-usb-0:2:1.0-scsi-0:0:0:0
    properties:
    ID_SERIAL_SHORT=574341505730373832303839
    DEVNAME=/dev/sdb
    DEVLINKS=/dev/block/8:16 /dev/disk/by-id/usb-WD_5000AAK_External_574341505730373832303839-0:0 /dev/disk/by-path/pci-0000:00:1d.7-usb-0:2:1.0-scsi-0:0:0:0
    ID_MODEL=5000AAK_External
    ID_SERIAL=WD_5000AAK_External_574341505730373832303839-0:0
    ID_INSTANCE=0:0
    UDEV_LOG=0
    ID_PATH=pci-0000:00:1d.7-usb-0:2:1.0-scsi-0:0:0:0
    MINOR=16
    ACTION=add
    ID_VENDOR=WD
    ID_BUS=usb
    DEVPATH=/block/sdb
    ID_TYPE=disk
    ID_REVISION=1.06
    MAJOR=8
    SUBSYSTEM=block
    DEVTYPE=disk
    SEQNUM=1662
    action=add @ 10:13:45.839326
    device: /sys/block/sdb/sdb1
    subsystem: block
    device file: /dev/sdb1
    symlink: /dev/block/8:17
    symlink: /dev/disk/by-id/usb-WD_5000AAK_External_574341505730373832303839-0:0-part1
    symlink: /dev/disk/by-path/pci-0000:00:1d.7-usb-0:2:1.0-scsi-0:0:0:0-part1
    symlink: /dev/disk/by-uuid/442a9a4c-ffd4-4d7f-b966-8c2935f7928f
    symlink: /dev/disk/by-label/500GB
    properties:
    ID_SERIAL_SHORT=574341505730373832303839
    ID_FS_LABEL=500GB
    ID_FS_LABEL_ENC=500GB
    DEVNAME=/dev/sdb1
    DEVLINKS=/dev/block/8:17 /dev/disk/by-id/usb-WD_5000AAK_External_574341505730373832303839-0:0-part1 /dev/disk/by-path/pci-0000:00:1d.7-usb-0:2:1.0-scsi-0:0:0:0-part1 /dev/disk/by-uuid/442a9a4c-ffd4-4d7f-b966-8c2935f7928f /dev/disk/by-label/500GB
    ID_MODEL=5000AAK_External
    ID_SERIAL=WD_5000AAK_External_574341505730373832303839-0:0
    ID_INSTANCE=0:0
    UDEV_LOG=0
    ID_PATH=pci-0000:00:1d.7-usb-0:2:1.0-scsi-0:0:0:0
    MINOR=17
    ACTION=add
    ID_VENDOR=WD
    ID_BUS=usb
    DEVPATH=/block/sdb/sdb1
    ID_TYPE=disk
    ID_REVISION=1.06
    ID_FS_USAGE=filesystem
    MAJOR=8
    SUBSYSTEM=block
    ID_FS_TYPE=jfs
    ID_FS_UUID=442a9a4c-ffd4-4d7f-b966-8c2935f7928f
    DEVTYPE=partition
    SEQNUM=1663
    ID_FS_UUID_ENC=442a9a4c-ffd4-4d7f-b966-8c2935f7928f
    I hope someone finds some useful informations in these lines!
    If you have some other test tools or command lines or whatever I could do to give you more or better informations, please let me know!
    p.s.: Right in this moment I was thinking about recompiling HAL with less patches, but even Arch uses many, so I'm not really sure which one or which combination could even be the reason. But I'll try it without any patch now right after posting this thread.

    I'm having a problem kind of like this. I have a 1TB Western Digital MyBook. It has the option of running in RAID0 or RAID1. I have it in RAID0 for more storage. My computer seems to find it, but it doesn't mount and it doesn't show up in /dev/.
    Here's what dmesg says when I plug it in
    usb 1-2: new high speed USB device using ehci_hcd and address 9
    usb 1-2: configuration #1 chosen from 1 choice
    input: Western Digital My Book as /class/input/input9
    generic-usb 0003:1058:0905.0004: input,hidraw3: USB HID v1.11 Device [Western Digital My Book] on usb-0000:00:1d.7-2/input1
    Initializing USB Mass Storage driver...
    scsi2 : SCSI emulation for USB Mass Storage devices
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    usb-storage: device found at 9
    usb-storage: waiting for device to settle before scanning
    scsi 2:0:0:0: Enclosure WD My Book Device 104a PQ: 0 ANSI: 4
    scsi 2:0:0:0: Attached scsi generic sg2 type 13
    usb-storage: device scan complete
    tail /var/log/messages.log gives
    Feb 17 18:33:57 sage usb 1-2: new high speed USB device using ehci_hcd and address 9
    Feb 17 18:33:57 sage usb 1-2: configuration #1 chosen from 1 choice
    Feb 17 18:33:57 sage input: Western Digital My Book as /class/input/input9
    Feb 17 18:33:57 sage generic-usb 0003:1058:0905.0004: input,hidraw3: USB HID v1.11 Device [Western Digital My Book] on usb-0000:00:1d.7-2/input1
    Feb 17 18:33:57 sage Initializing USB Mass Storage driver...
    Feb 17 18:33:57 sage scsi2 : SCSI emulation for USB Mass Storage devices
    Feb 17 18:33:57 sage usbcore: registered new interface driver usb-storage
    Feb 17 18:33:57 sage USB Mass Storage support registered.
    Feb 17 18:34:02 sage scsi 2:0:0:0: Enclosure WD My Book Device 104a PQ: 0 ANSI: 4
    Feb 17 18:34:02 sage scsi 2:0:0:0: Attached scsi generic sg2 type 13
    Feb 17 18:34:02 sage load-modules.sh: 'scsi:t-0x0d' is not a valid module or alias name
    The last line says that it can't find the "scsi:t-0x0d" module, but I can't find what I would need to enable to get that module. I can't find any related modules in the standard arch modules either. I'm using a custom kernel and I can't boot the standard arch kernel to test because it says something like "/dev/sda5" cannot be found and then it panics (the same startup options work fine on my custom kernel, the standard flips out for some reason).

  • How to determine the users Browser (IE or WML)

    is there a way to programatically determine what the users browser is?
    I have a webdynpro that can run on both Blackberry (WML browser) and IE via the portal.
    I need a way to identify the users browser from Webdynpro Java.

    Yes we currently are using 2 URLs to launch the apps, however, we wanted to see if we could just give 1 URL out to the end user....so they wouldn't have to remember which one to go to for Blackberry and which one to go to for IE.
    I have a solution working....I just need to find a way to detect the client without using the TaskBinder.
    Let me know if you find another way ....

  • LXDE panel menu does not display in regular user mode

    Hello All,
    Running arch on eeepc 1000HE.  Running openbox with lxde.  The menu on the panel does not display when in a regular user mode, but does display when in su mode.  The button for the menu displays but when pressed the menu is blank.  It seemed as if the /usr/share/application file was not being read properly so I changed the owner to my user to see if it was a permission issue.  That did not help.  I have not yet seen a problem like this on the web.
    Let me know,
    Brad

    grey wrote:I don't think the LXDE menu can be edited - it's generated autmatically from the desktop files.
    It can. The configuration is in /etc/xdg/menus/lxde-applications.menu. You can also copy that file into ~/.config/menus to keep your modifications local.
    This brings me to two suggestions for you brahan: Check if you have a ~/.config/menus/lxde-applications.menu, and delete it if you do. Then restart lxpanel. The other thing, check if you have /etc/xdg/menus/lxde-applications.menu and what are it's permissions.

  • Can I somehow let the user select multiple images from device?

    Is there any way to let the user select multiple images from the device media gallery?
    The CameraRoll only selects one image. And the FileRefernceList doesn't show thumbnails (so you have no idea what you are selecting).
    Is there a way, or maybe some sort of workaround, for this? Is there a way to maybe "read" the users gallery on the SD-card and output your own gallery that the user can select from?
    I'm developing towards both Android and iOS so cross-plattform is a must.
    Thank you guys

    +1 to this question. I'm looking to do the same thing but haven't had any luck yet.

  • I'm trying to make a purchase in some game, but iTunes store doesn't let me to make this purchase.

    There is a game call game of war I'm trying to buy something in this game but my iTunes store doesn't let me to make this purchase. i need a help for this.

    What do you mean by 'doesn't let me' ? What happens when you try to do the IAP, if you are getting an error message then what does it say ?
    If you are getting a message to contact iTunes Support then you will need to do so (these are user-to-user forums) :
    - go to http://www.apple.com/support/itunes/ww
    - click on your country's flag
    - click on the Contact Support at the bottom of the left-hand column
    - click on Contact iTunes Store Support on the right-hand side of the page
    - then Purchases, Billing & Redemption
    If it's a different problem ... ?

  • Apple doesn't allow Mail users to open links with Chrome

    Apple doesn't allow Mail users to open links with Chrome, Chrome is the deafult browser and it seems that there is a blockage for 3rd party browser, not very nice !!!!!!

    Apple doesn't allow Mail users to open links with Chrome, Chrome is the deafult browser and it seems that there is a blockage for 3rd party browser, not very nice !!!!!!

Maybe you are looking for

  • How do I find and extract images in from email

    Over the years, plenty of people have shared pictures with me via email.  I want to find all those pictures and make copies to put into aperture.  I don't want to grab all the pictures that are .gifs that are icons from applications or signature etc.

  • 24" LED Cinema display doesn't display screen saver.

    I have my MacBook Pro set to display a screen saver- (flurry). The MBP alone functions as desired. When plugged into the Cinema display, which is 90% of the time, it has only appeared maybe once or twice since purchased, even after Snow Leopard was i

  • Standard Manager Not Picking Up Request

    Hi , Standard Manager is not picking up the requests.All the request remains in Pending Normal State. If I exclude the same request and assign it to another Manager , It is running successfully. Note Read/Followed : 555081.1,1304305.1,144921.1 ,15814

  • Items on desktop

    Hello, I recently purchased an imac and when I attached a digital camera through the usb there was not an icon on the desktop for the camera. The only way I can get to the photos is through iphoto which I do not want to use. On my old mac whenever I

  • Facebook will not load on my macbook pro

    Facebook will not load on my macbook pro in any browser in any location. HELP! This has been going on for 5 months. I cannot take it anymore!