External numpad and possible debouncing issue

I'm using an external numpad for laptops that don't have one built-in. The device uses independent numlock design, which means if the host numlock state is different from its own, it would quickly toggle numlock on and off as you type. When using this thing under Linux desktop, there appears to some strong debouncing behavior and quick double taps get recognized as one.
Below is the xev sequence if I double tap Num_7 quickly. It's basically NumLock - KP_7 - NumLock, so only one KP_7 stroke gets registered.
MappingNotify event, serial 37, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 8, count 248
KeyPress event, serial 37, synthetic NO, window 0x3e00001,
root 0xe5, subw 0x0, time 170122, (-526,30), root:(757,358),
state 0x0, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x3e00001,
root 0xe5, subw 0x0, time 170129, (-526,30), root:(757,358),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
KeyPress event, serial 38, synthetic NO, window 0x3e00001,
root 0xe5, subw 0x0, time 170137, (-526,30), root:(757,358),
state 0x10, keycode 79 (keysym 0xffb7, KP_7), same_screen YES,
XLookupString gives 1 bytes: (37) "7"
XmbLookupString gives 1 bytes: (37) "7"
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x3e00001,
root 0xe5, subw 0x0, time 170153, (-526,30), root:(757,358),
state 0x10, keycode 79 (keysym 0xffb7, KP_7), same_screen YES,
XLookupString gives 1 bytes: (37) "7"
XFilterEvent returns: False
KeyPress event, serial 38, synthetic NO, window 0x3e00001,
root 0xe5, subw 0x0, time 170162, (-526,30), root:(757,358),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x3e00001,
root 0xe5, subw 0x0, time 170322, (-526,30), root:(757,358),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
Now double tap on the same key, but very slowly.  It's basically NumLock - KP_7 - NumLock - NumLock - KP_7 - NumLock, which is the expected behaivor.
MappingNotify event, serial 37, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 8, count 248
KeyPress event, serial 37, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 206609, (155,-52), root:(866,318),
state 0x0, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 206617, (155,-52), root:(866,318),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
KeyPress event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 206625, (155,-52), root:(866,318),
state 0x10, keycode 79 (keysym 0xffb7, KP_7), same_screen YES,
XLookupString gives 1 bytes: (37) "7"
XmbLookupString gives 1 bytes: (37) "7"
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 206657, (155,-52), root:(866,318),
state 0x10, keycode 79 (keysym 0xffb7, KP_7), same_screen YES,
XLookupString gives 1 bytes: (37) "7"
XFilterEvent returns: False
KeyPress event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 206665, (155,-52), root:(866,318),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
PropertyNotify event, serial 38, synthetic NO, window 0x4200001,
atom 0x19a (_NET_WM_ICON_GEOMETRY), time 206807, state PropertyNewValue
KeyRelease event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 206825, (155,-52), root:(866,318),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
PropertyNotify event, serial 38, synthetic NO, window 0x4200001,
atom 0x19a (_NET_WM_ICON_GEOMETRY), time 207060, state PropertyNewValue
KeyPress event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 209793, (155,-52), root:(866,318),
state 0x0, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 209801, (155,-52), root:(866,318),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
KeyPress event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 209809, (155,-52), root:(866,318),
state 0x10, keycode 79 (keysym 0xffb7, KP_7), same_screen YES,
XLookupString gives 1 bytes: (37) "7"
XmbLookupString gives 1 bytes: (37) "7"
XFilterEvent returns: False
PropertyNotify event, serial 38, synthetic NO, window 0x4200001,
atom 0x19a (_NET_WM_ICON_GEOMETRY), time 209824, state PropertyNewValue
KeyRelease event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 209849, (155,-52), root:(866,318),
state 0x10, keycode 79 (keysym 0xffb7, KP_7), same_screen YES,
XLookupString gives 1 bytes: (37) "7"
XFilterEvent returns: False
KeyPress event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 209857, (155,-52), root:(866,318),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 38, synthetic NO, window 0x4200001,
root 0xe5, subw 0x0, time 210017, (155,-52), root:(866,318),
state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
PropertyNotify event, serial 38, synthetic NO, window 0x4200001,
atom 0x19a (_NET_WM_ICON_GEOMETRY), time 210070, state PropertyNewValue
This problem is only limited to X. Under other TTYs it's working as expected, so the device is doing its job. Under X, I've tried Gnome and XFCE, both with the keyboard debouncing options turned off.
The issue does not appear if both the host and the device has numlock on. In that case the numpad would only send the pressed keys without numlock toggles, and no matter how fast I tap it gets picked up. It appears that only the numlock key triggers debouncing behavior.
What is messing with my keys and how do I turn it off?
Last edited by Balto (2015-02-08 07:38:30)

hi Roy,
are you trying to call Lync federated domains too from Cisco video network?
how did you configure TURN server at VCS Control?
please note that if you are configuring MRA on your topology you will need turn off TURN service at VCS Expressway. and I recommend you check again your firewall rules

Similar Messages

  • External drive and IGNORE OWNERSHIP issue

    So here at work we share an external drive where we ALL share the files. And a good bit of the time one of us tries to open or save a file and it saws one of several things like "access denied" or "you don't have the right privileges and you will not be able to save changes" Anyway if I go in and get info on the external drive and click the "ignore ownerships" box all seems to be well...for a while. BUT the drive will sporadically decide to UNCHECK that button. It's very annoying. Any FIX for this issues.
    Oh, I also have it "locked" which I assume means it can't be changed but that is not the case. Any help is appreciated Thanks.

    Sorry, I don't know anything about Silverlining -- I'm a moderator at the Bombich (CCC) forums. If Silverlining allows for attaching a post-cloning script ask the Silverlining developer/distributor. If not, ask for help (even though the script will be pretty simple you may well need some troubleshooting until it works perfectly) in one of the scripting forums (AppleScript or Unix), e.g. this one.
    Andreas

  • Western Digital External HD and Time Machine issues

    I have been using my 500 Gb Western Digital Passport drive for the past few months, though I purchased it almost a year ago. I had been using it as a back up drive using Time Machine, though I also put other files on it at times. Recently it had been having issues backing up, and now it hasn't been recognized by my Mac. It hasn't had this problem before and when I tried to repair it, I received this message:
    Verify and Repair volume “disk1s2”
    Checking Journaled HFS Plus volume.
    Invalid B-tree node size
    Volume check failed.
    Error: Filesystem verify or repair failed.
    I'm worried that I won't be able to retrieve the data. I also don't want to reformat the drive if I have any other options. Please let me know what I can do, thank you.
    (I'm also pretty sure that my drive is pretty much a goner and that I won't be able to retrieve my data).

    ReiNocturna wrote:
    Thank you, I'd seen some things about Disk Warrior and wasn't sure. I'll have to scrape money together I suppose.
    Here is an image of the issue I encountered: Problem.
    Yes, +*Invalid B-tree node size+* is one Disk Utility usually can't fix, but Disk Warrior often can.
    Disk Utility can detect it, but not Finder, so I guess I've got no hope unless I use Disk Warrior, and even then it's only a possibility.
    And so if I end up having to reformat the drive, I should probably use a different external for back-ups?
    Depends. If these are your only backups, that's safest. If you have secondary backups (see below), I'd be inclined to give it another chance.
    Any brands you recommend? (I'm getting tired of all these externals dying out on me, but then, technology does that sometimes. ;))
    A lot of folks say WD's are junk (including those at CarbonCopyCloner), and we do see a lot of reports here, but they also sell a lot of them, so it's hard to tell whether they really fail more often than other makes. But other folks say they've used them for years without undue problems.
    I've got a Seagate about 18 months old, and a LaCie Rugged (portable) about 6 months old; OWC and Iomega also seem to get good reviews.
    |
    I've learned over the years (mostly the hard way, of course ), never to trust my backups to a single app or piece of hardware: no app is perfect, and all hardware fails, sooner or later.
    Like many here, I keep both full Time Machine backups, plus a "bootable clone" on a separate external HD. I use CarbonCopyCloner, many use the similar SuperDuper. That gives me the best of both types of backups, plus of course a completely separate, independent backup.
    CCC is donationware; SD has a free version, but you need the paid one (about $30) to do updates instead of full replacements, or scheduling. Either is easily found via Google.
    And/or, see Kappy's post on Basic Backup, complete with links to the web sites of each product.

  • Reformat external HD and possibly partition for use with mac and pc.

    Hi. I’d really appreciate some advice.  I’m a new Mac (MacBook Pro mid 2012) user.  I’m trying to figure out how to use a new external HD (WD My Passport) that just arrived today in connection with a digital tv media player (NBOX V3) that I use to watch videos on my tv, which is in the NTFS format. The tv box works with a flash drive that I have, which I had to reformat as FAT32.  Since I tend to max out the storage on the flash drive I ordered this new hd to use as well. 
    When I went to reformat the new hd I didn’t see the FAT32 option. There are 4 Mac options, MS-DOS (FAT), and ExFAT to choose from.  I read that ExFAT would work with both mac and pc (since I’m using OS 10.8.4 and my pc is Windows 7).  I was excited about it too since I know that FAT32 has a 4gb limitation.  I reformatted as ExFat first on my Mac and then on my pc.  I tried both b/c I read conflicting comments about it not working when reformatting on the mac, but that it would work when done on the pc.  Both times I tested the newly formatted hd on the tv box and both times it failed to recognize the files. After the failures I wondered if it was even possible for the external hd to work with the tv box, or if it had something to do with the ExFat format.  So, I reformatted it on my pc to NTFS and then plugged it into the tv box, which works just fine.
    I could really use some advice.  I wish the hd had the FAT32 option.  I’m wondering about partitioning.  I really don’t know too much about it, but am wondering if this might be the answer to make everything work.  I would need everything to work from my mac b/c the pc belongs to my husband (which I’m welcome to use), but all of the files that I load are from my computer (not to mention I’m already “used to” my mac and now seem to fumble around using a pc).  This might sound dumb, but I was thinking that if I made 2 partitions (one that would work with my mac and one that would work with the tv box, maybe the FAT option?) then I could load files on the mac friendly partition and then transfer them to the tv box friendly partition.  I’m thinking it won’t work so I wanted to find out first, plus I’ve never partitioned anything before.  I also know that on another external hard drive that we have for the pc I’m not able to modify the files on it from my mac, although I can see them and extract them.  I’m thinking if I partition this new hd I’ll have the same problem with the partition that is formatted as FAT.
    Partitioning might not even be an option.  If anyone knows a way to make what I want to do work, then I would really appreciate the advice.  Thanks in advance.

    Digital tv media player (NBOX V3) - NTFS, FAT32/MSDOS
    Mac - HFS+, exFAT (formatted on a PC best), FAT32/MSDOS
    Windows PC - NTFS, exFAT, FAT32/MSDOS
    Problem is if you use FAT32/MSDOS your capped at 4GB sized files and can't use larger storage drives. The other formats have no problem.
    The Mac can't write NTFS without further software being installed like Paragon NTFS
    I usually try to stick with neutral formats, but if your NBOX V3 doesn't accept exFAT then your stuck.
    Perhaps you should see if there is a firmware update for it that will enable exFAT, then format the drive exFAT on the PC and you should be set.

  • CF10 Update 14 and possible memory issues

    One of my associates is complaining that since I applied the Coldfusion 10 Update 14 we are experiencing memory issues.  Has anyone else had issues with Update 14?
    Just a System Admin fighting the good fight!

    I’ll throw in that even if changing the JVM helped, it would still leave the question open as to whether/why Chad experienced a change in heap usage on solely updating CF.
    Chad, really? Nothing else changed? I just find that so odd. I’ve not yet heard about it (or seen it) being an issue. Of course, update 14 did do quite a bit: beyond bug fixes it also updated Tomcat. I would be surprised that that could lead to memory leaks (assuming that’s what this is, if really NOTHING else changed).
    What about the database you’re using?  Update 14 did change the JDBC drivers for Postgres. Are you using that DBMS?
    Just trying to think what else could contribute to this, if indeed nothing else changed for you.
    It is possible that something else changed, either in the config or coding (and you didn’t know it), or perhaps in the load against the server (I see that all the time: someone adds a new site, perhaps brought over from another server, and they assume “it doesn’t get much traffic”, but they don’t realize how heavily spiders and bots may hit that newly added  site, which could definitely put pressure on the heap whether from increased sessions, caching, and so on.)
    Of course, you can always uninstall the update easily, in the same CF Admin page where you install it. That would help you prove if that alone was it. (Just be sure to rebuild the connectors back to the version as per the CF update you would revert to. I don’t think it’s appropriate to run the update 14 connector with an earlier update.)
    Finally, FWIW, if you really wanted to go nuts, you could change CF to using Java 8. That’s another thing added in 14: support of 8. But to clear, it does not “change it” for you, so that’s not what happened here. But just as the two Carl’s proposed changing the  JVM to see if it “would help”, you could consider moving to Java 8. That’s all the more worth considering if indeed the issue is that something changed in your environment (config/code/load) and you simply do need more heap (in Java 7).
    Of course CF will use the same GC you have specified even if you update it to use 8, so you may need to make some changes to see a real impact. But for instance one thing Java 8 does by default is no longer use the permanent generation. That should have no effect on your your observed use of heap. Just saying that 8 is indeed different, and you never know if updating to it could help (or hurt. It’s so new that CF supports it in 10, and only to come in update 3 of 11, that there’s relatively little known experience about the combination.)
    Anyway, do let us know if you find more.
    /charlie

  • AI brushes and possible printing issues?

    Hello fellow creatives!
    I have a project that I am considering doing 100% in illustrator CS6 for Mac.  ( Three character illustrations ).
    The final files will be CMYK vector files.
    I will be drawing the illustrations in pencil.  Scanning the pencils in, and using my wacom cintiq to ink and color the illustrations in Adobe Illustrator using the illustrator inking and bristle brushes.
    The characters will be printed to be approximently 5 feet tall and 2 or 3 feet wide.
    Question:
    What do I need to keep in mind to make sure that the sign printer doesn't run into printing problems with the artwork?
    For instance:  Should I expand the apprearance of all of my brush strokes and gradients?  What else?
    Thank you in advance for your input?
    Best Regards,
    Bill

    How you export it is entirely up to you, but personally, I would do it as a PDF/X-1a:2001, Acrobat 4 (1.3), FOGRA39 file if you're in Europe. If you are not in Europe, then you may find that you need something other than FOGRA39. I do it like this because I can lock down the artwork and be confident that it's not really going to go wrong... but I understand print!
    However, doing it as an industry standard format doesn't allow you to be lazy about checking for errors. I have seen people go to print without checking white text on a coloured background and the text disappears on press. In some instances (which I won't cover here), white objects can be set to overprint on a coloured background which basically means that the white disappears when you go to print. It may look OK in an unflattened PDF, but as soon as it goes to print through a RIP, it disappears... this is why I say to look at the PDF in acrobat by checking each page you create with the Output Preview. This panel allows you to switch the individual C, M, Y and K plates on and off to show you the mixes, overprints and knockouts of each object. You will also see spot colours if you have the need to use them.
    If you flatten a PDF, it effectively does part of the RIPs job by creating the overpints and knockouts. A flattened PDF will be the first thing to show you that something is amiss.
    Another thing to do is use the Attributes Panel of Illustrator, click an object and see if it's set to overprint. Do a test: Place a white object on a coloured background and set it to overprint, then export a PDF... there should be a difference when viewed in Acrobat.
    In Illustrator, you could go to the menu View --> Output Preview and this will give you a view of how the file will print. It will show you how a file flattens and how solid blacks handle colours underneath them, but again, you will see this from a PDF/X-1a:2001 file.
    I will employ a number of methods, but whatever way I go about it, I always end up using the Output Preveiw in Acrobat. On that panel is a checkbox called 'Simulate Overprint'... click it on and off, and if you see things appear and disappear, then there's a good chance it'll print wrong. Also click each colour on and off and make sure colour is where it's meant to be AND where it's not meant to be.
    It sounds like a long process, but it's really not, it just adds a few extra minutes.
    Having said everything that I have, somebody pointed this out further up the thread... if you're unsure, have a word with the printer as to how they would like it supplied; you never know, they may have their own joboption they can give to you.

  • Best Way to Aggregate Multiple Announcement Apps and Possibly External RSS Feed

    Hello,
    I have two separate announcement apps (one in sub-site A, and one is sub-site B). I am trying to create a webpart that will display content from both apps together.
    I have tried to setup a CSWP and have been able to set the query to pull in the data (Although it shows expired announcements, which I would need to eliminate). Now, I am trying to customize the display of the CSWP, including the property mapping values
    to display the announcement title (currently working with the URL as a link) and body (truncated like the announcement summary view if possible).
    How can I get the body from the announcement to display? The 'body' field isn't listed as an option in the drop down list of mapping values. Do I need to toggle an option on the separate announcement apps, create a column, map a field, or some combination?
    Also, I'd like to know if it is possible to add in an external RSS feed. Or, if there is a completely different way to approach and accomplish this, please let me know.
    Thank you

    Hi,
    To display the “Body” field of Announcements list properly in Content Search Web Part, you can take a look at this blog about how to customize the display template for a good
    start:
    http://social.technet.microsoft.com/Forums/en-US/bf0eb4de-445f-435a-8c88-1826bfb3aae5/best-way-to-aggregate-multiple-announcement-apps-and-possibly-external-rss-feed?forum=sharepointdevelopment
    If there are more complex needs in customization, the two links below would be helpful:
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2013/09/03/3588171.aspx
    http://blogs.technet.com/b/tothesharepoint/archive/2013/05/28/stage-11-upload-and-apply-display-templates-to-the-content-search-web-part.aspx
    Also, if you have several questions, it is recommended to post them in each single thread to make others in this forum easier to focus on one issue in one thread.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Is it possible to have your music and videos saved on different external drives and use the same iTunes library?

    Is it possible to have your music and videos saved on different external drives and use the same iTunes library?
    I am running out of space on my external hard drive and would like to split the movies and music between two external drives while using the same iTunes library is this possible.
    My library is stored on the external drive all of my music etc is stored.

    Yes.

  • Possible to Install Leopard on External HD and Boot on Another Mac?

    Is it possible to install the Leopard upgrade DVD onto an External HD, AND THEN use the external HD to boot Leopard onto another Mac? Also, since the upgrade disc is an "upgrade," would I have to first install Tiger onto the External HD?
    If possible...
    Am I able to create an External Boot Drive that can boot both onto a PPC Mac and also onto an Intel Mac? Or will I have to create separate partitions?
    Lastly, can Intel Macs boot from an External USB Drive? Or are FireWire Drives required? Thanks!

    Yes, you can install on an external drive and boot the Mac. I do it all the time.
    I'm not 100% sure whether the same drive can boot PPC and Intel Macs -- I don't think so because PPC macs require Mac formatting and Intel Macs require GPT formatting to boot.
    Intel Macs can boot off both USB and Firewire external drives. PPC Macs can only boot off Firewire external drives. In any case, Firewire is better as it's quite a bit faster.

  • External display and sleep issues

    A 15-inch MacBook Pro worked fine with an external display and keyboard prior to the 10.5.2 update. After the update the external display goes dark when the laptop is closed. Hitting the external keyboard momentarily wakes up the external display but then it almost immediately goes back to sleep. It's as if the MBP thinks it's in battery mode and not plugged into an AC outlet.
    All Energy Saver settings are to keep the display awake. Could this be a corrupt driver or some other issue?
    Thanks.

    Theres been a lot of disscussion about this and it's a BIG problem. Check this out:
    http://discussions.apple.com/thread.jspa?messageID=6597635&#6597635
    http://discussions.apple.com/thread.jspa?messageID=6669894
    A lot of us are having the following problems after the graphic update:
    -not waking from sleep (waking, but display staying dark, restart is only solution)
    -not being able to use in clamshell mode (with external monitor)
    -not being able to run external monitor at full resolution
    I've also had some weird bugs like the settings and calibration of my external somehow coming over to my MBP monitor after disconnecting the them.
    I hope Apple can fix this.
    Tim

  • Ipod doesn't work on speakers but headphones are fine and speaker works with iPhone. Possible connector issue? Any thoughts on how I can get the fixed?

    ipod doesn't work on speakers but headphones are fine and speaker works with iPhone. Possible connector issue? Any thoughts on how I can get the fixed?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • HT3131 I would like to darken my Mac Air screen, so I can use may external display and the keyboard on the notebook--it is possible on a PC-does it work on a Mac?

    I would like to darken my Mac Air screen, so I can use may external display and the keyboard on the notebook--it is possible on a PC-does it work on a Mac?

    Sure it's possible.
    Go to System Preferences (under the Apple logo on the top left of the menu).
    Choose "Display".  There's a slider bar for the screen brightness.  Adjust it and you're all set.

  • External drive and sharing issues?

    I've posted this question before but got no answer, so, I'll try again.
    Ok here's the situation. I have a small network here at work. We (four of us) share a harddrive connected to computer A. That drive has all the client jobs on it that we all open and change and save. Lately and sporadically (no rhyme or reason) computer B, C, or D may try to open a job and it will say "access denied" and can not open it at all –OR– computer B can open it but will not be able to save it again in the same location. Now even though computer B can't do one of the two things listed computer C and D can open, fix and save with no issues. Again most of the time but not everytime.
    Is there a way to fix this "sharing/permissions" issue? It's a bit frustrating.
    I have opened the drive we are using and "got info" and assigned every individual listed full access and rights and that did not fix it.
    What am I missing here? Or is this a system X issue with permissions and I just have to live with it?
    Future plans are going to a server system which I assume will fix the problem but for now this is my set-up and looking for a fix. Thanks
    G4

    Couldn't you choose to "ignore permissions on this volume"
    for the whole external drive; and then (hopefully) all of the
    users would have no immediate sharing message issues?
    Of course, when articles or documents have several updates
    and more than one author contributing to their content, the
    files themselves may develop permissions issues.
    Among the casual reading I do on computer topics, I read
    more than I need to know, so I know the answer is out
    there and not terribly hard to implement; yet unfortunately
    I do not recollect the path to the argument on how to do it.
    There is a fairly simple outline of a way to handle some of
    this stuff in the following page/link; more detailed info is
    on the additional page/links which follow after this one:
    • Mac OS X 10.5 Help: Mac 101: File Sharing
    http://support.apple.com/kb/HT1549
    Among the security documents (download .PDFs) on OS X
    there are some fairly good paths to implementing security
    to include how to change permissions & privileges; as part
    of the overall security strategy; some of those documents
    covering these matters are in the Server security setup docs
    from Apple Support's database. I have three .PDFs saved.
    These vary from 2MB to about 5MB each.
    • Mac OS X Security Configuration Guides
    http://www.apple.com/support/security/guides/
    Some of the Share Points and other facts here may be
    of help, even in a non-server environment:
    • Apple Support - Leopard Server - File Sharing (10.5)
    http://www.apple.com/support/macosxleopardserver/filesharing/
    There is a large amount of information available.
    Good luck & happy computing!

  • Zen Touch users (and possibly non Zen Touch users) with Firmware issues click he

    i just got back from the mall.i visited the electroworld branch from which i purchased my zen. i explained to them what my problem is, at first they recharged the player in a usb port in front of me...then they also reformatted it too...told me to stick to the firmware that came with the product..the player responded and thanked them..but hr later, it blacked out again..i came back to the store manager showed him my zen ( he couldnt deny it doesnt have a problem ) and within minutes told me...they are going to give me a replacement. (the diagnosis was AUTO-OFF). they did and im very thankful. right now im charging the new player and hoping...i mean really hoping that this zen works. because im not going to waste my time again even with that warranty. if this zen is defecti've, im gonna li've with its defect..but im going to save up for the fruit's company in my next purchase..better yet why not a new pda...i can play [size="+2"]ZEN TOUCH USERS (and possibly non Zen Touch users)!!!
    OH MY GOD
    !!! I can't believe it, but after at least 5 hours of troubleshooting, I got it to work!!
    I don't know if all of these steps are necessary or not, but this is what I did in approximately this order (I'm so excited now, I'm not even sure if this is the exact order, but I'm almost positi've this is how I did it verbatim). I really, truly hope this works for everyone else.:
    ON YOUR ZEN TOUCH:
    .) Don't connect device to USB yet
    2.) Clean Disk
    3.) Format Disk
    *Don't bother with restart firmware or reboot; these options are useless.
    ON YOUR PC:
    .) Do NOT connect device to USB yet.
    2.) I did what everyone suggested and rolled my Windows Media Player to v0 (using Add/Remove programs in Control Panel), made sure I had SP2, had the latest drivers, blah blah blah. I'm not sure if this is necessary, but I also uninstalled my Firefox WMP plugin just to be safe. :smileyindifferent:
    3.) I un-installed (using Add/Remove programs in Control Panel) and re-installed my Zen Touch drivers, both my 2.0.00 and .30.03 (.30.03 is needed ONLY if you have XP Pro 64-bit edition). I'm not sure if re-installing the drivers is even necessary, but just to be safe, let's say it is. :smileyvery-happy:
    ---THIS IS THE IMPORTANT PART!---
    4.) I plugged my device into my USB port. When it prompts you whether you want to Sync the device with Windows Media Player or Take No Action, don't ignore it and close out. SYNC IT! I made the mistake of thinking that because my firmware was corrupted and my drivers weren't recognizing my Zen Touch as nothing more than a worthless hard dri've that there was no way it would sync with WMP. IT DOES
    !!! I don't know how but it freakin' does!
    5.) Open up your firmware update file and try to update again. Mine worked immediately and updated the player within seconds!
    NOTE: As mentioned on Creative's Support page, probably the only thing they were right about, your device will no longer be compatible with MediaSource. If you want to add music, you have to do it with Windows Media Player 0's Sync page now. And for the love of god, don't update Windows Media Player! It's not worth it! Winamp is way better anyways!
    Good luck everyone! I sincerely mean that. :manhappy:
    Message Edited by invisiblephrend on 06-07-2008 :32 PMusic files in it, watch movies, save medical books etc..

    I also strongly recommend that when Windows Media Player asks you whether you want to sync automatically or manually to choose the manual option. Automatic just randomly grabs music files and could likely add?music you don't want on your device.

  • I'd love some help trying to figure out why my 2008 MacBook no longer recognizes my external drive and now is not downloading photos from my iphone....?

    After many years of having no problems at all on my Macbook, I recently figured I should finally upgrade my OS. I did that about three weeks ago, updating to Snow Leopard (10.6.8). I used Time Machine at least once after the OS upgrade but now Time Machine no longer recognizes the external drive I have used for all these years to back up. The MacBook does not "see" it. (Disk Utility does however.) The computer then also stopped recognizing another La Cie back-up that I have and now... my iPhone cannot download photos? Yikes.
    I have, of course, shut down numerous times, used different cables (that worked for some) and the two USB drives. I even used a firewire. Nothing worked. I also tried to "Repair disk" on Disk Utility. It didn't work either, giving me an error (that I didn't save, sorry).
    I read many other discussions on the file format of the external drive and of course I'd be happy to reformat the external drives--however, it is obviously a tad nerve-wracking to reformat drives before having an accessible back-up. Suggestions? I do not remember what file format they have but am pretty sure it's not the Mac file system someone mentioned. The drives are a 2009 WD "My Passport Elite" and La Cie 2007 d2 Quadra,
    In terms of other hardware available, we do have another MacBook Air but it has  started rejecting both drives as well (without the Snow Leopard upgrade). We have an old Dell but it wouldn't have the disk space to help out much.
    Any thoughts on the process involved would be welcome.  Any ideas on the iPhone rejection would be helpful as well! It is a 30gig iPhone 4 that has 20 or so gigs free (not clear as iTunes says that there are abour 18 Gigs on the phone but 24 free gigs? I may be bad at math but that's 40 gigs...).
    I am checking out iCloud but apparently there are only 55 gigs available?
    Will be glad to hear any thoughts. Thanks!

    Good afternoon Lyssa,
    Phew. First of all, thanks in advance...these blogs are always comforting help!
    So, to answer your questions: For the age of the hard drive.Well, I added memory a couple of years ago (RAM and hard drive). Being a mom leads me to eat up a fair amount of gigs with photos of my kids and, in fact, I think I entirely replaced the original drive, so it is a couple years younger than 2008 since I did that in March 2010. If there is some way to verify that (whether or not I replaced the entire drive), I'm all ears. I have 311 Gigs free, so it is not a space issue. I verified the startup disk on Disk Utilityand nothing showed up.
    Question 1- What formats...
    The La Cie is format Windows NT Filesystem 3G ....At the time that I bought it I was still using a PC as well as a Mac and was told by afriend to use this format...
    The WD is Mac OS Extended (Journaled). I again tried to repair the WD last night and this is the error message: "Error: DiskUtility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files."
    Also, Time Machine tried again to back-up and gave  me this error: "Files can't becopied onto the backup disk because it appears to be 'read only'. You may needto repair or reformat the disk using Disk Utility. If the disk can't berepaired, you must use a different disk for backups. Open Time Machinepreferences to select a different backup disk."
    Question 2. Other cables...
    I used two other cables with the WD and that didn't change anything.  
    Question 3... Fire Wire from the La Cie
    Yes, I used the Firewire cable from the La Cie and it is indeed present, though still not visible in Finder. Since it is not Mac OSExtended I know that I can't use Time Machine with it.  
    So, in summary...
    I can plug in the La Cie and it is functional on the MacBook, visible on Disk Utility but not visible in Finder. The WD drive is not visible and not functional. So we can think it is indeed the WD that is not working.... Also, the iphone photos did, in the end, get downloaded, so it is not something more general.
    Causes...
    I forgot to mention that there is a "lost+found" file on the WD which apparently points to a UNIX /OS issue?   
    Some kind of "insurance"?....
    I'm curious about how people avoid this kind of issue. You just regularly replace back-up drives and hard drives before problems come up? Time Machine is great and saves many of us from disasters, however, knowing that your Time Machine back-ups are vulnerable makes the whole system insecure. No way to have alarms ring before the drive goes out?   
    As for ways ahead...
    It seems that I ought to be able to copy off of the WD to the MacBook then erase it and reformat it and start over again. However, I haven’t been able to see its contents except on random occasions. If you have any ideas on how to copy the Time Machineback-ups from the WD, again, I'm all ears!
    Good afternoon Lyssa,
    Phew. First of all, thanks in advance...
    So, to answer your questions:
    For the age of the hard drive. Well, I added memory a coupleof years ago (RAM and hard drive). Being a mom leads me to eat up a fair amountof gigs with photos of my kids ….and, in fact, I think I entirely replaced theoriginal drive, so it is a couple years younger than 2008 since I did that inMarch 2010. If there is some way to verify that, I'm all ears. I have 311 Gigfree, so it is not a space issue. I verified the startup disk on Disk Utilityand nothing showed up.
    Question 1- What formats...
    The La Cie is format Windows NT Filesystem 3G ....At thetime that I bought it I was still using a PC as well as a Mac and was told by afriend to use this format...
    The WD is Mac OS Extended (Journaled). I again tried torepair the WD last night and this is the error message: "Error: DiskUtility can’t repair this disk. Back up as many of your files as possible,reformat the disk, and restore your backed-up files."
    Also, Time Machine tried again to back-up and gave me thiserror: "Files can't be copied onto the backup disk because it appearsto be 'read only'. You may need to repair or reformat the disk using DiskUtility. If the disk can't be repaired, you must use a different disk forbackups. Open Time Machine preferences to select a different backup disk."
    Question 2. Other cables...
    I used two other cables with the WD and that didn't changeanything.
    Question 3... Fire Wire from the La Cie
    Yes, I used the Firewire cable from the La Cie and it isindeed accessible, though still not visible in Finder. Since it is not Mac OSExtended I know that I can't use Time Machine with it.
    FYI...
    So, in summary... I can plug in the La Cie and it is “functional” on theMacBook but not visible in Finder. The WD drive is not visible and notfunctional. So we can think it is indeed the WD that is not working.... ALSO,the iphone photos did, in the end get downloaded.
    As for ways ahead…
    It seems that I ought to be able to copy off of the WD tothe MacBook then erase it and reformat it and start over again. However, Ihaven’t been able to “see” its contents except on random occasions…
    Any further thoughts are welcome!

Maybe you are looking for

  • Error in validation an input field in a table ui and high lighting the cell

    Hello All, I have a table ui in one of my application.   This table has, say 6 columns; out of these 6 columns 4 columns are shown as input fields.  User needs to put in some numbers in two of the fields.  I need to capture these two number fields da

  • Lumia 520 - Nokia Music problem: "We can't get thr...

    Some titles will play for a second and stop with an error message, other will not work at all. Is there a problem with the service at the moment or is it just my phone? 

  • Why there is no "Extensions" under "Window" menu in Dreamweaver CC 2014?

    Hi, I just installed Dreamweaver CC 2014. I found there is no "Extensions" under "Window" menu. Do I need to install Extension Manager manually? If so, where is the link to install Extension Manager?

  • User error or system error?

    My 2.5 yr old mac has some issues: airport won't recognize secure connections, calendar and clock reset upon a shutdown/reboot/battery dies, when installing software updates, the system never fully recovers--I get a blue screen with a grey spinning d

  • Logic 7.0.1 Update

    I'm having problems installing the logic 7.0.1 update. It keeps saying that it can't find logic pro in the applications folder. has anyone else had this problem and does anyone know how to get round it?