I can unrar, but I can't rar.

I have the unrar package installed, and it works just fine, but I can't rar.
There doesn't seem to be a rar package in the repositories:
[michael@archimedes ~]$ sudo pacman -Sy rar
:: Synchronizing package databases...
core is up to date
extra is up to date
community is up to date
kdemod is up to date
error: 'rar': not found in sync db
I've already looked through the forums, and from what I can tell by reading some old threads there used to be a rar package.
I'm probably just overlooking something simple. Help!

brebs wrote:The AUR's search facility is currently broken.
Huh? Are you sure it is not just that "rar" matches and package with "library" in the description?

Similar Messages

  • I want to add an application like winrar useing rar file so i can auto download it all thet i have is a zip fill but i want a rar file too the option to auto download it is gray so i cant use it plz help me.

    i want to add an application like winrar useing rar file so i can auto download it all thet i have is a zip fill but i want a rar file too the option to auto download it is gray so i cant use it plz help me.
    == This happened ==
    Every time Firefox opened
    == all the time

    Here is the answer: Not an add on or plug-in! In fact you can get rid of all those useless plugins and add-ons! Go and get it. Im using the Alpha version right now and it works great. Works better then anything else .......add multiple links for all files sit back and relax. Its all done for you with no more intervention on your part! Check it out!
    http://wordrider.net/freerapid/
    Only one downside to this. No proper installer. You will have to copy the files to your respective programs folder.
    C:\Program Files\FreeRapid or C:\Program Files (x86)\FreeRapid
    Then create shortcuts to your desktop from FRD app. Thats it then start downloading!
    By the way this not an add. I just spent the whole night looking for the solution to this problem because I was so frustrated with the whole thing. I download tons of files and I have lots of other projects going and I dont have time for all this nonsense with RapidShare and Firefox. Hope this helps some other poor souls out there!

  • Can a .rar file be used to zip a Mac file?

    I've got a bunch of .rar files that are supposed to make up one big Mac file, but I've never heard of that being possible..always thought that's only a PC zip format....anyone know otherwise? If so, how do you unzip 'em? thanks

    There is one caveat: certain types of ‘legacy’ files, from Mac OS 9 and earlier—those with resource forks—can’t be safely stored in non-Mac-aware archives. Font suitcases, for example, are completely lost (become empty files); 68k-compatible applications are ruined; non-native image formats lose their previews. The only exception of which I am aware is a Zip archive created by OS X’s tool and equivalents, which use a special workaround to save resources and Finder Info in such a way that they can reconstitute the original file structure on extraction. Windows users +et al.+ just see an extra directory in these archives. AFAIK this isn’t available for rar, tar, gzip and other such compression formats—and if implemented by a particular Mac-aware utility, would require that a similar program be used for unpacking the archives.

  • I'm trying to open files which are telling me to instal Adobe Reader.  Which I did but the agreement which needs to be ticked off so this reader can open doesn't come up.  Please could you be of some assistance.

    I'm trying to open files which are telling me to instal Adobe Reader.  Which I did but the agreement which needs to be ticked off so this reader can open doesn't come up.  Please could you be of some assistance.

    Select one of the files, Choose GetInfo from the Finder's File menu, look for the field named "Open With", and choose Preview from the adjacent menu. Accept that ALL such files will Open with Preview, and your major problems should be solved.
    Occasionally, a particularly complex .pdf file or one that needs to be modified and re-written will not work quite right with Preview, but such issues are rare.

  • Can not move rar archives because the packing of them have not yet finished

    Hello,
    I have a thread wherein I execute the rar.exe cmd line version to compress folders in .rar archives, now after packing them I want to copy them for example to another directory on my hard disk with a java "copyfile" command. The problem is that before all .rar archives are packed or before rar.exe even started to pack the folders at all to .rar archives the "copyfile" command has already been executed by java, but there arent any .rar files because the Runtime.getRuntime().exec method which calls the rar.exe is still busy with packing the .rar archives. So the solution to this problem is to query the Runtime.getRuntime().exec method wether the rar.exe process has already been finished like:
    if (Runtime.getRuntime().exec != finished)
      dont know what to write here...
    else
       copy the .rar files
    }I also tried this but there is no go :
    Process rar =  Runtime.getRuntime().exec("./7za.exe a -m9 -r -y -tzip -- H:/bla"+i+".zip H:/*.*");
    rar.waitFor();-----------------------------------------------------------------------------
    because only the first part .rar archiv gets compressed but stopped when it reached 2KB in size :-) ...
    so anyhow the waitFor() method is breaking my whole thread where also the rar.exe is executed!
    public void actionPerformed(ActionEvent e)
              if(e.getSource().equals(buttonPack))
                  try
                    meinThread = new PackThread();
                    //meinThread.setPriority(Thread.MAX_PRIORITY);
                    meinThread.start();
                  catch(Exception a)
                    a.printStackTrace();
    public class PackThread extends Thread
             PackThread()
             public void run()
                  filesizeNew = filesizeCombo.getSelectedItem().toString().substring(0,filesizeCombo.getSelectedItem().toString().length() - 3).trim();
                  String filenameNew = rlsFilenameTF.getText().trim();
                  String verzeichnisName = rlsSourceDirectoryCB.getSelectedItem().toString();
                  String targetDir = SettingsPanel.targetDirDefaultTF.getText();
                  String rarFormat = targetDir+"/"+verzeichnisName+"/"+filenameNew+".rar";
                  String verzeichnisNameZielAbsolut = SettingsPanel.targetDirDefaultTF.getText().trim();
                  verzeichnisNameQuelleAbsolut = SettingsPanel.sourceDirDefaultTF.getText();
                  sourceDirProper = verzeichnisNameQuelleAbsolut.replaceAll("\\\\", "/");
                  String tempDir = targetDir + "/" + verzeichnisName;
                  File f = new File(tempDir);
                  f.mkdirs(); 
                 try
                   Process p = Runtime.getRuntime().exec("./rar.exe a -r -m5 -mm -md4096 -vn -y -v" + filesizeNew +"k "+rarFormat+" "+sourceDirProper+"/"+verzeichnisName+"/*.*" );
    p.waitFor();   // This dont work as I said above in the text
    // here should be the copyfile or whatever command which needs the .rar archives to do something with them, so they must already be created before this command here is called!
                  catch(Exception a)
                    a.printStackTrace();
          }  

    hello,
    sorry, but I dont understand what you mean because my native language is not english and I am coding in javag since about 6 months so I am still a newbie :-)
    can you explain me a bit more about this problem?
    furthermore I have made a workaround now which gets me fever cpu load than than before:
    ------------------------------------Parts of the code---------------------------------------------------------------
    try
                    Process p = Runtime.getRuntime().exec("./rar.exe a -r -m5 -mm -md4096 -vn -y -v" + filesizeNew +"k "+rarFormat+" "+sourceDirProper+"/"+verzeichnisName+"/*.*" );
                    BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
                    String tmp;             
                    while((tmp = br.readLine()) != null)
                    }because of the while loop the "copyfile" command coming after this code will be executed to the right time!
    But still I would like to have a better solution not such a workaround...but maybe I have discovered the best workaround at all who knows :P

  • Can Stuff It Expander be used to open .rar files?

    I've got some .rar files on my computer. When I try to open them it asks me to tell it what application to use to open it. I thought the Stuff It Expander opens those, but I don't know how to find it in the Finder.
    I don't have this problem with Zip files, it automatically uses the Stuff It Expander to open it.

    Not the free version of Stuffit. You can use The Unarchiver or any of the numerous free utilities that can handle RAR archives - VersionTracker or MacUpdate.

  • Can't get 'clamshell' mode to work with Dell 2408

    I have been trying to get my Dell 2408 working in clamshell mode without any success. I have a USB keyboard, USB mouse, power adapter and monitor via DVI plugged in. I switch the display type to mirror, close the lid, wait for it to sleep, then wake it again by pressing a key on the keyboard.
    The computer wakes, the external monitor flashes but at the incorrect resolution (1200 X 800 instead of 1920 X 1200) then goes back to sleep. This will repeat over and over again until I open the lid of the macbook. I can occasionally get the macbook to wake and display on the eternal monitor but this is very rare, and when it does I get some wired artifacts.
    What's really puzzling is that the monitor works flawlessly in extended desktop mode, and works perfectly with other non mac computers. I took the macbook to the Genius Bar, hooked it up to the apple cinema displays and i didn't get the same problem! Grrr....
    So I just don't get it, both the computer and display seemingly work fine independently from one another, work fine in extended mode, yet in clamshell mode have some fairly major issues.
    Anyone have any ideas?

    My dell 2408 arrived today and I'm having exactly the same problem.I cant get it to go into clamshell mode. I lie, I got it to go into clamshell mode once. I don't know what I did. But it certainly isn't willing to go into clamshell mode again any time soon.

  • Shockwave Flash may be busy... BLAH BLAH BLAH... HOW can I fix this?

    I am SOOOOOO sick of this issue.  I have posted asking for help,  advice and etc... in many different sites including THIS ONE, and no one  seems to know how to fix this. For about the last month or so, I have  had a problem with my adobe flash, or shockwave flash or what ever the  hell you want to call it. I say this last part because I have been told  they are the same, and I have been told they are different. Here is a  screen shot of the damn pop up box I keep getting, it also shows how I  am also often told that I need to install adobe flash to view something  even though I DO have it installed already.
    The  issue: It seems like every couple of mins at times, my browser will  freeze, then after a few seconds to mins, I get the above shown pop up  box about my unresponsive plugin. Usually when I click the continue  button, after a few mins the page continues to work. This usually only  lasts a few mins before it freezes again and I get the pop up box AGAIN.  Sometimes it stays unfrozen for a while, and I have no issues but this  is very rare.  Now if I click the stop plugin option, this usually makes  adobe flash crash altogether, and I have to refresh everything.  Sometimes my page does not unfreeze at all, even after clicking the  continue button, my browser does not unfreeze, and I have to open my  task manager, and shut it all down manually. As for the other issue,  where I am told I have to download adobe flash to view something, this  does not happen EVERY time I try viewing something, but it does happen, I  would say maybe 2-8 times out of 10 it happens. It has happened while  trying to view videos, commercials I get while playing games sometimes,  or many other things, I am saying this because I want to make sure you  understand it is NOT just when I am on facebook or something, I just  happened to take the screenshot above while on FB when it happened this  most recent time to make this post here with.
    Ok  so I have tried a LOT of things to fix this. I more then once tried  uninstalling and then reinstalling adobe flash, I did so following the  instructions for a CLEAN INSTALL as I was directed by someone else to  try. In case the issue was something to do with my anti virus, or fire  wall or etc... I have also tried uninstalling, then reinstalling while  my windows firewall was turned OFF, as well as my anti virus turned off.  I have tried uninstalling my browsers as well, then reinstalling them  AFTER reinstalling adobe.
    According  to the flash checker thing on the adobe site itself, I DO have the most  current version installed, I also checked the page to see if it was  supposed to be working properly, and according to your site it said my  adobe flash WAS working fine, the images and etc... displayed fine. All  of my browsers and etc... are also ALL up to date. I have made sure that  ALL of my adobe products are up to date, the reader, active x,  shockwave, etc...
    I  have tried everything and yet I still keep getting this message box,  and often enough I get the message saying adobe needs to be installed to  view something. I had not installed anything, nor had I made any  changes to my comp or system prior to this problem starting, though if I  am not mistaken, I think I HAD just upgraded to the newest version OF  adobe at the time, this was over a month ago now...
    I  also want to add, so that I don't start getting suggestions to do so...  I do not have a virus on my comp. I have checked and rechecked my  system using a few different programs like windows defender,  malwarebytes, my anti virus Avast!, Spybot Search & Destroy,  Microsoft Safety Scanner and possibly other ones as well, and none of  them have ever found any malware, adware, or viruses.
    As  for my system and info: I mostly use firefox (yes most recent version),  however recently I did download and try using Google Chrome in order to  find out if this was a firefox issue or something, as someone suggested  once. I encountered the SAME pop up box, and message while using Google  Chrome, as well as while using IE, which tells me even more this is not  a "browser" problem, but more an adobe/shockwave/flash or whatever  problem. I have windows 7 home premium on my comp, it is the 64-bit  operating system.

    The  site will NOT let me post in the  "flash player" forum. When I open the  list of forums to post in, I see  flash player listed, but it is grey  in color and you can not click on  it. Under the scroll box that gives  you the choices of forums to post  your question in you see this:
    "Why are some locations grayed out?                                                This means that you can view content in these locations, but may not   have access to post to them. Or, the content type you've chosen is not   available there (i.e. trying to put a blog post in a project where  blogs  are turned off). Also to move content to "Your documents",  "Private  discussions" or "Your Videos" you have to be the author."
    So   tell me HOW the hell am I supposed to post in that forum, when it is   not letting me?  I have had   this problem since back in April, I have tried posting to get help and   all I get is complaints I posted in the wrong place, and it is the SITE   that is not letting me post in the right place.

  • After upgrading to Yosemite I cannot see my other iMac at home (note I am at work) in the Finder window shared devices.  Note my iMac at home is connected to an airport extreme (as is my work iMac) and I can see both airport extreme.

    Aftger I upgraded to Yosemite I cannot see my iMac at home from my work (i.e in Finder window under shared devices).  Note both my work and home iMac are connected to time capsules and I can see both of those time capsules but I cannot see either iMac from the other location.  My guess is that the time capsule is blocking the connection to the iMac.  One last comment occasionally (5% of the time) my iMac does magically appear in the shared Finder window but this is extremely rare.  Any help????

    Just discovered this one myself.  OK, this may sound silly but place your cursor next to the word "Shared" on the finder sidebar.  The "hidden" command "Show" will magically appear.  Clicking that will display your other network attached devices.
    This appears to be a new "feature" that some freaking genius thought was some how "Cool".   My only assumption is that Apple programers expect users to randomly move their cursor around the screen in hopes of finding some critical function like looking for an easter egg in their favorite game.

  • How can I extend the calendar alarm sound on my iPhone?

    Before I got my iPhone I used my mobile phones (dumb, android, Symbian) to set an alarm with the calendar. I'm having a hard time properly doing so on my iPhone. My brain is lined with teflon and I forget a lot of stuff - up until now my mobile phones have been vital in remedying this.
    Say that I have an important appointment at 14:00 two weeks from now, I punch it in the calendar on my iPhone and let it alert me an hour before the event. When the time comes my iPhone lets out a measly "beep" that no one hears and I miss the appointment - I can go entire work days without looking at my phone (and phone usage is strongly discouraged at my workplace) so this is really a big problem for me. So far I've missed a couple of important meetings, left important stuff undone and forgot to pick my kid up from kindergarten (my wife usually does, but there are those rare, calendar reminder occasions when I have to)!
    On all the other phones I've owned I'd be able to set the calendar alarm so that it would go on and on and on until I reacted, thus minimizing the odds of me missing the alarm. I have no idea how to make my iPhone do this.
    Sure there are workarounds like making the calendar alarm go off a day before to remind me to create an actual alarm clock alarm for the day after but that really seems to be an uneccesary hazzle and a major design flaw - also, what if I'm really busy when the early reminder goes off and I forget to set the alarm? Or perhaps I should attempt to tame myself to constantly check my iPhone for possible alerts? I really love my iPhone, but if it becomes a handicap i'll throw it away in a heartbeat.

    I was not aware of the fact one could use ringtones as alarms, this will suffice! Although I foresee some very awkward times as the sound does not stop once I respond to the reminder (it keeps going for good five - ten seconds after I "stop" the reminder), but it's better than missing it altogether!
    Thank you very much!
    Regarding the Alarmed app, doesn't it have to be running to actually remind you?
    -Modular747: I don't know anyone who actually reads the terms of service agreement, those things are usually up to thirty, small print pages full of legal jargon. Rules, I do read - not the legal documents (also they often contradict the laws in my country, but that's a whole different story).
    I agree with you - the average customer support consultant mostly cares about keeping his job and earning his salary (don't we all?) and thus racking up completted tasks (i.e. getting rid of customers as fast as possible - in a good mood). The "threat" none the less is real, if a cell phone causes me more trouble than it is worth, I will indeed throw it away (I have done so before) - and recommend a different brand to anyone willing to listen.
    Don't get me wrong, I love Apple and I've been faithfully using and recommending their producs for twenty years now, not because of fanboyism, but because they earned it. This calendar issue, however, is like a toaster that doesn't automatically eject the toast at the set time. I see it as a major flaw and after googling around a bit I see that it's been around since at least 2007 (THAT'S SEVEN YEARS!!) so I strongly believe they are aware of this problem by now, but are choosing to ignore it for some mysterious reason and it really ****** me off.
    I will send the feedback but based on my observations I suspect the Send button is merely a cleverly disguised Delete button.

  • Why can't I work with ColdFusion documents?

    Um... just updated and went to open some ColdFusion files I normally work with but can't open them at all. They are grayed out. And there is no longer a ColdFusion option in the "New" panel. And in preferences you cannot select ColdFusion as the default document type.
    Did I just miss where it is?

    I sincerely hope that someone can offer me a solution to this latest (and quite frankly greatest hiccup in the world of coldfusion for me). I NEVER post on blogs, forums or otherwise as I can usually find what I need to know if I look around but this is not the case. I was anxiously awaiting the new cc for dreamweaver since the purported tools that would make my development much more integrated with the latest methods only to discover this morning that there was absolutely no coldfusion "anything" in the program. I thought it was the way I set up the panels. But nope...
    Now I installed cfbuilder. ok, fine it will cover all of the "programming" part of coldfusion and it looks like it will do that better. I get that.
    BUT, how exactly do you take the "ugly" stuff that cfbuilder will help me build and actually turn it into a website that the latest trends require? I understand that I can open the file in dreamweaver and make it "pretty" but the real issue is that so much of the time the "application" that I am building is very much a part of the "website" that I am building - ok, ALL the time. What exactly is the commonly accepted workflow that will make this whole thing flow properly without having to switch between completely different applications all the time.
    My issue is that maybe I don't understand that cf is a website language for displaying on web browsers, or am I wrong for the past 10 years...
    Yes, I develop "applications" that are not pretty sometimes for the customer that needs a program made for them custom, but that is so rare that it does not accompany a website that holds it all.
    How is this accomplished? I know I ramble and I hope I got my point across. Can you help me with finding a solution that will allow me to continue to use coldfusion in beautiful css and jquery websites as my customers have come to expect.
    Please reply?

  • Can iPhoto and Picasa co-exist?

    I am using OS X, my wife has a Vista PC, our huge photo collection is on an external NAS.
    We both use Picasa to access our photos - me, I have to boot into Vista to do so, since there still is no Mac version for Picasa.
    What I would LIKE to do though, is using iPhoto on my Mac while my wife uses Picasa on her PC. I guess I could use Hazel to automatically add all photos to iPhoto that are dropped into a folder on our NAS. And tell iPhoto to store all photos on the NAS. But I guess I am missing something big here, right?
    Did anyone try that before? Is it possible? Or am I dreaming?

    The answer is Yes... but...
    If you use iPhoto in Referenced mode you can do this. Simply go to iPhoto Menu -> Preferences -> Advanced and uncheck 'Copy Files to the iPhoto Library on Import'.
    Now iPhoto will not copy the files, but rather simply reference them on your NAS. To do this it will create an alias in the Originals Folder that points to your file. It will still create a thumbnail and, if you modify the pics, a Modified version within the iPhoto Library Folder.
    However, you need to be aware of a number of potential pitfalls using this system.
    1. Import and deleting pics are more complex procedures. You are responsible for file management. You put the pics on the NAS, you remove them yourself after deleting them from iPhoto. Essentially you're telling iPhoto 'Don't touch my pics' and this includes on the way in and the way out.
    2. You cannot rename the files on your system or iPhoto will lose track of them. Nor can you move them on systems prior to 10.5 and iPhoto 08. Even with the later versions issues can still arise if you move the referenced files to new volumes or between volumes.
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    Always allowing for personal preference, I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers. But then again, you are.
    Downsides? iPhoto has no cross platform ability whatever. Edits you make in iPhoto or via iPhoto will not be available to your Wife unless you export them back to the NAS. Don't move the Library to the NAS, folks have reported issues (up to and including database corruption) with Libraries on a NAS. Also, depending on the Format of the NAS there can be rare problems with the jpegs losing their file suffixes and becoming .exe files. (This can be easily repaired with a batch file renamer such as Name Mangler).
    My best suggestion: create a test library. Set to Referenced Mode. Import 100 pics and see how things go. Play with it and see how things hang together or not.
    Or change your wife to a mac.
    Regards
    TD

  • Can't Re-Install quicktime X

    I have macbook pro with snow leopard and I accidentally deleted quicktime x. I have searched around and found that some others are having some of the same difficulties that I am experiencing so I tried the-
    1) Dowload and install Pacifist
    (2) Insert your Snow Leopard install DVD
    (3) Run Pacifist and choose "Open Apple Install Disks" (takes a bit)
    (4) Search for "Quicktime Player.app"
    (5) Select "Quicktime Player.app" (in Essentials.pkg/Applications) and choose "Install to Default Location"
    But when I do step 4 Its only the players of different languages are there and there aren't any for english.
    So I just picked a random language and did the rest of the steps. When I try and open quicktime player it says "You can't open the application Quick Time player because it may be damaged or incomplete."
    Am I doing something wrong in step 4? Or is it something that is really messed up with quicktime.
    I really want quicktime 7. When I try and install QT 7 it says that I already have QT X. So any help would really be appreciated. I normally can figure it out by other peoples questions but this is the rare case where I can't find an answer.
    I'm thinking that I have to have QT X in order to get QT 7, so if you think if I buy QT 7 and install that would that fix all the issues?
    Thanks

    I just downloaded QT 7.6.6. and it still won't open.
    Can you be more specific? Doesn't open QT 7 when you press the app icon in the doc, when you double-click the Finder icon, when you drop a movie file on the dock icon, opens QT X Player when you double-click a movie icon, etc.
    But I just tried to open an .avi file with the normal QT X to see if that was working. But it just says "loading movie" and I have waited like 20 mins and still nothing. I used to open this .avi all the time so I know it works.
    I would normally recommend you make initial tests with content compatible with the built-in system components before throwing unspecified compression formats in containers requiring third-party component support. Installation/reinstallation of the system OS/QT Player apps sometimes orphans user installed components like Flip4Mac, Perian, and the QT MPEG-2 Playback component which may or may not have to be re-installed in order to work. In other cases, installation/re-installation of QT 7 (which no longer has access to legacy preference switch) may turn off legacy codec access some of which may only work in QT 7 anyway. So when making refences to AVI content, please include a reference to the actual compression formats contained in the file in order to get a better idea as to what actions the player has to go through to load and/or preconvert the file data. Can you post a sample file of similar content for testing on systems which currently appear to be operating normally? Also, do you have similar loading problems using the MPEG Streamclip app which also accesses the QT component configuration. I am also assuming here, tht you have never attemted to run a QT installer package that would modify the QT structure that is embedded in your OS.
    So I'm thinking QT X is now installed but not working correctly. because I can't open any of the files I used to be able to open.
    As previously indicated, QT X, QT 7, and even MPEG Stremclip are all independent applications that can not only be simultaneously installed on your system, but can also simultaneously display different movies assuming this does not overtax your system with each operating in 64-bit mode or switching between 32- and 64-bit modes as required for playback when QT and components are properly installed and working correctly. That is why it is important to determine if your problem is tied to application installation, the embedded QT structure (i.e., OS problem), or malfunctioning/orphaned components.
    As a last resort, if you have a free external drive, I personally would create a pristine external boot drive with basic system software software for test purposes. (I personally keep at least two drives available—one with my current Lion OS and a second with Snow Leopard v10.6.8 for both software testing and in case my main internal drive dies unexpectedly. As to document files, I keep all of my important project files on RAID 5 and RAID 6 protected multi-TB drives.

  • I cant open my webrowser at all i try opening firefox and it dosent open what can i do?

    i need help i try and run firefox and it just dosent open i can use other browsers just not firefox which i love using more how can i fix this asap?

    Hi b:
    No apology necessary.
    Go to your home folder (abbreviated ~). ~library>preferences. Drag the preference file I indicated (plist) to the trash and restart your computer. OS X creates preference files as needed. It is not a cure all, but corrupt preference files (rare, but it happens) can cause all sorts of strange behavior.
    Barry

  • Major Problem iphone 4. I can hear them, they cannot hear me.

    This has been happening for the last 3 days. I make or receive a call on my iPhone 4 and within seconds the party on the other line cannot hear me at all. I hear them perfectly but they cannot hear me. Sometimes it happens right away sometimes it takes several seconds but my voice completely drops out. This happens 50 to 80% of the time.
    Went to the apple store and they checked it by using the recorder app which worked fine and then by making a call which also worked fine. They did not perform any diagnostics. I'm on the road all day and my business depends on my phone. I am now afraid to make calls for fear of the person on the other side losing me mid sentence or not hearing me at all. Sometimes it works, sometimes it does not. This happens whether I'm on speaker, mic or bluetooth.
    I upgraded to the latest software on Sunday and to no avail. Am I alone? 32gb iPhone 4 4.0.2 software. Any ideas?
    Could this be iPhone problem or ATT?

    Hi
    This has also been an issue with my iphone 4, 4.0.1 also.
    It worked well for a week but then the person I am talking to can no longer hear me or my voice sounds muffled. This seems to be an intermittent problem but very frustrating. If using speaker phone it works well, for now.
    I went into the Orange store and the guy said he has heard of the problem but it's very rare. He told me that Apple can do a diagnostic to see if it is a problem they can fix.
    Will let you know if this works.

Maybe you are looking for

  • WMS :  How to Process Sales Order Released before Turning on WMS

    Hello Gurus, How to process sales orders released before WMS enable flag is turned on in the  new WMS enviournment in Oracle 11.5.10 ?

  • Mac on domain

    I am being asked to support our 4 Mac users in our graphic department. Setup are they need to be on the domain to be par with windows. I am not an server guy or an engineer, just a desktop person at my work. I am thrown in cause I'm the only person i

  • Passing from data from one page to another

    Hi All, i'm currently doing a CSV file upload into a database application, and I'm wondering if it is possible to pass the data from the file field to another php file which executes the command of inserting the data of the csv file into the database

  • Library Module - Quick Develop Panel

    Hi, I was really hoping that the Quick Develop panel in the Library Module which I sometimes use if there are minor touchups needed to a photo would have been redesigned to more closely resemble and work like the Basic panel in the Develop Module.  C

  • What do you have to take to the apple store to claim warranty

    what documents do you have to take to the apple store to claim warranty?