Bash console appeared out of nowhere in dock

Hi,
I have just had the Bash console appear out of nowhere on my dock. It doesn't show anything in history command. Im using Yosemite, am i safe?
Also i installed Sopcast last week and I'm unable to delete, what do you think? connected? How can i delete this program? it won't drag to the trash!
Regards,
Darren

Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
I never install system modifications myself, and except as stated in this comment, I don't know how to uninstall them. You'll have to do your own research to find that information.
Here are some general guidelines to get you started. Suppose you want to remove something called “BrickMyMac” (a hypothetical example.) First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickmymac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickMyMac.dmg and open it. There may be an application in there such as “Uninstall BrickMyMac.” If not, open “BrickMyMac.pkg” and look for an Uninstall button. The uninstaller might also be accessed by clicking the Customize button, if there is one.
Back up all data before making any changes.
You will generally have to restart the computer in order to complete an uninstallation. Until you do that, there may be no effect, or unpredictable effects.
If you can’t remove software in any other way, you’ll have to erase and install OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" such as "AppCleaner" and the like that purport to remove software.

Similar Messages

  • Black vertical bar with lines on Macbook pro screen Appeared out of nowhere

    I was working on my computer late at night. Like always.
    I went to bed, and left the computer on in it's screen saver , as I always do.
    When I woke up I had a black vertical bar on the screen about 1 1/2 inch thick with some flickering lines next to it.
    here is what it looks like: http://www.talkcitee.com/ourspaceimages//2coolcode/2coolcode.jpg
    I don't believe this to be a memory problem, I can take snapshots of the full screen, and I can hook up an external monitor with no problem. Also restarded PRAM plenty of times, etc.
    But this black bar appeared out of nowhere. As if one way my screen decided it was going to blow out on me out of nowhere. I've had this MacBook for 2 years.
    Question is, do you think the problem is:
    a) the screen
    b) connection / short problem to the screen inside the macbook
    I hope it's B , because they told me it would cost $800 to replace the screen which is stupid cus I can get a new macbook pro for less than that.
    I think there is a connectivity problem with the hardware , possibly a short, or something messed up with the wires or pins that link to the screen.
    I noticed after repeatedly opening and closing the macbook, there were some changes in the small flickering lines next the big bar, and some of them turned solid black.
    Has this happened to anybody else before?
    Message was edited by: Uhuru83

    Usually what happens is that over time the cable comes loose from the back. This happens because the enclosure within the hinge housing is quite tight and the LVDS cable has little room to move around. Because of the frequent opening and closing on the lid, the cable starts to move out of place try opening and closing it a few times and push it back very gently. You might see the line disappear or decrease slightly.

  • 127.0.0.2 address appearing out of nowhere!

    I made a trivial console-based chat application to learn RMI and the callback feature. It works when I run it at the same computer, but when I start the server part on the linux box and then try to connect to it with the client part (by specifying the server address 192.168.1.103 as argument) from windows i get this exception:
    java.rmi.ConnectException: Connection refused to host: 127.0.0.2; nested excepti
    on is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:601)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:198
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:184)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:110)
    at callback.ServerImpl_Stub.addClient(Unknown Source)
    at callback.ClientMain.main(ClientMain.java:43)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:519)
    at java.net.Socket.connect(Socket.java:469)
    at java.net.Socket.<init>(Socket.java:366)
    at java.net.Socket.<init>(Socket.java:179)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:595)
    ... 5 more
    ...so where does this 127.0.0.2 address come from?! I can ping the machines from each other and the firewall on the linux is off. Java on both machines is java SE6
    here are my interfaces:
    public interface ServerInt extends Remote {
        public void addClient(ClientInt client) throws RemoteException;
        public void removeClient(ClientInt client) throws RemoteException;
        public void publish(String clientID, String msg) throws RemoteException;
    public interface ClientInt extends Remote {
        public void notify(String msg) throws RemoteException;
        public String getID() throws RemoteException;
    }and here are the main classes that manages objects which implement my remote interfaces (ClientImpl and ServerImpl):
    public class ServerMain {
        /** Creates a new instance of ServerMain */
        public ServerMain() {
         * @param args the command line arguments
        public static void main(String[] args) {
            ServerImpl server = new ServerImpl();
            try {
                LocateRegistry.createRegistry(1099);
                ServerInt stub = (ServerInt)UnicastRemoteObject.exportObject(server, 0);
                Registry registry = LocateRegistry.getRegistry();
                registry.bind("MyServer", stub);
                System.err.println("Server ready");
            } catch (Exception ex) {
                ex.printStackTrace();
    public class ClientMain {
        /** Creates a new instance of ClientMain */
        public ClientMain() {
         * @param args the command line arguments
        public static void main(String[] args) {
            String host = args[0];
            String clientName = args[1];
            ClientImpl client = new ClientImpl(clientName);
            try {
                Registry registry = LocateRegistry.getRegistry(host);
                ServerInt localStub = (ServerInt) registry.lookup("MyServer");
                UnicastRemoteObject.exportObject(client,0);
                localStub.addClient(client);
                BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
                String userInput = "";
                while(!userInput.equals("quit")){
                    userInput = keyboard.readLine();
                    localStub.publish(clientName, userInput);
                localStub.removeClient(client);
                UnicastRemoteObject.unexportObject(client, false);
                System.out.println("Connection to Server closed");
            } catch (Exception ex) {
                ex.printStackTrace();
    }EDIT: the server is started with java -classpath D:/Java/ -Djava.rmi.server.codebase=file:D:/Java/ callback.ServerMain
    and to connect with a client:
    java -classpath D:/Java/ callback.ClientMain serverAddr myNick
    Message was edited by:
    dadox01

    Sry I was away for the weekend; so the machine's hostname is "revers"; here is what's inside the /etc/hosts file:
    # hosts This file describes a number of hostname-to-address
    # mappings for the TCP/IP subsystem. It is mostly
    # used at boot time, when no name servers are running.
    # On small systems, this file can be used instead of a
    # "named" name server.
    # Syntax:
    # IP-Address Full-Qualified-Hostname Short-Hostname
    127.0.0.1 localhost
    # special IPv6 addresses
    ::1 localhost ipv6-localhost ipv6-loopback
    fe00::0 ipv6-localnet
    ff00::0 ipv6-mcastprefix
    ff02::1 ipv6-allnodes
    ff02::2 ipv6-allrouters
    ff02::3 ipv6-allhosts
    127.0.0.2 revers revers
    Btw I tried the app with another 2 pcs in another network, vista + xp and it worked fine.

  • What's with the double window appearing out of nowhere in Address Book?

    There is one window visible all through the Time Machine process until the very end when suddenly a phantom Address book window appears.
    To recreate:
    Open Address Book
    Open Time Machine
    Scroll to the oldest address book window in TM
    Click Cancel
    TM returns to present and as TM quits the two windows appear.

    I duplicated this, and indeed, a second window shows up. However, it vanishes in less than a second on my machine. I believe it's the one shown while in Time Machine mode; apparently, when viewing the address book, Time Machine moves back to "real time" before closing the window, the opposite of what one usually sees. Are you saying that in your case, the second window stays open?
    Daniel

  • Bing search engine appearing out of nowhere (?)

    Earlier today, I noticed that the Bing search engine was listed as the most recent addition to the Firefox search bar in my main profile (note: there seem to be no other traces of Bing in Firefox, the address bar has NOT been hijacked etc.) I have removed it by now (without trying whether therewas anything strange about it beyond its appearance there) but can't help wondering how it got there.
    Further research in Windows Explorer suggests that the engine was installed on August 25 at 6:40pm, which -- again going by Windows Explorer info -- must have been about 25 minutes after 4.0b4 was installed and about 10 minutes after I first accessed this particular profile in 4.0b4.
    Unfortunately, I have no history left from that day and thus can't reproduce my browsing history; I also don't recall anything surprising and certainly didn't consciously add Bing. My system seems fine otherwise, and Kaspersky IS + NoScript + a very careful attitude towards browsing usually tend to do a great job at keeping my system clean. Does anyone have any ideas what this might have to do with, whether this might have appeared through "legit" channels? Thanks for any info!

    Maybe you have MS software that added it.<br />
    See [[Removing the Search Helper Extension and Bing Bar]]

  • Why did iMUNIZATOR page appear out of nowhere on Safari 3.1?

    I was accessing the food channel and iMUNIZATOR pop up page appeared. I read on google that this is because of a weakness of Safari. Do I have to do anything and is it harmful?

    It automatically open for me too when I was at foodnetwork.com. My guess is that it's something on their side. I sent them an email. We'll see what they have to say.

  • Welcome screen and setup appeared out of nowhere!

    I have G4 iMac, running 10.4.11. Upon logging out of my user, my iMac went to the welcome screen and the setup programme, as though I had just installed for the first time!
    I decided to shut the machine down and now, when I restart, I get the gray screen and the apple shows up, but then it hangs and the fans start running.
    HELP!!! What should I do?

    Whew, we've got at the very least some Disk Corruption, occasionally this will work...
    Safe Boot, (holding Shift key down at bootup), if it eventually boots, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If not, "Try Disk Utility
    1. Insert the Mac OS X Tiger Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    If the Diisk checks out but you cannot still boot up...
    Reset OS X Password Without an OS X CD...
    http://theappleblog.com/2008/06/22/reset-os-x-password-without-an-os-x-cd/
    Starts up like the first time you buy a new Mac, but after filling in all that info again, you should have access to the computer and the other Users & files will still be there... though I was just thinking, this new User probably shouldn't be the same name as an existing one.

  • Latin filler text appears out of nowhere

    I'm using InDesign for the first time to build a book. A book publisher has given me templates to use. My book has two kinds of pages, one for chapter title pages and the other for the pages within a chapter. I want each of the chapter title pages to have a unique color, which I apply.
    I just applied a color to the title page for Chapter 1. I succeeded in getting the color I wanted, but Latin filler text appeared under the color! I don't know how to make the words disappear. Can someone please explain what happened and tell me how to keep the color and get rid of the Latin text?

    I'm grateful for the replies. As a rookie user, I wasn't even aware that there were layers, or how to find the Layers panel. When I found it, I simply selected the Latin filler text and deleted it. The rest of the page remains intact.
    Even though the error is corrected, I still don't know how the text got there. It's not on the master page. It remains to be seen whether the text was added by an unwitting rookie blunder or is buried in the template and bound to resurface.
    PS. The decision to print in color — this is a book of flower photos — is quite apart from my "where did the text come from" and "how do I delete it" inquiries.

  • Clips appear out of nowhere

    Just finishing project. Went back to adjust a fade at the end of the project and now imovie seems to loop back to about the middle of the project and show previous slides imported complete with transitions.
    If you look at the end in timeline or photo view, there is nothing there. But when the project plays, they are there and they burn to the DVD too.
    Tried pasting and cutting but those chunks remain. Can't seem to delete what I can't see.
    Ideas?

    thanks. i did that and found the files/foders that i mentioned above
    i have 6 configuration folders, i guess the one titled Configuration is the latest
    in it i see
    FileCache.dat but do not see WinFileCache-********.dat
    i did open filecache.dat in notepad and i saw chinese characters
    should i delete that file?

  • Event Window has a new section that appeared out of nowhere

    Would like to remove this new section from the Event Window.  I have inserted a screen shot of the event window.  The section I want removed is the 3rd one (middle of screen and next to video picture).  How do I remove it?
    Currently, I have Final Cut Pro 10.6.8 with Snow Leopard operating system.

    Hi Tom,
    Thanks for responding.  I have inserted another screen shot to highlight the area I mean.

  • Mysterious "Installer" Process Appears Out of Nowhere, Causes Freeze

    Every now and then, my computer will start running slower and slower, to the point where it simply freezes.  Every time this occurs, and I manage to get into Activity Monitor before the works get totally gummed up, I find a process named "Installer" occupying gigabytes of RAM, with the total constantly increasing.  If I manage to force quit this process before the freeze the computer goes back to normal.  I have no idea what is causing this process to launch, or how to prevent it in the future, and would love to simply eliminate the process once and for all.  You can see the fatal process in the screenshot below.

    You can use Activity Monitor to stop that process. You need to change the "My Processes" pull-down to "All Processes." Otherwise some nasty culprits stay hidden.
    The file called "Processing" that tops you list concerns me more--I've not seen that one. I think you have some form of malware. The easiest way to diagnose is for you to show us a safe snapshot of your system config.
    Please download and install this free utility:
    http://www.etresoft.com/etrecheck
    It is secure and written by one of our most valued members to allow users to show details of their computer's configuration in Apple Support Communities without revealing any sensitive personal data.  Run the program and click the "Copy report to clipboard" button when it displays the results. Then return here and paste the report into a response to your initial post. It can often show if any harmful files/programs are dragging down your performance.
    The Memory info at the bottom of the screen shows you are starved for RAM, but we need to get of of these odd processes first before deciding to add RAM.

  • A new playlist titled "**** Off!" has appeared out of nowhere on my iTunes

    Well I'm the ONLY one who uses my comp...so nobody else put it on there. It's right underneath the "Purchased" playlist, and it has a dark blue icon with a music note in it, and a padlock in front of it. If I click it, on the top it acts as if it's trying to access something by saying "Loading **** Off!" Nothing happens...it doesn't load anything...and I can't even delete the playlist "**** Off!"
    So what is up with this? I just downloaded the new version of iTunes and all of a sudden that comes up.

    Cable Internet is often a shared network for a given neighborhood, so you're probably seeing someone in a different residence that just happens to be on your same network segment. But it is also possible that someone else is piggybacking on your wireless. It's always a good idea in general to secure your wireless network, so consult your router's documentation and get your network locked down.

  • Very Low Sound, occured out of nowhere.

    Out of nowhere, the sound on my computer will only go to about 1/4 of the actual maximum volume, even when everything is turned up to max in alsamixer, and on my main module.  This occured out of nowhere one day, and i can't seem to find a solution to it anywhere.  Any advice?
    Here's my dmesg and uname -a outputs:
    dmesg :
    [matt@Arch ~]$ dmesg
    Linux version 2.6.25-ARCH (root@architect) (gcc version 4.3.1 20080626 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Jul 3 20:29:23 CEST 2008
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
    BIOS-e820: 000000000008f000 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000007de6d000 (usable)
    BIOS-e820: 000000007de6d000 - 000000007def1000 (ACPI NVS)
    BIOS-e820: 000000007def1000 - 000000007edfa000 (usable)
    BIOS-e820: 000000007edfa000 - 000000007ee07000 (reserved)
    BIOS-e820: 000000007ee07000 - 000000007eea9000 (usable)
    BIOS-e820: 000000007eea9000 - 000000007eeae000 (ACPI data)
    BIOS-e820: 000000007eeae000 - 000000007eef2000 (ACPI NVS)
    BIOS-e820: 000000007eef2000 - 000000007eef3000 (usable)
    BIOS-e820: 000000007eef3000 - 000000007eeff000 (ACPI data)
    BIOS-e820: 000000007eeff000 - 000000007ef00000 (usable)
    BIOS-e820: 000000007ef00000 - 000000007f000000 (reserved)
    BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    1135MB HIGHMEM available.
    896MB LOWMEM available.
    Scan SMP from c0000000 for 1024 bytes.
    Scan SMP from c009fc00 for 1024 bytes.
    Scan SMP from c00f0000 for 65536 bytes.
    found SMP MP-table at [c00fe200] 000fe200
    Entering add_active_range(0, 0, 519936) 0 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    Normal 4096 -> 229376
    HighMem 229376 -> 519936
    Movable zone start PFN for each node
    early_node_map[1] active PFN ranges
    0: 0 -> 519936
    On node 0 totalpages: 519936
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 4064 pages, LIFO batch:0
    Normal zone: 1760 pages used for memmap
    Normal zone: 223520 pages, LIFO batch:31
    HighMem zone: 2270 pages used for memmap
    HighMem zone: 288290 pages, LIFO batch:31
    Movable zone: 0 pages used for memmap
    DMI 2.4 present.
    ACPI: RSDP 000FE020, 0014 (r0 INTEL )
    ACPI: RSDT 7EEFD038, 004C (r1 INTEL DP965LT 697 1000013)
    ACPI: FACP 7EEFC000, 0074 (r1 INTEL DP965LT 697 MSFT 1000013)
    ACPI: DSDT 7EEF7000, 40ED (r1 INTEL DP965LT 697 MSFT 1000013)
    ACPI: FACS 7EEAE000, 0040
    ACPI: APIC 7EEF6000, 0078 (r1 INTEL DP965LT 697 MSFT 1000013)
    ACPI: WDDT 7EEF5000, 0040 (r1 INTEL DP965LT 697 MSFT 1000013)
    ACPI: MCFG 7EEF4000, 003C (r1 INTEL DP965LT 697 MSFT 1000013)
    ACPI: ASF! 7EEF3000, 00A6 (r32 INTEL DP965LT 697 MSFT 1000013)
    ACPI: SSDT 7EEAD000, 01BC (r1 INTEL CpuPm 697 MSFT 1000013)
    ACPI: SSDT 7EEAC000, 0175 (r1 INTEL Cpu0Ist 697 MSFT 1000013)
    ACPI: SSDT 7EEAB000, 0175 (r1 INTEL Cpu1Ist 697 MSFT 1000013)
    ACPI: SSDT 7EEAA000, 0175 (r1 INTEL Cpu2Ist 697 MSFT 1000013)
    ACPI: SSDT 7EEA9000, 0175 (r1 INTEL Cpu3Ist 697 MSFT 1000013)
    ACPI: PM-Timer IO Port: 0x408
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Processor #0 6:15 APIC version 20
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Processor #1 6:15 APIC version 20
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled)
    ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
    ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Enabling APIC mode: Flat. Using 1 I/O APICs
    Using ACPI (MADT) for SMP configuration information
    Allocating PCI resources starting at 80000000 (gap: 7f000000:80f00000)
    PM: Registered nosave memory: 000000000008f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 515874
    Kernel command line: root=/dev/sda1 ro
    mapped APIC to ffffb000 (fee00000)
    mapped IOAPIC to ffffa000 (fec00000)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Detected 1864.857 MHz processor.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Memory: 2055804k/2079744k available (2083k kernel code, 21676k reserved, 711k data, 268k init, 1161320k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff80000 - 0xfffff000 ( 508 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf8800000 - 0xff7fe000 ( 111 MB)
    lowmem : 0xc0000000 - 0xf8000000 ( 896 MB)
    .init : 0xc03c1000 - 0xc0404000 ( 268 kB)
    .data : 0xc0308fe8 - 0xc03baea0 ( 711 kB)
    .text : 0xc0100000 - 0xc0308fe8 (2083 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    CPA: page pool initialized 1 of 1 pages preallocated
    SLUB: Genslabs=12, HWalign=64, Order=0-1, MinObjects=4, CPUs=2, Nodes=1
    Calibrating delay using timer specific routine.. 3733.20 BogoMIPS (lpj=6219526)
    Security Framework initialized
    Capability LSM initialized
    Mount-cache hash table entries: 512
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 2048K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    using mwait in idle threads.
    Compat vDSO mapped to ffffe000.
    Checking 'hlt' instruction... OK.
    ACPI: Core revision 20070126
    ACPI: Checking initramfs for custom DSDT
    CPU0: Intel(R) Core(TM)2 CPU 6300 @ 1.86GHz stepping 06
    Booting processor 1/1 ip 4000
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 3730.78 BogoMIPS (lpj=6215661)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 2048K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#1.
    CPU1: Intel(R) Core(TM)2 CPU 6300 @ 1.86GHz stepping 06
    Total of 2 processors activated (7464.99 BogoMIPS).
    ENABLING IO-APIC IRQs
    ..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
    checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Brought up 2 CPUs
    net_namespace: 548 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: BIOS Bug: MCFG area at f0000000 is not E820-reserved
    PCI: Not using MMCONFIG.
    PCI: Using configuration type 1
    Setting up standard PCI resources
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
    pci 0000:00:1f.0: quirk: region 0500-053f claimed by ICH6 GPIO
    PCI: Transparent bridge - 0000:00:1e.0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 *9 10 11 12)
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12)
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 *9 10 11 12)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 *11 12)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 12 devices
    ACPI: ACPI bus type pnp unregistered
    PCI: Using ACPI for IRQ routing
    PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    system 00:01: iomem range 0xf0000000-0xf7ffffff has been reserved
    system 00:01: iomem range 0xfed13000-0xfed13fff has been reserved
    system 00:01: iomem range 0xfed14000-0xfed17fff has been reserved
    system 00:01: iomem range 0xfed18000-0xfed18fff has been reserved
    system 00:01: iomem range 0xfed19000-0xfed19fff has been reserved
    system 00:01: iomem range 0xfed1c000-0xfed1ffff has been reserved
    system 00:01: iomem range 0xfed20000-0xfed3ffff has been reserved
    system 00:01: iomem range 0xfed45000-0xfed99fff has been reserved
    system 00:01: iomem range 0xc0000-0xdffff could not be reserved
    system 00:01: iomem range 0xe0000-0xfffff could not be reserved
    system 00:06: ioport range 0x500-0x53f has been reserved
    system 00:06: ioport range 0x400-0x47f has been reserved
    system 00:06: ioport range 0x680-0x6ff has been reserved
    PCI: Failed to allocate mem resource #6:20000@90000000 for 0000:01:00.0
    PCI: Bridge: 0000:00:01.0
    IO window: 2000-2fff
    MEM window: 0x90000000-0x92ffffff
    PREFETCH window: 0x0000000080000000-0x000000008fffffff
    PCI: Bridge: 0000:00:1c.0
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:1c.1
    IO window: 1000-1fff
    MEM window: 0x93100000-0x931fffff
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:1c.2
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:1c.3
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:1c.4
    IO window: disabled.
    MEM window: disabled.
    PREFETCH window: disabled.
    PCI: Bridge: 0000:00:1e.0
    IO window: disabled.
    MEM window: 0x93000000-0x930fffff
    PREFETCH window: disabled.
    ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    ACPI: PCI Interrupt 0000:00:1c.0[A] -> GSI 17 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    ACPI: PCI Interrupt 0000:00:1c.1[b] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1c.1 to 64
    ACPI: PCI Interrupt 0000:00:1c.2[C] -> GSI 18 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:1c.2 to 64
    ACPI: PCI Interrupt 0000:00:1c.3[D] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1c.3 to 64
    ACPI: PCI Interrupt 0000:00:1c.4[A] -> GSI 17 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:00:1c.4 to 64
    PCI: Setting latency timer of device 0000:00:1e.0 to 64
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    Unpacking initramfs... done
    Freeing initrd memory: 545k freed
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: disabled - APM is not SMP safe.
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:01:00.0: Boot video device
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:01.0:pcie00]
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.0:pcie00]
    Allocate Port Service[0000:00:1c.0:pcie02]
    PCI: Setting latency timer of device 0000:00:1c.1 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.1:pcie00]
    Allocate Port Service[0000:00:1c.1:pcie02]
    PCI: Setting latency timer of device 0000:00:1c.2 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.2:pcie00]
    Allocate Port Service[0000:00:1c.2:pcie02]
    PCI: Setting latency timer of device 0000:00:1c.3 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.3:pcie00]
    Allocate Port Service[0000:00:1c.3:pcie02]
    PCI: Setting latency timer of device 0000:00:1c.4 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.4:pcie00]
    Allocate Port Service[0000:00:1c.4:pcie02]
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    input: AT Translated Set 2 keyboard as /class/input/input1
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 1
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 268k freed
    No dock devices found.
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ACPI: PCI Interrupt 0000:00:1f.2[A] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1f.2 to 64
    ACPI: PCI interrupt for device 0000:00:1f.2 disabled
    ACPI: PCI Interrupt 0000:00:1f.5[A] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1f.5 to 64
    ACPI: PCI interrupt for device 0000:00:1f.5 disabled
    ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 17 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:03:00.0 to 64
    ACPI: PCI interrupt for device 0000:03:00.0 disabled
    ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 17 (level, low) -> IRQ 17
    PCI: Setting latency timer of device 0000:03:00.0 to 64
    scsi0 : pata_marvell
    scsi1 : pata_marvell
    ata1: PATA max UDMA/100 cmd 0x1018 ctl 0x1024 bmdma 0x1000 irq 17
    ata2: DUMMY
    BAR5:00:00 01:7F 02:22 03:CA 04:00 05:00 06:00 07:00 08:00 09:00 0A:00 0B:00 0C:01 0D:00 0E:00 0F:00
    Switched to high resolution mode on CPU 1
    Switched to high resolution mode on CPU 0
    ata1.00: ATAPI: HL-DT-ST DVDRAM GSA-H42N, RL00, max UDMA/66
    ata1.01: ATAPI: HL-DT-STDVD-ROM GDR8164B, 0L06, max UDMA/33
    ata1.00: configured for UDMA/66
    ata1.01: configured for UDMA/33
    scsi 0:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-H42N RL00 PQ: 0 ANSI: 5
    scsi 0:0:1:0: CD-ROM HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
    ata_piix 0000:00:1f.2: version 2.12
    ACPI: PCI Interrupt 0000:00:1f.2[A] -> GSI 19 (level, low) -> IRQ 19
    ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    PCI: Setting latency timer of device 0000:00:1f.2 to 64
    scsi2 : ata_piix
    scsi3 : ata_piix
    ata3: SATA max UDMA/133 cmd 0x3438 ctl 0x344c bmdma 0x3410 irq 19
    ata4: SATA max UDMA/133 cmd 0x3430 ctl 0x3448 bmdma 0x3418 irq 19
    ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    ata3.00: ATA-7: WDC WD4000KS-00MNB0, 07.02E07, max UDMA/133
    ata3.00: 781422768 sectors, multi 16: LBA48 NCQ (depth 0/32)
    ata3.00: configured for UDMA/133
    ata4: SATA link down (SStatus 0 SControl 300)
    scsi 2:0:0:0: Direct-Access ATA WDC WD4000KS-00M 07.0 PQ: 0 ANSI: 5
    ACPI: PCI Interrupt 0000:00:1f.5[A] -> GSI 19 (level, low) -> IRQ 19
    ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    PCI: Setting latency timer of device 0000:00:1f.5 to 64
    scsi4 : ata_piix
    scsi5 : ata_piix
    ata5: SATA max UDMA/133 cmd 0x3428 ctl 0x3444 bmdma 0x30f0 irq 19
    ata6: SATA max UDMA/133 cmd 0x3420 ctl 0x3440 bmdma 0x30f8 irq 19
    ata5: SATA link down (SStatus 0 SControl 300)
    ata6: SATA link down (SStatus 0 SControl 300)
    Driver 'sr' needs updating - please use bus_type methods
    sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 0:0:0:0: Attached scsi CD-ROM sr0
    sr1: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
    sr 0:0:1:0: Attached scsi CD-ROM sr1
    Driver 'sd' needs updating - please use bus_type methods
    sd 2:0:0:0: [sda] 781422768 512-byte hardware sectors (400088 MB)
    sd 2:0:0:0: [sda] Write Protect is off
    sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 2:0:0:0: [sda] 781422768 512-byte hardware sectors (400088 MB)
    sd 2:0:0:0: [sda] Write Protect is off
    sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4
    sd 2:0:0:0: [sda] Attached SCSI disk
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: mounted filesystem with ordered data mode.
    rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month
    Intel(R) PRO/1000 Network Driver - version 7.3.20-k2
    Copyright (c) 1999-2006 Intel Corporation.
    ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 22 (level, low) -> IRQ 22
    PCI: Setting latency timer of device 0000:00:1b.0 to 64
    input: Power Button (FF) as /class/input/input2
    ACPI: Power Button (FF) [PWRF]
    input: Sleep Button (CM) as /class/input/input3
    ACPI: Sleep Button (CM) [SLPB]
    ACPI: ACPI0007:00 is registered as cooling_device0
    ACPI: Processor [CPU0] (supports 8 throttling states)
    ACPI: ACPI0007:01 is registered as cooling_device1
    ACPI: Processor [CPU1] (supports 8 throttling states)
    sr 0:0:0:0: Attached scsi generic sg0 type 5
    sr 0:0:1:0: Attached scsi generic sg1 type 5
    sd 2:0:0:0: Attached scsi generic sg2 type 0
    e1000e: Intel(R) PRO/1000 Network Driver - 0.2.0
    e1000e: Copyright (c) 1999-2007 Intel Corporation.
    ACPI: PCI Interrupt 0000:00:19.0[A] -> GSI 20 (level, low) -> IRQ 20
    PCI: Setting latency timer of device 0000:00:19.0 to 64
    Linux agpgart interface v0.103
    eth0: (PCI Express:2.5GB/s:Width x1) 00:19:d1:0a:4d:63
    eth0: Intel(R) PRO/1000 Network Connection
    eth0: MAC: 4, PHY: 6, PBA No: ffffff-0ff
    nvidia: module license 'NVIDIA' taints kernel.
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    USB Universal Host Controller Interface driver v3.0
    ACPI: PCI Interrupt 0000:00:1a.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1a.0 to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:1a.0: irq 16, io base 0x000030a0
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1a.1[b] -> GSI 21 (level, low) -> IRQ 21
    PCI: Setting latency timer of device 0000:00:1a.1 to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x00003080
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    input: PC Speaker as /class/input/input4
    ACPI: PCI Interrupt 0000:00:1a.7[C] -> GSI 18 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:1a.7 to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 3
    ehci_hcd 0000:00:1a.7: debug port 1
    PCI: cache line size of 32 is not supported by device 0000:00:1a.7
    ehci_hcd 0000:00:1a.7: irq 18, io mem 0x93225400
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 4 ports detected
    lp: driver loaded but no devices found
    PPP generic driver version 2.4.2
    ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 23 (level, low) -> IRQ 23
    PCI: Setting latency timer of device 0000:00:1d.7 to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 4
    ehci_hcd 0000:00:1d.7: debug port 1
    PCI: cache line size of 32 is not supported by device 0000:00:1d.7
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0x93225000
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 6 ports detected
    ppdev: user-space parallel port driver
    ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 23
    PCI: Setting latency timer of device 0000:00:1d.0 to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.0: irq 23, io base 0x00003060
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1f.3[b] -> GSI 21 (level, low) -> IRQ 21
    ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:01:00.0 to 64
    NVRM: loading NVIDIA UNIX x86 Kernel Module 173.14.09 Wed Jun 4 23:43:17 PDT 2008
    ACPI: PCI Interrupt 0000:07:03.0[A] -> GSI 19 (level, low) -> IRQ 19
    ACPI: PCI Interrupt 0000:00:1d.1[b] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1d.1 to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x00003040
    usb usb6: configuration #1 chosen from 1 choice
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[19] MMIO=[93004000-930047ff] Max Packet=[2048] IR/IT contexts=[4/8]
    input: PS/2 Logitech Mouse as /class/input/input5
    parport_pc 00:07: reported by Plug and Play ACPI
    parport0: PC-style at 0x378 (0x778), irq 7, using FIFO [PCSPP,TRISTATE,COMPAT,ECP]
    ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:1d.2 to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x00003020
    usb usb7: configuration #1 chosen from 1 choice
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 2 ports detected
    lp0: using parport0 (interrupt-driven).
    EXT3 FS on sda1, internal journal
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on sda2, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    Adding 1044216k swap on /dev/sda4. Priority:-1 extents:1 across:1044216k
    ieee1394: Host added: ID:BUS[0-00:1023] GUID[0090270001d98f6c]
    eth0: Link is Up 100 Mbps Full Duplex, Flow Control: None
    eth0: 10/100 speed: disabling TSO
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    eth0: no IPv6 routers present
    ACPI: PCI interrupt for device 0000:00:1b.0 disabled
    ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 22 (level, low) -> IRQ 22
    PCI: Setting latency timer of device 0000:00:1b.0 to 64
    uname -a :
    [matt@Arch ~]$ uname -a
    Linux Arch 2.6.25-ARCH #1 SMP PREEMPT Thu Jul 3 20:29:23 CEST 2008 i686 Intel(R) Core(TM)2 CPU 6300 @ 1.86GHz GenuineIntel GNU/Linux
    hwdetect --show-modules
    [matt@Arch ~]$ hwdetect --show-modules
    AGP : agpgart intel-agp
    ACPI : button dock processor thermal
    PATA : pata_acpi pata_marvell ata_generic
    SCSI : scsi_mod sd_mod sr_mod
    SATA : ata_piix
    USB : usbcore ehci-hcd uhci-hcd
    FW : firewire-core firewire-ohci firewire-core firewire-ohci ieee1394 ohci1394
    NET : e1000e ppp_generic slhc
    INPUT : evdev pcspkr psmouse serio_raw
    SOUND : snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-intel soundcore
    VIDEO : nvidia
    OTHER : cdrom lp ppdev i2c-i801 i2c-core parport parport_pc pci_hotplug shpchp rtc-cmos rtc-core rtc-lib crc-itu-t
    Last edited by opeth115 (2008-07-09 13:10:16)

    sam wrote:
    I have the same soundcard (or at least the same modules loaded) and I'm getting good volume. 
    Things to check:
    If you have the pcm and main volume all the way up in alsa mixer that should be it.  You may have to adjust the volume separately if you use esd, arts, pulse, or jack (I don't use them). 
    Another thing to test is to make sure your using alsa not oss, and you may want to raise the oss level and see what happens. 
    The final thing is you want to check to see which sound device the audio programs are using (usually found in the preferences).
    If none of that works, then you're out of luck.  It would help if you post what sound programs you are using and what sound daemons you are using.
    Here is my Daemons line from /etc/rc.conf
    DAEMONS=(@syslog-ng @network @netfs @crond @alsa @hal @fam)
    So i would think im using alsa not oss.  but how would i go about raising the oss to make sure?  there is no "oss" option in alsamixer.  I have tried just abuot every audio progream there is and even firefox, all of them produce about half of the maximum volume level.

  • I've had my iPod 5th gen for a few months now and out of nowhere the microphone has stopped working.

    I've had my iPod 5th gen for a few months now and out of nowhere the microphone has stopped working. It won't pick up anything, I can't use it for recording, face time, siri or anything else. Every time I try and record and play it back its just all fuzzy, is there anyway of fixing it without having to send it off for repair?

    - Make sure the mic hole is clear and unobstructed. It is the little hole on the back by the camera lens(if has back camera). For the 16 GB one without the back camera the mic hole is on the tope edge near the center.
    - Open the Voice Memos app and see if you see movement on the VU meter needle with changes in noise level trying to be recorded.
    - 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.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                       
    You can also send it to Apple.

  • My iTunes has stopped working out of nowhere. When iTunes is opened it displays "iTunes has stopped working" and windoes automatically closes it saying it will look for a soluton. What do I do? I have un-installed it and re-installed multiple times.

    My itunes has stopped working out of nowhere. When I open iTunes a message appears stating "iTunes has stopped working." and windows closes iTunes sayng it will look for a solution. I have Windows 8.1 64-Bit and have been using iTunes 11.1 (or the newest one out there). I have un-installed and re-installed multiple times. The same message continues to pop up.

    Hi biazonmg,
    Thanks for using Apple Support Communities.  If iTunes is unexpectedly quitting when you open it, this article has steps to isolate and troubleshoot that:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Cheers,
    - Ari

Maybe you are looking for