Trackpad Failing even with Multiple "Repairs"

Hello! I just spend about 25 minutes typing out a detailed email to the apple contact who gave me his contact info personally to follow up with him, but the email failed and said the user did not exist, so I suppose he was either terminated or left the business. Instead of re-hashing everything I am going to literally paste the email I sent him as I don't have much time and i need to finish some class work. Here's the email. (PS. I have tried pretty much everything. and this post is completely sincere and it should fall within apple support guidelines.) This is more of my "story" than anything else.
Hello Mr. Hartly. I know it has been some time since we last spoke, (5 months to be exact), but I wanted to give you an update on my situation. My Macbook Pro SN: C2*****RJ7 was purchased from you several years ago as a refurbished machine and a Christmas present to me from my parents. I cried. It was the best gift I had ever received. Since that day, the laptop has been the car industry's equivalent of a "lemon". Within the first 2 months of having it, the logic board died. This is before I knew anything of computers (I now am very educated in the subject) and I was glad that I could just get it fixed by replacing it. Once this was done, I almost immediately started having issues with my trackpad on the device. When I would use it for any prolonged period of time it seemed the mouse would freeze somewhere on screen and I couldnt move it. Fastforward a year or so after using a magic mouse, and I am starting college. I would like to have a laptop I can actually use in class without toting a separate mouse that defeats the purpose and convenience of having a laptop, so I take it in again to be worked on. They tell me at Computers Plus in Corridor G in West Virginia ********, the nearest "certified apple repair store" that it is almost definitely a bad trackpad. I fork over more cash to get it replaced. The issue happens within 20 minutes of getting home. I call them back and they say to bring it back in and they would fix it for free, after a week of having my laptop they replace my hard drive and charge me 50 dollars for it and said they "didnt charge me for the labor." like i should be thankful. Fed up at this point, I contact your support team via phone. They were very helpful and I ended up speaking to you ( you can look up my old repair ID: ********.) after speaking to you, you told me to send it to you and you would fix it free of charge. I was so excited at this point. ECSTATIC even. I'm finally going to have an apple macbook pro! I love editing videos and I couldnt wait to install my software onto the laptop and get to work. The fixing process happened extremely quickly. I had it back in less than 2 days which made me nervous considering the fact that the local shop had it for a week. I read what the note in the box said. "1 Replaced Trackpad". So thats 2 trackpads now. I test it out and it still freezes after a couple hours of use. After emailing you, you suggest that I completely reinstall OS X onto the device. Frustrated and put out by the run around and lack of fixes, I put it aside for a while as classes started. About a month and a half ago, I was bored and wanted to do some tinkering, so I made an OS X usb bootable and reinstalled the OS. So excited to see if it worked, I started going through the initial setup and initial menus. about an hour after installing the os and doing some classwork/watching some media, guess what. Freeze. Unresponsive. Frustration. Defeat. I sit the machine aside and tried to forget about everything. No one was going to help me, and I have already spent so much money, that I could have just gotten a NEW MAC TO BEGIN WITH. I could honestly cry when I think about it. Fast-forward a month or so to last week.
Just the other day, I pull out the machine to let my girlfriend do some classwork on, and she complains that the trackpad is unresponsive and asks for a mouse. Frustrated, I give it to her the magic mouse. With the frustrations and disappointment fresh in my mind, I make a note to find your email address and tell you my whole story from beginning to end. I don't want other people to have the same experience as me. I truly do not want this to be taken as a disgruntled and frustrated boy; I haven't spoken negatively to anyone about the incident and I haven't raged about or talked about it on social media. I WANT apple to succeed. I think you're one of the greatest, if not THE greatest producer of technology on the planet. But right now I'm just a young man taking college classes from his bedroom in need of a working laptop. Thanks for your time and for reading this,
With all my respect,
Lukas
<Personal Information Edited by Host>

An Iterator.delete() has the spec:
public void remove()
Removes from the underlying collection the last element returned by the iterator (optional operation). This method can be called only once per call to next. The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method.
So when in your example the second iterator modifies the underlying collection it breaks the first instance iterator behavior which has then an unpredictable result.
Using a List.iterator() seems to change nothing :
public Iterator iterator()
Returns an iterator over the elements in this list in proper sequence.
Specified by:
iterator in interface Collection
Returns:
an iterator over the elements in this list in proper sequence.
So you code isn't garanty to run as you quote it running. The i2 is safe not i1 if you use i2.remove().
I did this test:
     List v1 = new Vector();
     v1.add("1");
     v1.add("2");
     v1.add("3");
     Iterator i1 = v1.iterator();
     while (i1.hasNext()) {
          Object o1 = i1.next(); // At second iteration I got a ConcurrentModificationException here.
          Iterator i2 = v1.iterator();
          while (i2.hasNext()) {
               i2.next();
               i2.remove();
          System.out.println(o1);
That's a typical unexpected results because hasNext() answered true but next() failed.
Now if your question is why this spec, I dunno, I could only guess that the purpose of Iterator generic interface is to allow to have efficient implementation at price of non concurent modification access.

Similar Messages

  • DataSocket fails intermittently with multiple NICs enabled using LV7.1

    Using LV7.1 and Datasocket v4.2, I was intermittently (but quite often) having problems reading and writing to the datasocket server (primarily from the server side). My application should read the value in the item and upon finding a specific string it should immediately follow it with a write of a default string. However, it can find the same string multiple times and not complete the write. Logging the errors from the write shows that no error is occurring. The client is not at fault because it only writes the string once every few minutes. I was able to finally show that by disabling the extra NIC on my system running the datasocket server that the connection seems to operate reliably. Both NICs
    were set to static IP addresses, but only one was connected. I do have the program writing to "dstp://localhost/UUT" as opposed to a specific IP address (not sure if it matters).
    With Labview6.1 I did not have this problem. It was only after I re-compiled my application with LV7.1 that I started having issues.

    Philip,
    I do not feel I am running out of bandwidth since I have run it successfully on 1Gbit NIC connections on a P4 2.4GHz system as well as a 10/100Gbit NIC on an old 650MHz system with LV6.1. I only do two writes per variable (on up to 8 variables) once every few minutes. I did not seem to be a re-entrant VI issue.
    I have created two VIs which should allow you to recreate the failing conditions with multiple NICs enabled. It responds very quickly with one NIC enabled, but when one or two more NICs is enabled, it gets very slow to respond and has some timeouts.
    One VI is the writer, the other is the reader. Start both VIs and start all 8 reader loops. Then you can consecutive
    ly click on all 8 sender loops. Doing this with and without multiple NICs enabled should show you the problem.
    Note: I think the issue I was talking about in earlier posts about getting multiple strings back before it wrote out "Loop" was due to the fact that the writes were not occurring quickly enough and the reads were happening multiple times. Therefore, in these VIs, I revised the read and close timeouts to -1.
    I think it would be best if you could call me so we can discuss this issue. If you can email me, I will send you my contact information if you don't already have access to it.
    Attachments:
    ReadSocket_Multiple_MSHv1.vi ‏360 KB
    WriteSocket_Multiple_MSHv1.vi ‏216 KB

  • Can I configure a wireless home network with two cable routers (both with separate connections to the same cable company)?  Issue is poor signal strength even with multiple Airport Expresses added to the network.

    I have a wireless home network consisting of a time capsule, two airport expresses and a cable modem.  Even with this configuration I get a very weak signal in much of be condo - the walls, etc. are solid concrete. I want to see if I can add another separately connected cable modem and connect one of the existing airport express to it by Ethernet cable.  If so, this would give me two wired hubs and greatly improve signal strength. I do not know if this configuration will in fact work or if I will just wind up with two, separate and unrelateable networks.  Unfortunately, there is no way to run any additional Ethernet cable and I doubt simply adding more Airport Express will help. Thanks.

    Try Ethernet over Power adapters.. these are very popular for your kind of environment.. being able to make non-wireless link to another area where you can setup a wireless access point.
    Airport Express are not great for wireless power.. if you really have issues with wireless strength in a bad environment apple stuff is not the way to go.
    The comparison chart here.
    http://www.smallnetbuilder.com/lanwan/router-charts/bar/58-2_4-ghz-dn?see=P_F
    This is their worst test location you can also see averages.. the latest airport extreme.. is there a long way down.. and that is a much better wireless device than Airport Express.
    The Ubiquiti power AP is small cheap and designed for precisely this duty.. useless in an apple wireless network.. you will need to run ethernet or EOP adapters back to the main router.. but if the normal omni directional antennas don't provide enough signal you can get directional ones.. I suspect you can cover your whole apartment with a pair of these and high gain directional antenna.

  • HP ENVY m6 Notebook PC trackpad issue even after HP repair

    2 weeks ago i sent my HP ENVY m6 Notebook to the HP Repair center because i was having major issues with the trackpad. It would not move fluidly,and click, and move on its own.
    I received my laptop back today anticipating that everything would work perfectly but some of these same issues are still occuring. The touchpad and the cable that connects it were both replace and the laptop was wiped clean.
    The toucpad will work for sometime then all of a sudden become glitchy. This is really effecting my usage of the computer. It is a huge inconvenience to pay for a laptop and have a major component malfunctioning. I'm currently using a wireless mouse again.
    Since the hardware was replace is there a software problem. This sems to be occuring to so many people.
    What is going on?

    http://www8.hp.com/us/en/support-search.html?tab=1​#/qryterm=HP%20ENVY%20m6%20Notebook&search_search...
    1. Please click on the above shown link and select the exact notebook model
    2. Select the exact and relevant Operating System for your notebook
    3. Click on Driver - Keyboard, Mouse and Input Devices
    4. Please download and install the Touchpad Drivers on your Notebook
    Hope this helps, for any further queries reply to the post and feel free to join us again
    "I work for Hewlett-Packard"
    * * * * * Click the "Purple Thumbs Up Icon in the lower right corner of a post" to say thanks * * * * *
    * * * * * Please mark Accept As Solution if it solves your problem * * * * *
    Regards,
    K N R K

  • Survey fail even with SSID broadcast

    I fail the initial survey every time I try with the WRE54G. No wireless networks show up - and I get over 20 when I try with other devices. I usually have SSID broadcast disabled, but have enabled it on the WRT54G router when setting up the RE. Any advice?Thanks in advance!

    Hi,
    Just make sure that the range expander is properly configured and well synchronized with the router , and make sure that the ssid broadcast on the range expander is also enabled.

  • Time Machine keeps failing even with new HD

    I recently bought an external HD (Western Digital 1T) that I have been using to keep some files on and back up my Macbook Pro 15" (2010 model). Suddenly it recieved an error message stating that the back up failed. So I restarted my computer and tried it again and this time I the back up would fail because the computer would suddenly eject the HD. Whatever the problem was it rendered my external HD useless and completely unreadable. So I chalked it up to faulty software on the external. I just bough a new one (same as the previous) and on my first backup it go the same message. Now I know that I have a corrupted file if not many of them that are causing this to happen. I have no idea how to fix this problem and have already spent more then enough money on new HD's.
    I copied my log below if this helps anyone. Please help me figure out what I need to fix.
    Jun 14 07:54:28 MacBook-Pro-15 com.apple.backupd[337]: Starting standard backup
    Jun 14 07:54:28 MacBook-Pro-15 com.apple.backupd[337]: Backing up to: /Volumes/My Passport 1T/Backups.backupdb
    Jun 14 07:54:28 MacBook-Pro-15 com.apple.backupd[337]: Ownership is disabled on the backup destination volume.  Enabling.
    Jun 14 07:54:41 MacBook-Pro-15 com.apple.backupd[337]: Backup content size: 167.7 GB excluded items size: 38.0 GB for volume Macintosh HD
    Jun 14 07:54:41 MacBook-Pro-15 com.apple.backupd[337]: No pre-backup thinning needed: 155.67 GB requested (including padding), 930.54 GB available
    Jun 14 07:54:41 MacBook-Pro-15 com.apple.backupd[337]: Waiting for index to be ready (101)
    Jun 14 07:54:41 MacBook-Pro-15 mds[32]: (Normal) DiskStore: Creating index for /Volumes/My Passport 1T/Backups.backupdb
    Jun 14 08:54:30 MacBook-Pro-15 com.apple.backupd[337]: Copied 20.8 GB of 129.7 GB, 175897 of 958977 items
    Jun 14 09:54:30 MacBook-Pro-15 com.apple.backupd[337]: Copied 96.7 GB of 129.7 GB, 243746 of 958977 items
    Jun 14 10:12:29 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Device not configured
    Jun 14 10:12:29 MacBook-Pro-15 com.apple.backupd[337]: Error: (-36) SrcErr:NO Copying /Users/johnhanna 1/Pictures/iPhoto Library/Masters/2010/006/DSC_0344.JPG to /Volumes/My Passport 1T/Backups.backupdb/MacBook Pro 15"/2011-06-14-075429.inProgress/16876F77-9EFE-4B94-A8E1-744321E42707/Macintosh HD/Users/johnhanna 1/Pictures/iPhoto Library/Masters/2010/006
    Jun 14 10:12:29 MacBook-Pro-15 com.apple.backupd[337]: Stopping backup.
    Jun 14 10:12:29 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Device not configured
    Jun 14 10:12:29 MacBook-Pro-15 com.apple.backupd[337]: Error: (-8062) SrcErr:NO Copying /Users/johnhanna 1/Pictures/iPhoto Library/Masters/2010/006/DSC_0344.JPG to /Volumes/My Passport 1T/Backups.backupdb/MacBook Pro 15"/2011-06-14-075429.inProgress/16876F77-9EFE-4B94-A8E1-744321E42707/Macintosh HD/Users/johnhanna 1/Pictures/iPhoto Library/Masters/2010/006
    Jun 14 10:12:30 MacBook-Pro-15 com.apple.backupd[337]: Stopping backupd because the backup volume was ejected!
    Jun 14 10:12:30 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:12:30 MacBook-Pro-15 com.apple.backupd[337]: Copied 244464 files (115.1 GB) from volume Macintosh HD.
    Jun 14 10:12:30 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:12:30 MacBook-Pro-15 com.apple.backupd[337]: Copy stage failed with error:11
    Jun 14 10:12:30 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:12:32 MacBook-Pro-15 com.apple.backupd[337]: Backup failed with error: 27
    Jun 14 10:14:23 MacBook-Pro-15 com.apple.backupd[337]: Starting standard backup
    Jun 14 10:14:23 MacBook-Pro-15 com.apple.backupd[337]: Backing up to: /Volumes/My Passport 1T/Backups.backupdb
    Jun 14 10:14:24 MacBook-Pro-15 com.apple.backupd[337]: No pre-backup thinning needed: 22.03 GB requested (including padding), 814.27 GB available
    Jun 14 10:16:45 MacBook-Pro-15 com.apple.backupd[337]: Copied 53 files (16.5 MB) from volume Macintosh HD.
    Jun 14 10:16:45 MacBook-Pro-15 com.apple.backupd[337]: Backup canceled.
    Jun 14 10:16:45 MacBook-Pro-15 com.apple.backupd[337]: Starting standard backup
    Jun 14 10:16:45 MacBook-Pro-15 com.apple.backupd[337]: Backing up to: /Volumes/My Passport 1T/Backups.backupdb
    Jun 14 10:16:45 MacBook-Pro-15 com.apple.backupd[337]: No pre-backup thinning needed: 22.03 GB requested (including padding), 814.26 GB available
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Error: (-36) SrcErr:NO Copying /Users/johnhanna 1/Pictures/iPhoto Library/Masters/2009/NYE in NYC/MVI_0303.MOV to /Volumes/My Passport 1T/Backups.backupdb/MacBook Pro 15"/2011-06-14-075429.inProgress/B984DF39-452A-4E56-833C-64BB020972DD/Macintosh HD/Users/johnhanna 1/Pictures/iPhoto Library/Masters/2009/NYE in NYC
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Stopping backupd because the backup volume was ejected!
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Stopping backup.
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Error: (-8062) SrcErr:NO Copying /Users/johnhanna 1/Pictures/iPhoto Library/Masters/2009/NYE in NYC/MVI_0303.MOV to /Volumes/My Passport 1T/Backups.backupdb/MacBook Pro 15"/2011-06-14-075429.inProgress/B984DF39-452A-4E56-833C-64BB020972DD/Macintosh HD/Users/johnhanna 1/Pictures/iPhoto Library/Masters/2009/NYE in NYC
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Copied 53 files (479.6 MB) from volume Macintosh HD.
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Copy stage failed with error:11
    Jun 14 10:18:09 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:18:10 MacBook-Pro-15 com.apple.backupd[337]: Backup failed with error: 27
    Jun 14 10:26:12 MacBook-Pro-15 com.apple.backupd[279]: Starting standard backup
    Jun 14 10:26:13 MacBook-Pro-15 com.apple.backupd[279]: Backing up to: /Volumes/My Passport 1T/Backups.backupdb
    Jun 14 10:26:13 MacBook-Pro-15 com.apple.backupd[279]: No pre-backup thinning needed: 22.03 GB requested (including padding), 814.02 GB available
    Jun 14 10:28:46 MacBook-Pro-15 com.apple.backupd[279]: Error: (-36) SrcErr:NO Copying /Users/johnhanna 1/Music/iTunes/iTunes Media/Movies/anatomy abdomen 3 (12)/anatomy abdomen 3 (12).MP4 to /Volumes/My Passport 1T/Backups.backupdb/MacBook Pro 15"/2011-06-14-075429.inProgress/51B49CDB-44AE-48D4-BC40-BD52DDFB39C2/Macintosh HD/Users/johnhanna 1/Music/iTunes/iTunes Media/Movies/anatomy abdomen 3 (12)
    Jun 14 10:28:46 MacBook-Pro-15 com.apple.backupd[279]: Stopping backupd because the backup volume was ejected!
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Stopping backup.
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Error: (-8062) SrcErr:NO Copying /Users/johnhanna 1/Music/iTunes/iTunes Media/Movies/anatomy abdomen 3 (12)/anatomy abdomen 3 (12).MP4 to /Volumes/My Passport 1T/Backups.backupdb/MacBook Pro 15"/2011-06-14-075429.inProgress/51B49CDB-44AE-48D4-BC40-BD52DDFB39C2/Macintosh HD/Users/johnhanna 1/Music/iTunes/iTunes Media/Movies/anatomy abdomen 3 (12)
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Copied 2044 files (1.8 GB) from volume Macintosh HD.
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Copy stage failed with error:11
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Jun 14 10:28:47 MacBook-Pro-15 com.apple.backupd[279]: Backup failed with error: 27

    pope123 wrote:
    Jun 14 10:12:29 MacBook-Pro-15 com.apple.backupd[337]: Error: (-36) SrcErr:NO Copying /Users/johnhanna 1/Pictures/iPhoto Library/Masters/2010/006/DSC_0344.JPG
    Jun 14 10:12:30 MacBook-Pro-15 com.apple.backupd[337]: Error writing to backup log.  NSFileHandleOperationException:*** -[NSConcreteFileHandle writeData:]: Input/output error
    Time Machine is having trouble with some files on your internal HD, but also writing to the (hidden) log file it keeps on the external HD.
    That looks like a problem with the external HD, or the connection to it.
    First, be sure it's formatted properly; see #C1 in Time Machine - Troubleshooting.
    If that doesn't help, see #C3 there.  Start by excluding the files(s) in the messages; if that doesn't help, see the pink box there.

  • App.open(file) fails even with absolute path.

    Hi There,
    I am new to scripting for AE so please go easy on me.  I have these two lines in a script which is a plain text file with .jsx as the extension.
    var project = new File("C:\path\to\my\project.aep");
    app.open(project);
    So then, I go to my command line and enter this.  I should note that I added the directory containing afterfx.exe to my environment path (I am running Windows 7).
    afterfx -s myscript.jsx
    When i hit enter, AE launches, but I get an error that says:
    Unable to execute script at line 1.  After Effects error: Unable to call "open" because of parameter 1.  Path is not valid.  Path: C:\Program Files\Adobe\Adobe After Effects CS5\Suppor Files\pathtomyproject.aep
    What?!  Why does it think my aep file is within the Support Files directory?!  Is it because of the path environment variable I setup?  Any tips to force AE to find the file I specified in the new File() method?
    Thank you for any advice and your time!

    Hi,
    You need to use double backslashes in the path, like so:
    var project = new File("C:\\path\\to\\my\\project.aep");
    /Ludde

  • Sudo fails even with seeming correct permissions?

    When I try to sudo from Terminal, I get:
    media:~ frank$ sudo su -
    sudo: unable to stat /etc/sudoers: Permission denied
    sudo: no valid sudoers sources found, quitting
    However, I can cat /etc/sudoers and see the content of the file. I'm a member of the admin group.
    Thanks in advance, additional info available if it will help!

    Valid is not the same as a file exists.  The /etc/sudoers file needs to be correct format and permissions.
    /bin/ls -leO@ /etc/sudoers
    -r--r-----  1 root  wheel  compressed 1275 Oct 31 22:54 /etc/sudoers
    Have you edited /etc/sudoers ?
    What tool did you use to modify /etc/sudoers ?
    You are suppose to use /usr/sbin/visudo to edit the /etc/sudoers file which will validate the results before saving the updated version.  See "man visudo".
    While I am still using Mavericks, chances are the /etc/sudoers file still looks the same, so here is what my unmodified /etc/sudoers file looks like:
    # sudoers file.
    # This file MUST be edited with the 'visudo' command as root.
    # Failure to use 'visudo' may result in syntax or file permission errors
    # that prevent sudo from running.
    # See the sudoers man page for the details on how to write a sudoers file.
    # Host alias specification
    # User alias specification
    # Cmnd alias specification
    # Defaults specification
    Defaults    env_reset
    Defaults    env_keep += "BLOCKSIZE"
    Defaults    env_keep += "COLORFGBG COLORTERM"
    Defaults    env_keep += "__CF_USER_TEXT_ENCODING"
    Defaults    env_keep += "CHARSET LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE"
    Defaults    env_keep += "LC_MESSAGES LC_MONETARY LC_NUMERIC LC_TIME"
    Defaults    env_keep += "LINES COLUMNS"
    Defaults    env_keep += "LSCOLORS"
    Defaults    env_keep += "SSH_AUTH_SOCK"
    Defaults    env_keep += "TZ"
    Defaults    env_keep += "DISPLAY XAUTHORIZATION XAUTHORITY"
    Defaults    env_keep += "EDITOR VISUAL"
    Defaults    env_keep += "HOME MAIL"
    # Runas alias specification
    # User privilege specification
    root    ALL=(ALL) ALL
    %admin    ALL=(ALL) ALL
    # Uncomment to allow people in group wheel to run all commands
    # %wheel    ALL=(ALL) ALL
    # Same thing without a password
    # %wheel    ALL=(ALL) NOPASSWD: ALL
    # Samples
    # %users  ALL=/sbin/mount /cdrom,/sbin/umount /cdrom
    # %users  localhost=/sbin/shutdown -h now

  • Couldn't enter my order, failed even with assistance​, bundle expired and still can't get help!

    Tried to order upgraded service on line at least 5 times over a 4 hour period but could not get my order placed. The chat people could not help getting the order to place. Called the business office people to attempt to get my order in but was on hold over 25 minutes and while on hold the bundle expired and was no longer available.
    I was told to record my chat ID# and contact support today but no one can get me to anyone who can help. Does anyone know how to get to the right people?
    Solved!
    Go to Solution.

    Never heard back so I called the business office today and explained my difficulties in attempting to place my order before the bundle deadline expired. The business office didn't have the same package as the on line offer but they customized and met the offer by providing a monthly credit against their package to meet the on line bundle price. The only issue is that I have to pay the taxes on the package at the full rate before the additional monthly credit.
    Its not right as we pay too much in taxes as it is in general (Not the fault of Verizon) but I can live with the resolution.

  • LYNC 2010 with Multiple Sites and Pools

    We have LYNC 2010 Enterprise Pool in North America with 5 Front End servers, 2 Edge Servers. No Director servers deployed. We want to enable Dial-In Conferencing feature for all users across the Globe (to avoid 3<sup>rd</sup> party conferencing
    cost…) and proposing 2 additional pools ( one in EMEA and another in APAC regions). I am looking for best practices to deploy multiple pools on multiple central sites.
    Do we need to deploy Director Servers? (Microsoft recommend Director, however is this mandatory for multiple pools?)
    How can we handle Simple URLs and DNS entries in multiple Edge pools (edge pool in each frontend pool)?
    Do we need to publish different ISA firewall rules for simple URLs and mobility?
    As we are not planning to replace PBX now, and only looking to provide dial-in Conferencing Bridge with SIP trunking, what is the best practice to provide site resilience in case one central site is down?
    Thanks in advance for your help…
    Tek-Nerd

    Hello.
    1. This is a recommendation and it's not mandatory even with multiples pools. The only point if you don't deploy director is that for the first connection, all sig wil go through one pool (the one behind the srv and dns record) and after this pool redirect
    the user to the good one (and also do the authentification) .Also director is made to avoid this type of load on one pool (connection from other pool and from edge authentification), but still not mandatory.
    2.Simple URL point only on one entry (or pool of RP) somewhere in the world (after there are some unofficial workaround) but don't forget that behind that there is the external web service URL (for each pool) and also an edge association to one pool. And
    the user is really using thoses URL and svc (edge associated to the pool as the ext web url)
    For the external web svc & edge association, you can create a local edge pool closer to your internal pool so for those user the media will be closer and don't go trhough the world. (exemple you add one emea pool, the media that come from internet goes
    through the emea edge and emea RP handling Lync external web services). But the simple urls still point to your main edge/RP pool.
    3. Like point before, not mandatory, recommendation if you don't want your media going around the world and coming back. Be carefull the association is still fixed (depending of the user's pool parameter), so if the user travel still using original edge/rp
    settings.
    4. You can create multiple trunk with lync so have backup in case of one is no more working. After this is hard to say what is the best, this is depending of your infrastructure.
    David

  • Unzip.vi only works with 1-internal file, error2 with multiple even in raw form.

    I've attempted to use the LabView unzip tool with several different meathods & I can only get it to work when there's only one file in the zip file. Multiple files continually cause an error in the VI, even when using raw LabView example code/tools. The first file does get unzipped in the specified folder before the error. Error 2 occurred at System Exec.vi. Command was "touch 08131333062007 "Chamber 1.ted"",LabVIEW:  Memory is full.

    Thanks for you response Juan & while this gives me some insight as to where the error is occurring it doesn't solve my problem. You can use the NI provided "Zip Tool.vi" to zip some files & then start a new blank VI & drop in the unzip tool & do nothing with it & run the Untiltled VI like that & it'll prompt for the file & as soon as you select the file...."Error 2", you can even double-click the unzip from the block diagram & use it that way.  I did this as a test to verify that what I'm doing wasn't causing the problem. My actual code uses the "File Dialog Express VI" in a flat sequence to first determine the zip file then the unzip-to location then runs the unzip function. I even get folders if zipped but only one file, no error if there's only one file, the error only occurs with multiple files.
    It appears to be an access issue as if it gets the first file & then trys to re-access for the next. I could handle this if it had functions to close the reference but it doesn't. I did try to take the preview, turn it into an array, run it through a for-loop but there's no way to specify a specific file w/in a zip file.
    Any thoughts?

  • I made a project with multiple tracks and had it all panned and mixed.  Now it's only playing in the right speaker.  Not even regestering a left side in the master volume?  What happened, how can I get both sides back?

    I made a project with multiple tracks and had it all panned and mixed.  Now it's only playing in the right speaker.  Not even regestering a left side in the master volume?  What happened, how can I get both sides back?

    Thank you for that info.
    For video, the codec is MPEG-4 Video (XVID) and for audio it says MPEG Audio Layer 1/2/3 (mpga).
    There are two issues with that file:
    The first is the Xvid CODEC (not meant for editing), and then the MPEG Audio/MPGA. I would convert that file, to something that is more editable.
    Good luck,
    Hunt

  • I followed everything I need to do to enable my Apple ID account multiple times. Yet I still am not able to purchase anything. Not even with apple credits I have already stored in my account. Is there something I'm missing or doing wrong.

    I followed everything I need to do to enable my Apple ID account multiple times. Yet I still am not able to purchase anything. Not even with apple credits I have already stored in my account. Is there something I'm missing or doing wrong?

    What happens when you try to buy something ? If you are still getting the disabled message then since resetting your password have you logged out of your account on your device (by tapping on your id in Settings > iTunes & App Store) or computer's iTunes (Store > Sign Out menu option) and then logged back in so as to 'refresh' the account on it ?
    If that doesn't fix it then you might need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • B2B Inbound File with Multiple Transactions failing

    Hi ,
    Problem Summary: When the inbound file is coming with multiple transactions (combination of 997 and non-997) ,
    If the 997 is the FIRST transaction in file, B2B is processing only 997 and remaning transactions are getting rejected.
    Where as if the 997 is the LAST transaction in file, then all the transactions are processing correclty.
    SOA Version: SOA 11G (11.1.1.5).
    Example 1: below sample we got two transactions, 997 and 214. here 997 is the FIRST transaction in the file.
    in this case B2B is processing 997 correctly, and 214 is errored with below error message
    "B2B-51507 - A data segment with 'Mandatory' status is missing. A data segment with 'Mandatory' status is missing. An X12 syntax error occurred. An X12 syntax error occurred. An X12 syntax error occurred. A data segment with 'Mandatory' status is missing. A data segment with 'Mandatory' status is missing.
    ISA00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005822*0*P*:~*
    GSFA*xxxx*1234555*20120516*1018*5822*X*004010~*
    ST997*58220001~*
    AK1SM*7159~*
    AK9A*1*1*1~*
    SE000004*58220001~*
    GE1*5822~*
    IEA1*000005822~*
    ISA*00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005823*0*P*:~
    GS*QM*xxxx*1234555*20120516*1018*5823*X*004010~
    ST*214*58230001~
    B10*2313813*M1213131*xxxx~
    N1*SF*xxxxxx*ZZ*124~
    N4*xxxxxx*AR~
    LX*1~
    AT7*AF*NS***20120516*1017*LT~
    MS1*xxxxx*AR~
    L11*01*QN~
    AT8*G*L~
    SE*10*58230001~
    GE*1*5823~
    IEA*1*000005823~
    Example 2 : below sample we got two transactions, 997 and 214. here 997 is the LAST transaction in the file.
    in this case B2B is processing ALL TRANSACTIONS correctly
    ISA*00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005823*0*P*:~
    GS*QM*xxxx*1234555*20120516*1018*5823*X*004010~
    ST*214*58230001~
    B10*2313813*M1213131*xxxx~
    N1*SF*xxxxxx*ZZ*124~
    N4*xxxxxx*AR~
    LX*1~
    AT7*AF*NS***20120516*1017*LT~
    MS1*xxxxx*AR~
    L11*01*QN~
    AT8*G*L~
    SE*10*58230001~
    GE*1*5823~
    IEA*1*000005823~
    ISA00* *00* *02*xxxx *01*1234555 *120516*1018*U*00401*000005822*0*P*:~*
    GSFA*xxxx*1234555*20120516*1018*5822*X*004010~*
    ST997*58220001~*
    AK1SM*7159~*
    AK9A*1*1*1~*
    SE000004*58220001~*
    GE1*5822~*
    IEA1*000005822~*
    Thanks,
    Naveen

    Hi,
    My name is Phil DeLaine and I work for one of Oracle's Gold Partners, TechDemocracy.
    I saw your post about the B2B transaction errors you are experiencing. We have great experience with B2B and have solved very complex problems. (References available.)
    Would you like to use one of our B2B expert technical resources to solve this problem and deliver your project error free and fully functional?
    Please let me know if you would like to discuss what we can do for you. You can reach me anytime.
    Regards,
    Phil
    Phil DeLaine
    Sales Director - Northeast
    TechDemocracy
    (978) 758-3156 (Cell)
    [email protected]
    http://www.techdemocracy.com/
    Our Successes:
    1) We won the 2011 Oracle Titan Award for the Best Middleware Implementation. Our award winning solutions included SOA, IAM and BI.
    2) We have been awarded with the highly prestigious Oracle ACE Director status for outstanding industry achievement and track record.
    3) We sit on several Advisory Boards for Oracle Product Management (for Fusion Middleware Products).
    4) We are an Oracle Center of Excellence Partner for SOA and IAM.
    5) We are frequently invited to speak at a number of Oracle Customer Success forums such as Oracle's "OpenWorld".
    6) We have been rated by Inc. Magazine as one of the top 10 fastest growing companies for 3 consecutive years.
    7) We have won and successfully deliveried several projects at Fortune 100, 500 and 1,000 companies. (References Available)

  • Mini DisplayPort to VGA Adapter makes trackpad fail

    i noticed this problem in two Macbooks (the new white model running OSX 10.6.4) me and my wife own.
    once we connect them to out TV (a philips 32") with a VGA adapter i can't seem to control the pointer with a trackpad.
    i tried plugging in a USB mouse and it worked in controlling the pointer, but still the trackpad fails.
    by the way, after a fresh restart the trackpad did seem to work for a while, but then it failed again.
    i already have this problem on two computers,
    has anybody else experienced something like this?
    Message was edited by: superyona

    Hm. What an odd problem!
    The only really big thing that comes to mind is maybe for some reason the Mac thinks you're connecting a mouse when you plug the DisplayPort adaptor in.
    Go to Apple Menu > System Preferences > Universal Access > Mouse and Trackpad and make sure the option to Ignore trackpad when mouse is present is unchecked.
    Other than that, you may try resetting your PRAM and repairing your Disk Permissions. To reset your Mac's PRAM, first shut the Mac down. Once the Mac is completely off, turn the Mac on again, and before the startup chime finishes playing, start holding down the Command, Option, P, and R keys simultaneously. Continue holding these keys until the Mac sounds the startup chime for the third chime. At that point you can release the keys and your Mac will start up into OS X normally.
    To repair your disk permissions, first click on the Finder icon in your dock. This will always be the icon on the far left. Next, click the "Go" menu at the top of the screen and then select "Utilities". This will open your Utilities folder.
    Now, find the icon for Disk Utility and double click it to launch the program. Select your hard drive from the pane on the left hand side of the window. Your hard drive will usually be the first item listed.
    After selecting your hard drive, click the tab labeled "First Aid" and then click the button labeled "Repair Disk Permissions". This process may take a while to complete.
    After the permissions repair is complete, close Disk Utility and restart your computer by selecting Restart from the Apple menu.
    Let us know if this helps!
    Regards,
    -Ryan

Maybe you are looking for

  • Eprint doesn't open word documents

    officejet 8600 plus & mac 10.7.5 eprint (version 2.0.0) will not allow me to open anything but pdf. i can't open Word docs or images of any kind. any help? thanks from jerusalem.

  • Why ps3 is not working well with airport

    why ps3 does not work well wth the airport?

  • Problem Installing Flash CS3 Pro PLEASE HELP!!

    I have downloaded the installer for about the 3rd time i extract it all right but when i run the setup.exe its all fine until it starts to install but then it says something like " insert Adobe Flash CS3 Professional to continue" i keep trying but it

  • Screen cracked after 3 days

    hi Ive just upgraded to a z3 after two years of having a z. The screen has cracked in several places when it was in my hand bag not being used. I've booked a repair through Sony but researching online tells me that I will be charged handsomely for th

  • Sales order should be blocked based on amount and days

    Hello Gurus, We have a requirement -The sales order should be blocked based on credit amount and number of days  maintained for particular customer But where do we maintain validity period for that amount for a particular customer EX  : Credit limit