Location of drive in bay

Hi,
I can hear a hard drive platter making noise in my Mac Pro and need to replace it very soon. I have all my bays full. I'm trying to figure out which drive I see on my desktop is associated with the drive in the machine, because I think it's my boot drive and then I have to figure out how to transfer the information.
Is there a way to do that? I can't seem to find a utility that will tell me that information. I have tech tool pro 7 and then the standard mac utilities.
thanks
Dave

Personally I would keep TTPro 7 on another "maintenance system" used for repairs and maintenance only and keep your main system to minimum.
Carbon Copy Cloner is your best friend. And a Samsumg 840 EVO SSD for your system. $139 250GB / $299 500GB - some only need 128GB $85 model
Noise is one thing. Boot from another system drive, repair yours (or use Recovery Mode). Disk Warrior writes the SMART status to system log and will show the number of spare blocks used and remaining, that piece of information is the most telling of a failing drive. Otherwise, consider the directory being an issue, you may only need to clone it and then once sure you have another backup, erase the old system drive. If in doubt, do a 3-way (zero all is not foolproof). TTPro will do a surface media scan. In t he past it would report and tell you it found a bad block but not which and not map it out. If you have Windows the best tool is WD Lifeguard and use it to do full format and extended test. Tests SATA data cable connection for errors as well, and often with drives formatted by OS X you will find errors that are easy to rectify.
A noisy drive - WD Blacks are noisy. Even the green models are when they are being used. Of course a change in what noise it was and use to make versus now may just be seeks or directory or could be a bad sector, all of which can be repaired.

Similar Messages

  • A lot of my music is on an external Hard Drive, currently "H" drive.  When I try to play a song in the Library in Itunes I get the message that it can't find the music.  Info says it's in a different location "G" Drive.  But it's not. it's in "H" Drive.

    A lot of my music is on an external Hard Drive, currently "H" drive.  When I try to play a song in the Library in Itunes I get the message that it can't find the music.  Info says it's in a different location "G" Drive.  But it's not. it's in "H" Drive.  How do I tell it where to go?

    What if you take this same topic of an external hard drive with music but instead of directly attached to the computer the music is on a Network Attached hard drive(NAS)? Will I be able to add music to my ipod without any problem? Step that up a notch, will the two computers on my network be able to recognize the music on the NAS? Will the two users be able to create their own playlists and update their ipods independently? Now step up that up one more notch, will I be able to do this with one PC running XP and my macbook with OS X?
    Before I run out and buy a NAS I want to be certain. I also would like to convert my DVD library in the future and put it on the network available to an AppleTV or other UpNp media player in the future, because I love having power at my finger tips.

  • Where can I locate a driver?

    Where can I locate the driver and how do I install a driver for the HP color laser Jet CM2320fxi MFP?

    Download and install the latest software for your printer from the "Support & Drivers" link at the top of this page.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • I am using a late 2008 macbook and have recently purchased a WD Passport Ultra 1TB to use for storage.  I have formatted the drive and successfully moved files onto the drive, however now I am unable to locate the drive within FINDER. Please HELP!

    I am using a late 2008 macbook and have recently purchased a WD passport ultra 1TB drive to use as storage.  I have successfully formatted the drive, and moved files from macbook onto it, however now I cannot locate the drive within FINDER, even though it is showing within disc utility.  Please HELP!!!!

    Welcome to Apple Support Communities
    Open a Finder window, and your external drive should show up in the sidebar, under "Devices".
    A different way is to go to Finder menu (in the menu bar) > Preferences > General, and tick "External disks". If your external drive is detected by OS X, it will show up at the top right corner of Desktop, so double-click it to access to the content.

  • Installed hard drive in bay 2 now get flashing folder icon with ? mark

    Mac Pro 1.1, OS x 10.7 - installed storage hard drive in bay 2 now get flashing folder icon with ? mark

    found the answer - hold down opt/alt key, reboot, choose drive with os installed. it worked.

  • Cannot locate DB driver?????

    I have put the database driver folder org inside of the folder containing the JSP file
    package com.wrox.databases;
    import java.sql.*;
    import java.util.*;
    * Books.java
    * Created on 09 February 2003, 13:39
    * @author Harvey
    public class Books {
    String error;
    Connection con;
    /** Creates a new instance of Books */
    public Books() {
    public void connect() throws ClassNotFoundException, SQLException, Exception {
         try {
              Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    System.out.println("JDBC driver loaded");
    con = DriverManager.getConnection("jdbc:mysql://localhost/bookshop?user=");
    } catch (ClassNotFoundException cnfe) {
    error = "ClassNotFound: Could not locate DB driver.";
    throw new ClassNotFoundException(error);
    } catch (SQLException cnfe) {
    error = "SQLException: Could not connect to database";
    throw new SQLException(error);
    } catch (Exception e) {
    error = "Exception: An unknown error occurred wile connecting " + "to database.";
    throw new Exception(error);
    public void disconnect() throws SQLException {
    try {
    if ( con != null ) {
    con.close();
    } catch (SQLException sqle) {
    error = ("SQLException: Unable to close the database connection.");
    throw new SQLException(error);
    public ResultSet viewBooks() throws SQLException, Exception {
         ResultSet rs = null;
         try {
              String queryString = ("SELECT * FROM Book;");
    Statement stmt = con.createStatement();
    rs = stmt.executeQuery(queryString);
    } catch (SQLException sqle) {
    error = "SQLException:Could not execute the query.";
    throw new SQLException(error);
    return rs;
    //public static void main (String [] args){
    //     System.out.println("Hello");     
    I just want to display a simple view page
    <%@ page language="java" import="java.sql.*, java.io.*, java.util.*, com.wrox.databases.*"%>
    <jsp:useBean id="book" class ="com.wrox.databases.Books" />
    <html>
    <head>
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>Buy Now Bookshop</title>
    </head>
    <body>
         <h1> Buy Now Bookshop </h1>
         <h2> View Books </h2>
         <b>Add More Books</b>
         <form action="delete.jsp" method="post">
              <table border="1">
              <tr>
              <td><b>ID:</b></td>
              <td><b>Title:</b></td>
              <td><b>Price:</b></td>
              </tr>
         <%
              book.connect();
              ResultSet rs = book.viewBooks();
              while (rs.next()) {
         %>          
    <tr>
    <td>
         <input type="checkbox" name="pkey"
              value="<%=rs.getString("Title_ID")%>"/>
              </td>
              <td><%= rs.getString("Title") %> </td>
              <td><%= rs.getString("Price") %> </td>
              </tr>
         <%
         %>
    </table>
    Check books for deletion.<BR>
    <input type="submit" value="Delete All Checked Books">
    </form>
    <% book.disconnect(); %>
    </body>
    </html>
    Can anyone help please????

    Please check it.
    http://forum.java.sun.com/thread.jsp?forum=45&thread=356467&tstart=0&trange=30
    Hope it helps.
    Hafizur Rahman
    SCJP

  • Help I need to locate a driver for my soundblaster live 24 bit soundcard

    My son has been given the following PC games for christmas:-
    Command & Conquer 3,
    Command & Conquer Red Alert 3,
    Arma; Armed Assault,
    Medal of Honour: Airborne
    The problem he is having installing these 4 games is this. About half way through installation an error message appears that quite simply states "The software you are installing does not bear a WHQL signed driver. This software will not be installed".
    The PC we are running is a Dell Dimension 900, that we purchased about 4 years ago, and it was bespoke.
    I have run DxDiagnostics and it tells me that the driver for the graphics card is called p7.sys and the sound card are not WHQL logo'd, so how the hell do i download a driver for my soundblaster Li've 24 bit, that does? bear a digital signatre that is WHQL Logo'd. I hope you can help, me please.
    Message Edited by simonwicker on 2-26-2008 2:9 PMMessage Edited by simonwicker on 2-26-2008 2:25 [email protected]

    Re: Help I need to locate a driver for my soundblaster li've 24 bit soundcard? I guess you and your son are currently using windows xp. Well, what you can do is now is ignoring the WQHL pop-up window and choose the "install anyway" option during the installation of the soundcard driver, since WQHL only means the driver is tested by Microsoft and nothing more; drivers without the WQHL qualification does not mean they are bad drivers, they usually works as good as the WQHL ones.
    Ofcourse you can also download the official drivers for the mentioned Soundblaster li've 24bit at Creative Labs support/download site.
    here is it:
    [url="http://uk.europe.creative.com/support/downloads/download2.asp?MainCategory=&Product=035&dlcentric= 025&Product_Name=Li've%2+24-bit&filetype=&OSName=Windows+XP">Creative Sound Blaster Audigy Value/SE/LS and Sound Blaster Li've! 24-bit XP and Windows Vista Pack .04.0077 (63.39 MB)?[/url]
    The driver is for all Soundblaster Audigy Value, SE, LS and Soundblaster Li've 24bit, since they are all based on the CA-006 soundchip (with other words Creative Labs renamed the soundcard several times). Also this driver should be WQHL-ed (if not, choose "install anyway" option during installation of the soundcard driver). Make sure you have uninstalled the older driver before installing the new one. For troubleshooting use utilies like "Driver Cleaner" or "Driver Sweeper" (google for Guru3D and go to the site and their download section to get the utilities/tools) to clean up the junk files of the older driver that are left in the Windows OS.
    Good luck and Merry Christmas!!!
    Message Edited by CTman on 2-26-2008 0:2 [email protected]

  • Any drive in Bay 2 freezes MacPro 1.1

    I have a 2006 MacPro that has given me trouble free performance since I bought it. I'm way over due for a new system. I'm holding out for the release of the new MacPro.
    Anyway, during the past week or so my system was unstable. First - I couldn't get it to wake from sleep without rebooting. A few nights ago I returned to my work area after about 5 hours and took it out of sleep mode. When it started up there was a warning message on the screen stating the the internal HD installed in Bay 2 was improperly ejected. I didn't think it was the drive since it was fairly new and has had light use. I did go ahead and replace it with a brand new drive.
    System started up fine. I formatted the new drive, and everything worked as expected. A few hours later the system became unstable, eventually locking up. When I tried to reboot - nothing except a gray screen. I tried booting off CD and a bootable Lion USB Flash Drive. No luck with this. No options to select boot drive ... nothing. Just a gray screen.
    Well the system is back up and running. It turns out that if any drive in inserted in Bay 2 - it's impossible to boot. Once I remove the inserted drive, the system reverts back to normal. Definitely not the drives. They've been tested externally and are 100% fine.
    Is there anything that I can do to fix this? Sounds like a bad HD controller on the logic board. I don't plan on getting it serviced due to it's age and my eventual purchase of the new MacPro.
    thx.
    -paul

    The hatter wrote:
    Did you ever do a "hot swap" with a drive in that bay? some "get away" but it can damage the electronics.
    Your running Lion, at some point have you already started over with a clean install? not upgrade over SL?
    One way to work around only having 3 drive bays are the two ODD ports, and two SSDs (not bootable) on Sonnet Tempo SSD PCIe card.
    Just what type make model of hard drive did you buy that you are trying to use?
    Thanks for the tips ...
    Never hot swapped. The system was always powered down and unplugged when necessary. And no, I've never done a clean OS install on this system. Like I said, it's been trouble free since I bought it. I mostly run media production applications. I'm going to consider doing a clean install.
    As far as the drives that I use - these Western Digitals
    The suspect drive that was in Bay 2 works fine when I use it in a docking station. I also tried 2 brand new drives in Bay 2. The problem persists. As soon as I remove the Bay 2 drive, the system boots and works fine.
    The ODD/SSD option is cool. OTOH I'm basically holding out for the new MacPro. I'd still like to solve this Bay 2 issue before I decommission the system or sell it, potentially.
    -paul.

  • Boot drive in Bay 3 or Bay 4 will it slow down the startup process?

    If I have my boot drive in Bay 3 or Bay 4 will it slow down the startup process? I know in old PCs it would look for the boot drive by looking each time in a certain order. If the MP did that then it would probably look at Bay 3 and Bay 4 last on its ordered sequence.

    But.... I think there is a but here... Mac OS does still look for other boot drives none the less.
    On a PC, most have an option in the BIOS to set the device types (CDROM, hard drive, USB). and the order of hard drives to look. Meaning that I can have a system on a hard drive that is off line, pop it in, make it the primary boot device and boot from it, and boot quickly.
    Sometimes people will disable a chipset or not enable hardware RAID on the motherboard.
    Startup Disk control panel sets the boot path in nvram and even if you do have 4 boot drives in Mac Pro, it should still boot in 20-45 seconds.

  • Mac Pro 2.66 drives in bay 2 and 3 display

    I have 3 drives in my Mac Pro
    bay 1 main drive OS 10.9.5
    bay 2 ALL my files
    bay 3 second set of files
    bays 2 and 3 take a lot of time to display on the desktop
    bay 1 - 3 minutes
    bays 2 and 3 displays after about 5 to 6 minutes
    when I try t open either drives in bay2 or 3
    spinning ball and have to cold quit
    tried switching drives around in bays same thing
    possible BOTH drives are starting to go?
    RD

    I now see I switched bays again and the drives came right up, but clicking in and accessing gave me the spinning ball so I cold rebooted and clicked in again and after about 2 minutes the drive contents displayed. At that moment I was going to back up with CCC I got a msg that the disk I'm trying to copy has errors, so I'm waiting for disk utility to finish and hopefully correct.
    I'm gonna need another drive, the drive giving me trouble is a Seagate, it's not the boot drive mind you it's the drive with all my files and never had problems with these drives before, should I get another Seagate?
    anybody?
    As I have to do this today.
    R

  • [SOLVED]Can't Locate CD Drive

    Ok, so I am having trouble mounting a CD, because I don't know where it mounts from. There is nothing in /dev or dmesg
    [phil@pwned ~]$ cd /dev && ls -l
    lrwxrwxrwx 1 root root 11 2009-07-31 18:48 audio -> sound/audio
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 block
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 bsg
    drwxr-xr-x 3 root root 0 2009-07-31 18:48 bus
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 char
    crw------- 1 root root 5, 1 2009-07-31 18:48 console
    lrwxrwxrwx 1 root root 11 2009-07-31 18:48 core -> /proc/kcore
    crw-rw---- 1 root root 10, 63 2009-07-31 18:48 cpu_dma_latency
    drwxr-xr-x 5 root root 0 2009-07-31 18:48 disk
    lrwxrwxrwx 1 root root 9 2009-07-31 18:48 dsp -> sound/dsp
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 fb
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 fb0 -> fb/0
    lrwxrwxrwx 1 root root 13 2009-07-31 18:48 fd -> /proc/self/fd
    crw-rw-rw- 1 root root 1, 7 2009-07-31 18:48 full
    crw-rw-rw- 1 root root 10, 229 2009-06-07 07:32 fuse
    prw------- 1 root root 0 2009-07-31 18:48 initctl
    drwxr-xr-x 4 root root 0 2009-07-31 18:48 input
    crw-r----- 1 root kmem 1, 2 2009-07-31 18:48 kmem
    crw-rw---- 1 root root 1, 11 2009-06-07 07:32 kmsg
    srw-rw-rw- 1 root root 0 2009-07-31 18:48 log
    drwxr-xr-x 2 root root 0 2009-06-07 07:32 loop
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop0 -> loop/0
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop1 -> loop/1
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop2 -> loop/2
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop3 -> loop/3
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop4 -> loop/4
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop5 -> loop/5
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop6 -> loop/6
    lrwxrwxrwx 1 root root 6 2009-07-31 18:48 loop7 -> loop/7
    crw-rw---- 1 root root 10, 227 2009-07-31 18:48 mcelog
    crw-r----- 1 root kmem 1, 1 2009-07-31 18:48 mem
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 misc
    lrwxrwxrwx 1 root root 11 2009-07-31 18:48 mixer -> sound/mixer
    drwxr-xr-x 2 root root 0 2009-06-07 07:32 net
    crw-rw---- 1 root root 10, 62 2009-07-31 18:48 network_latency
    crw-rw---- 1 root root 10, 61 2009-07-31 18:48 network_throughput
    crw-rw-rw- 1 root root 1, 3 2009-06-07 07:32 null
    crw-rw-rw- 1 root root 195, 0 2009-07-31 18:48 nvidia0
    crw-rw-rw- 1 root root 195, 255 2009-07-31 18:48 nvidiactl
    crw-r----- 1 root kmem 1, 4 2009-07-31 18:48 port
    crw------- 1 root root 108, 0 2009-06-07 07:32 ppp
    lrwxrwxrwx 1 root root 10 2009-07-31 18:48 psaux -> misc/psaux
    crw-rw-rw- 1 root tty 5, 2 2009-07-31 18:49 ptmx
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 pts
    crw-rw-rw- 1 root root 1, 8 2009-07-31 18:48 random
    lrwxrwxrwx 1 root root 54 2009-07-31 18:48 root -> /dev/disk/by-uuid/dcfa58b1-012a-480b-af37-4546ae2577c0
    lrwxrwxrwx 1 root root 9 2009-07-31 18:48 rtc -> misc/rtc0
    lrwxrwxrwx 1 root root 9 2009-07-31 18:48 rtc0 -> misc/rtc0
    brw-rw---- 1 root disk 8, 0 2009-07-31 18:48 sda
    brw-rw---- 1 root disk 8, 1 2009-07-31 18:48 sda1
    brw-rw---- 1 root disk 8, 2 2009-07-31 18:48 sda2
    brw-rw---- 1 root disk 8, 3 2009-07-31 18:48 sda3
    brw-rw---- 1 root disk 8, 4 2009-07-31 18:48 sda4
    lrwxrwxrwx 1 root root 15 2009-07-31 18:48 sequencer -> sound/sequencer
    lrwxrwxrwx 1 root root 16 2009-07-31 18:48 sequencer2 -> sound/sequencer2
    crw-rw---- 1 root disk 21, 0 2009-07-31 18:48 sg0
    drwxrwxrwt 2 root root 40 2009-07-31 18:48 shm
    crw-rw---- 1 root root 10, 231 2009-07-31 18:48 snapshot
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 snd
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 sound
    lrwxrwxrwx 1 root root 15 2009-07-31 18:48 stderr -> /proc/self/fd/2
    lrwxrwxrwx 1 root root 15 2009-07-31 18:48 stdin -> /proc/self/fd/0
    lrwxrwxrwx 1 root root 15 2009-07-31 18:48 stdout -> /proc/self/fd/1
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 tts
    crw-rw-rw- 1 root tty 5, 0 2009-07-31 18:48 tty
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty0 -> vc/0
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty1 -> vc/1
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty10 -> vc/10
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty11 -> vc/11
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty12 -> vc/12
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty13 -> vc/13
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty14 -> vc/14
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty15 -> vc/15
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty16 -> vc/16
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty17 -> vc/17
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty18 -> vc/18
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty19 -> vc/19
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty2 -> vc/2
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty20 -> vc/20
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty21 -> vc/21
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty22 -> vc/22
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty23 -> vc/23
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty24 -> vc/24
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty25 -> vc/25
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty26 -> vc/26
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty27 -> vc/27
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty28 -> vc/28
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty29 -> vc/29
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty3 -> vc/3
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty30 -> vc/30
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty31 -> vc/31
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty32 -> vc/32
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty33 -> vc/33
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty34 -> vc/34
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty35 -> vc/35
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty36 -> vc/36
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty37 -> vc/37
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty38 -> vc/38
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty39 -> vc/39
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty4 -> vc/4
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty40 -> vc/40
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty41 -> vc/41
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty42 -> vc/42
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty43 -> vc/43
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty44 -> vc/44
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty45 -> vc/45
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty46 -> vc/46
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty47 -> vc/47
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty48 -> vc/48
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty49 -> vc/49
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty5 -> vc/5
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty50 -> vc/50
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty51 -> vc/51
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty52 -> vc/52
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty53 -> vc/53
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty54 -> vc/54
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty55 -> vc/55
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty56 -> vc/56
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty57 -> vc/57
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty58 -> vc/58
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty59 -> vc/59
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty6 -> vc/6
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty60 -> vc/60
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty61 -> vc/61
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty62 -> vc/62
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 tty63 -> vc/63
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty7 -> vc/7
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty8 -> vc/8
    lrwxrwxrwx 1 root root 4 2009-07-31 18:48 tty9 -> vc/9
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 ttyS0 -> tts/0
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 ttyS1 -> tts/1
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 ttyS2 -> tts/2
    lrwxrwxrwx 1 root root 5 2009-07-31 18:48 ttyS3 -> tts/3
    crw-rw-rw- 1 root root 1, 9 2009-07-31 18:48 urandom
    crw-rw---- 1 root root 189, 0 2009-07-31 18:48 usbdev1.1
    crw-rw---- 1 root root 252, 1 2009-07-31 18:48 usbdev1.1_ep00
    crw-rw---- 1 root root 252, 0 2009-07-31 18:48 usbdev1.1_ep81
    crw-rw---- 1 root root 189, 2 2009-07-31 18:48 usbdev1.3
    crw-rw---- 1 root root 252, 17 2009-07-31 18:48 usbdev1.3_ep00
    crw-rw---- 1 root root 252, 16 2009-07-31 18:48 usbdev1.3_ep83
    crw-rw---- 1 root root 189, 128 2009-07-31 18:48 usbdev2.1
    crw-rw---- 1 root root 252, 3 2009-07-31 18:48 usbdev2.1_ep00
    crw-rw---- 1 root root 252, 2 2009-07-31 18:48 usbdev2.1_ep81
    crw-rw---- 1 root root 189, 256 2009-07-31 18:48 usbdev3.1
    crw-rw---- 1 root root 252, 5 2009-07-31 18:48 usbdev3.1_ep00
    crw-rw---- 1 root root 252, 4 2009-07-31 18:48 usbdev3.1_ep81
    crw-rw---- 1 root root 189, 384 2009-07-31 18:48 usbdev4.1
    crw-rw---- 1 root root 252, 7 2009-07-31 18:48 usbdev4.1_ep00
    crw-rw---- 1 root root 252, 6 2009-07-31 18:48 usbdev4.1_ep81
    crw-rw---- 1 root root 189, 512 2009-07-31 18:48 usbdev5.1
    crw-rw---- 1 root root 252, 9 2009-07-31 18:48 usbdev5.1_ep00
    crw-rw---- 1 root root 252, 8 2009-07-31 18:48 usbdev5.1_ep81
    crw-rw---- 1 root root 189, 513 2009-07-31 18:48 usbdev5.2
    crw-rw---- 1 root root 252, 24 2009-07-31 18:48 usbdev5.2_ep00
    crw-rw---- 1 root root 252, 19 2009-07-31 18:48 usbdev5.2_ep01
    crw-rw---- 1 root root 252, 22 2009-07-31 18:48 usbdev5.2_ep02
    crw-rw---- 1 root root 252, 18 2009-07-31 18:48 usbdev5.2_ep81
    crw-rw---- 1 root root 252, 21 2009-07-31 18:48 usbdev5.2_ep82
    crw-rw---- 1 root root 252, 20 2009-07-31 18:48 usbdev5.2_ep85
    crw-rw---- 1 root root 252, 23 2009-07-31 18:48 usbdev5.2_ep86
    crw-rw---- 1 root root 189, 640 2009-07-31 18:48 usbdev6.1
    crw-rw---- 1 root root 252, 11 2009-07-31 18:48 usbdev6.1_ep00
    crw-rw---- 1 root root 252, 10 2009-07-31 18:48 usbdev6.1_ep81
    crw-rw---- 1 root root 189, 768 2009-07-31 18:48 usbdev7.1
    crw-rw---- 1 root root 252, 13 2009-07-31 18:48 usbdev7.1_ep00
    crw-rw---- 1 root root 252, 12 2009-07-31 18:48 usbdev7.1_ep81
    crw-rw---- 1 root root 189, 896 2009-07-31 18:48 usbdev8.1
    crw-rw---- 1 root root 252, 15 2009-07-31 18:48 usbdev8.1_ep00
    crw-rw---- 1 root root 252, 14 2009-07-31 18:48 usbdev8.1_ep81
    drwxr-xr-x 4 root root 0 2009-07-31 18:48 v4l
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 vc
    drwxr-xr-x 2 root root 0 2009-07-31 18:48 vcc
    lrwxrwxrwx 1 root root 10 2009-07-31 18:48 video -> v4l/video0
    lrwxrwxrwx 1 root root 10 2009-07-31 18:48 video0 -> v4l/video0
    crw-rw---- 1 root root 10, 130 2009-07-31 18:48 watchdog
    crw-rw-rw- 1 root root 1, 5 2009-06-07 07:32 zero
    dmesg
    Linux version 2.6.30-ARCH (root@T-POWA-LX) (gcc version 4.4.0 20090630 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jul 20 07:46:03 CEST 2009
    Command line: root=/dev/disk/by-uuid/dcfa58b1-012a-480b-af37-4546ae2577c0 ro vga=773
    KERNEL supported cpus:
    Intel GenuineIntel
    AMD AuthenticAMD
    Centaur CentaurHauls
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009bc00 (usable)
    BIOS-e820: 000000000009bc00 - 00000000000a0000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000df44d400 (usable)
    BIOS-e820: 00000000df44f400 - 00000000e0000000 (reserved)
    BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    BIOS-e820: 00000000fed18000 - 00000000fed1c000 (reserved)
    BIOS-e820: 00000000fed20000 - 00000000fed90000 (reserved)
    BIOS-e820: 00000000feda0000 - 00000000feda6000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved)
    BIOS-e820: 00000000ffe60000 - 0000000100000000 (reserved)
    BIOS-e820: 0000000100002000 - 0000000120000000 (usable)
    DMI 2.4 present.
    last_pfn = 0x120000 max_arch_pfn = 0x100000000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-D3FFF write-protect
    D4000-EFFFF uncachable
    F0000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask 800000000 write-back
    1 base 0E0000000 mask FE0000000 uncachable
    2 disabled
    3 disabled
    4 disabled
    5 disabled
    6 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 00000000e0000000 - 0000000100000000 (usable) ==> (reserved)
    last_pfn = 0xdf44d max_arch_pfn = 0x100000000
    e820 update range: 0000000000001000 - 0000000000006000 (usable) ==> (reserved)
    Scanning 1 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000001000 (usable)
    modified: 0000000000001000 - 0000000000006000 (reserved)
    modified: 0000000000006000 - 000000000009bc00 (usable)
    modified: 000000000009bc00 - 00000000000a0000 (reserved)
    modified: 0000000000100000 - 00000000df44d400 (usable)
    modified: 00000000df44f400 - 00000000e0000000 (reserved)
    modified: 00000000f8000000 - 00000000fc000000 (reserved)
    modified: 00000000fec00000 - 00000000fec10000 (reserved)
    modified: 00000000fed18000 - 00000000fed1c000 (reserved)
    modified: 00000000fed20000 - 00000000fed90000 (reserved)
    modified: 00000000feda0000 - 00000000feda6000 (reserved)
    modified: 00000000fee00000 - 00000000fee10000 (reserved)
    modified: 00000000ffe60000 - 0000000100000000 (reserved)
    modified: 0000000100002000 - 0000000120000000 (usable)
    init_memory_mapping: 0000000000000000-00000000df44d000
    0000000000 - 00df400000 page 2M
    00df400000 - 00df44d000 page 4k
    kernel direct mapping tables up to df44d000 @ 8000-e000
    init_memory_mapping: 0000000100000000-0000000120000000
    0100000000 - 0120000000 page 2M
    kernel direct mapping tables up to 120000000 @ c000-12000
    RAMDISK: 37f52000 - 37fefa7b
    ACPI: RSDP 00000000000fb9c0 00024 (v02 DELL )
    ACPI: XSDT 00000000df451e00 0006C (v01 DELL M09 27D9050B ASL 00000061)
    ACPI: FACP 00000000df451c9c 000F4 (v04 DELL M09 27D9050B ASL 00000061)
    ACPI: DSDT 00000000df452400 06AB6 (v02 INT430 SYSFexxx 00001001 INTL 20050624)
    ACPI: FACS 00000000df460c00 00040
    ACPI: HPET 00000000df451f00 00038 (v01 DELL M09 00000001 ASL 00000061)
    ACPI: ____ 00000000df460400 00030 (v01 DELL M09 27D9050B ASL 00000061)
    ACPI: APIC 00000000df452000 00068 (v01 DELL M09 27D9050B ASL 00000047)
    ACPI: ASF! 00000000df451c00 0006A (v32 DELL M09 27D9050B ASL 00000061)
    ACPI: MCFG 00000000df451fc0 0003E (v16 DELL M09 27D9050B ASL 00000061)
    ACPI: TCPA 00000000df452300 00032 (v01 00000000 ASL 00000000)
    ACPI: SLIC 00000000df45209c 00176 (v01 DELL M09 27D9050B ASL 00000061)
    ACPI: SSDT 00000000df45032d 0066C (v01 PmRef CpuPm 00003000 INTL 20050624)
    ACPI: Local APIC address 0xfee00000
    (8 early reservations) ==> bootmem [0000000000 - 0120000000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
    #2 [0000200000 - 000082c0d0] TEXT DATA BSS ==> [0000200000 - 000082c0d0]
    #3 [0037f52000 - 0037fefa7b] RAMDISK ==> [0037f52000 - 0037fefa7b]
    #4 [000009bc00 - 0000100000] BIOS reserved ==> [000009bc00 - 0000100000]
    #5 [000082d000 - 000082d1e8] BRK ==> [000082d000 - 000082d1e8]
    #6 [0000008000 - 000000c000] PGTABLE ==> [0000008000 - 000000c000]
    #7 [000000c000 - 000000d000] PGTABLE ==> [000000c000 - 000000d000]
    [ffffe20000000000-ffffe20003ffffff] PMD -> [ffff880028200000-ffff88002c1fffff] on node 0
    Zone PFN ranges:
    DMA 0x00000000 -> 0x00001000
    DMA32 0x00001000 -> 0x00100000
    Normal 0x00100000 -> 0x00120000
    Movable zone start PFN for each node
    early_node_map[4] active PFN ranges
    0: 0x00000000 -> 0x00000001
    0: 0x00000006 -> 0x0000009b
    0: 0x00000100 -> 0x000df44d
    0: 0x00100002 -> 0x00120000
    On node 0 totalpages: 1045473
    DMA zone: 56 pages used for memmap
    DMA zone: 1688 pages reserved
    DMA zone: 2246 pages, LIFO batch:0
    DMA32 zone: 14280 pages used for memmap
    DMA32 zone: 896133 pages, LIFO batch:31
    Normal zone: 1792 pages used for memmap
    Normal zone: 129278 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x1008
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 0, 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.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a201 base: 0xfed00000
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    nr_irqs_gsi: 24
    PM: Registered nosave memory: 0000000000001000 - 0000000000006000
    PM: Registered nosave memory: 000000000009b000 - 000000000009c000
    PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    PM: Registered nosave memory: 00000000df44d000 - 00000000df450000
    PM: Registered nosave memory: 00000000df450000 - 00000000e0000000
    PM: Registered nosave memory: 00000000e0000000 - 00000000f8000000
    PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    PM: Registered nosave memory: 00000000fec00000 - 00000000fec10000
    PM: Registered nosave memory: 00000000fec10000 - 00000000fed18000
    PM: Registered nosave memory: 00000000fed18000 - 00000000fed1c000
    PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    PM: Registered nosave memory: 00000000fed20000 - 00000000fed90000
    PM: Registered nosave memory: 00000000fed90000 - 00000000feda0000
    PM: Registered nosave memory: 00000000feda0000 - 00000000feda6000
    PM: Registered nosave memory: 00000000feda6000 - 00000000fee00000
    PM: Registered nosave memory: 00000000fee00000 - 00000000fee10000
    PM: Registered nosave memory: 00000000fee10000 - 00000000ffe60000
    PM: Registered nosave memory: 00000000ffe60000 - 0000000100000000
    PM: Registered nosave memory: 0000000100000000 - 0000000100002000
    Allocating PCI resources starting at e2000000 (gap: e0000000:18000000)
    NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:2 nr_node_ids:1
    PERCPU: Embedded 25 pages at ffff88002801f000, static data 72352 bytes
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1027657
    Kernel command line: root=/dev/disk/by-uuid/dcfa58b1-012a-480b-af37-4546ae2577c0 ro vga=773
    Initializing CPU#0
    xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    NR_IRQS:768
    PID hash table entries: 4096 (order: 12, 32768 bytes)
    Extended CMOS year: 2000
    Fast TSC calibration using PIT
    Detected 2527.211 MHz processor.
    Console: colour dummy device 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Checking aperture...
    No AGP bridge found
    Calgary: detecting Calgary via BIOS EBDA area
    Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000
    software IO TLB at phys 0x20000000 - 0x24000000
    Memory: 4035696k/4718592k available (3409k kernel code, 536700k absent, 145016k reserved, 1239k data, 460k init)
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    hpet clockevent registered
    HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    Calibrating delay loop (skipped), value calculated using timer frequency.. 5056.02 BogoMIPS (lpj=8424036)
    Security Framework initialized
    Mount-cache hash table entries: 256
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 3072K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    CPU0: Thermal monitoring enabled (TM2)
    using mwait in idle threads.
    ACPI: Core revision 20090320
    Setting APIC routing to flat
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
    Booting processor 1 APIC 0x1 ip 0x6000
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 5056.56 BogoMIPS (lpj=8423296)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 3072K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    CPU1: Thermal monitoring enabled (TM2)
    x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
    CPU1: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
    checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Brought up 2 CPUs
    Total of 2 processors activated (10112.58 BogoMIPS).
    CPU0 attaching sched-domain:
    domain 0: span 0-1 level MC
    groups: 0 1
    CPU1 attaching sched-domain:
    domain 0: span 0-1 level MC
    groups: 1 0
    net_namespace: 1888 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MCFG configuration 0: base f8000000 segment 0 buses 0 - 63
    PCI: MCFG area at f8000000 reserved in E820
    PCI: Using MMCONFIG at f8000000 - fbffffff
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: BIOS _OSI(Linux) query ignored
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x11, I/O: command/status = 0x934, data = 0x930
    ACPI: EC: driver started in interrupt mode
    ACPI: No dock devices found.
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:01.0: PME# disabled
    pci 0000:00:19.0: reg 10 32bit mmio: [0xf6fe0000-0xf6ffffff]
    pci 0000:00:19.0: reg 14 32bit mmio: [0xf6fdb000-0xf6fdbfff]
    pci 0000:00:19.0: reg 18 io port: [0xefe0-0xefff]
    pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:19.0: PME# disabled
    pci 0000:00:1a.0: reg 20 io port: [0x6f60-0x6f7f]
    pci 0000:00:1a.1: reg 20 io port: [0x6f80-0x6f9f]
    pci 0000:00:1a.2: reg 20 io port: [0x6fa0-0x6fbf]
    pci 0000:00:1a.7: reg 10 32bit mmio: [0xfed1c400-0xfed1c7ff]
    pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1a.7: PME# disabled
    pci 0000:00:1b.0: reg 10 64bit mmio: [0xf6fdc000-0xf6fdffff]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.2: PME# disabled
    pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.3: PME# disabled
    pci 0000:00:1d.0: reg 20 io port: [0x6f00-0x6f1f]
    pci 0000:00:1d.1: reg 20 io port: [0x6f20-0x6f3f]
    pci 0000:00:1d.2: reg 20 io port: [0x6f40-0x6f5f]
    pci 0000:00:1d.7: reg 10 32bit mmio: [0xfed1c000-0xfed1c3ff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10 io port: [0x6e70-0x6e77]
    pci 0000:00:1f.2: reg 14 io port: [0x6e78-0x6e7b]
    pci 0000:00:1f.2: reg 18 io port: [0x6e80-0x6e87]
    pci 0000:00:1f.2: reg 1c io port: [0x6e88-0x6e8b]
    pci 0000:00:1f.2: reg 20 io port: [0x6ea0-0x6ebf]
    pci 0000:00:1f.2: reg 24 32bit mmio: [0xfed1c800-0xfed1cfff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 10 64bit mmio: [0xf6fdaf00-0xf6fdafff]
    pci 0000:00:1f.3: reg 20 io port: [0x1100-0x111f]
    pci 0000:01:00.0: reg 10 32bit mmio: [0xf5000000-0xf5ffffff]
    pci 0000:01:00.0: reg 14 64bit mmio: [0xe0000000-0xefffffff]
    pci 0000:01:00.0: reg 1c 64bit mmio: [0xf2000000-0xf3ffffff]
    pci 0000:01:00.0: reg 24 io port: [0xdf00-0xdf7f]
    pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]
    pci 0000:00:01.0: bridge io port: [0xd000-0xdfff]
    pci 0000:00:01.0: bridge 32bit mmio: [0xf2000000-0xf6efffff]
    pci 0000:00:01.0: bridge 64bit mmio pref: [0xe0000000-0xefffffff]
    pci 0000:0c:00.0: reg 10 64bit mmio: [0xf1ffe000-0xf1ffffff]
    pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
    pci 0000:0c:00.0: PME# disabled
    pci 0000:00:1c.1: bridge 32bit mmio: [0xf1f00000-0xf1ffffff]
    pci 0000:00:1c.3: bridge io port: [0xc000-0xcfff]
    pci 0000:00:1c.3: bridge 32bit mmio: [0xf1c00000-0xf1efffff]
    pci 0000:00:1c.3: bridge 64bit mmio pref: [0xf0000000-0xf01fffff]
    pci 0000:03:01.0: reg 10 32bit mmio: [0xf1bff800-0xf1bfffff]
    pci 0000:03:01.0: supports D1 D2
    pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:03:01.0: PME# disabled
    pci 0000:03:01.1: reg 10 32bit mmio: [0xf1bff600-0xf1bff6ff]
    pci 0000:03:01.1: supports D1 D2
    pci 0000:03:01.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:03:01.1: PME# disabled
    pci 0000:03:01.2: reg 10 32bit mmio: [0xf1bff700-0xf1bff7ff]
    pci 0000:03:01.2: supports D1 D2
    pci 0000:03:01.2: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:03:01.2: PME# disabled
    pci 0000:00:1e.0: transparent bridge
    pci 0000:00:1e.0: bridge 32bit mmio: [0xf1b00000-0xf1bfffff]
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *3
    ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *4
    ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *3
    ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 *10 11)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    PCI: Using ACPI for IRQ routing
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 14 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:05: ioport range 0xc80-0xcaf has been reserved
    system 00:05: ioport range 0xcc0-0xcff could not be reserved
    system 00:08: iomem range 0xfed00000-0xfed003ff has been reserved
    system 00:0a: ioport range 0xcb0-0xcbb has been reserved
    system 00:0a: iomem range 0xfed40000-0xfed44fff has been reserved
    system 00:0b: ioport range 0x900-0x92f has been reserved
    system 00:0b: ioport range 0x931-0x933 has been reserved
    system 00:0b: ioport range 0x935-0x97f has been reserved
    system 00:0b: ioport range 0x4d0-0x4d1 has been reserved
    system 00:0b: ioport range 0x1000-0x1005 has been reserved
    system 00:0b: ioport range 0x1008-0x100f has been reserved
    system 00:0c: ioport range 0xf400-0xf4fe has been reserved
    system 00:0c: ioport range 0x1006-0x1007 has been reserved
    system 00:0c: ioport range 0x100a-0x1059 could not be reserved
    system 00:0c: ioport range 0x1060-0x107f has been reserved
    system 00:0c: ioport range 0x1080-0x10bf has been reserved
    system 00:0c: ioport range 0x1100-0x111f has been reserved
    system 00:0c: ioport range 0x1010-0x102f has been reserved
    system 00:0c: ioport range 0x809-0x809 has been reserved
    system 00:0d: iomem range 0x0-0x9efff could not be reserved
    system 00:0d: iomem range 0x9f000-0x9ffff could not be reserved
    system 00:0d: iomem range 0xc0000-0xd3fff has been reserved
    system 00:0d: iomem range 0xe0000-0xfffff has been reserved
    system 00:0d: iomem range 0x100000-0xdf44d3ff could not be reserved
    system 00:0d: iomem range 0xdf44d400-0xdfefffff could not be reserved
    system 00:0d: iomem range 0xdff00000-0xdfffffff has been reserved
    system 00:0d: iomem range 0xffe00000-0xffffffff could not be reserved
    system 00:0d: iomem range 0xffa00000-0xffbfffff has been reserved
    system 00:0d: iomem range 0xfec00000-0xfec0ffff has been reserved
    system 00:0d: iomem range 0xfee00000-0xfee0ffff has been reserved
    system 00:0d: iomem range 0xfed20000-0xfed3ffff has been reserved
    system 00:0d: iomem range 0xfed45000-0xfed8ffff has been reserved
    system 00:0d: iomem range 0xfeda0000-0xfeda3fff has been reserved
    system 00:0d: iomem range 0xfeda4000-0xfeda4fff has been reserved
    system 00:0d: iomem range 0xfeda5000-0xfeda5fff has been reserved
    system 00:0d: iomem range 0xfeda6000-0xfeda6fff has been reserved
    system 00:0d: iomem range 0xfed1c800-0xfed1cfff has been reserved
    system 00:0d: iomem range 0xfed18000-0xfed1bfff has been reserved
    system 00:0d: iomem range 0xf8000000-0xfbffffff has been reserved
    pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:01.0: IO window: 0xd000-0xdfff
    pci 0000:00:01.0: MEM window: 0xf2000000-0xf6efffff
    pci 0000:00:01.0: PREFETCH window: 0x000000e0000000-0x000000efffffff
    pci 0000:00:1c.0: PCI bridge, secondary bus 0000:0b
    pci 0000:00:1c.0: IO window: disabled
    pci 0000:00:1c.0: MEM window: disabled
    pci 0000:00:1c.0: PREFETCH window: disabled
    pci 0000:00:1c.1: PCI bridge, secondary bus 0000:0c
    pci 0000:00:1c.1: IO window: disabled
    pci 0000:00:1c.1: MEM window: 0xf1f00000-0xf1ffffff
    pci 0000:00:1c.1: PREFETCH window: disabled
    pci 0000:00:1c.2: PCI bridge, secondary bus 0000:0d
    pci 0000:00:1c.2: IO window: disabled
    pci 0000:00:1c.2: MEM window: disabled
    pci 0000:00:1c.2: PREFETCH window: disabled
    pci 0000:00:1c.3: PCI bridge, secondary bus 0000:0e
    pci 0000:00:1c.3: IO window: 0xc000-0xcfff
    pci 0000:00:1c.3: MEM window: 0xf1c00000-0xf1efffff
    pci 0000:00:1c.3: PREFETCH window: 0x000000f0000000-0x000000f01fffff
    pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
    pci 0000:00:1e.0: IO window: disabled
    pci 0000:00:1e.0: MEM window: 0xf1b00000-0xf1bfffff
    pci 0000:00:1e.0: PREFETCH window: disabled
    pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:01.0: setting latency timer to 64
    pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    pci 0000:00:1c.2: setting latency timer to 64
    pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    pci 0000:00:1c.3: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 0 io: [0x00-0xffff]
    pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
    pci_bus 0000:01: resource 0 io: [0xd000-0xdfff]
    pci_bus 0000:01: resource 1 mem: [0xf2000000-0xf6efffff]
    pci_bus 0000:01: resource 2 pref mem [0xe0000000-0xefffffff]
    pci_bus 0000:0c: resource 1 mem: [0xf1f00000-0xf1ffffff]
    pci_bus 0000:0e: resource 0 io: [0xc000-0xcfff]
    pci_bus 0000:0e: resource 1 mem: [0xf1c00000-0xf1efffff]
    pci_bus 0000:0e: resource 2 pref mem [0xf0000000-0xf01fffff]
    pci_bus 0000:03: resource 1 mem: [0xf1b00000-0xf1bfffff]
    pci_bus 0000:03: resource 3 io: [0x00-0xffff]
    pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffffffffffff]
    NET: Registered protocol family 2
    Switched to high resolution mode on CPU 1
    Switched to high resolution mode on CPU 0
    IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    TCP: Hash tables configured (established 262144 bind 65536)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs...
    Freeing initrd memory: 630k freed
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1249080504.524:1): initialized
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    msgmni has been set to 7885
    alg: No test for stdrng (krng)
    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
    pcieport-driver 0000:00:01.0: irq 24 for MSI/MSI-X
    pcieport-driver 0000:00:01.0: setting latency timer to 64
    pcieport-driver 0000:00:1c.0: irq 25 for MSI/MSI-X
    pcieport-driver 0000:00:1c.0: setting latency timer to 64
    pcieport-driver 0000:00:1c.1: irq 26 for MSI/MSI-X
    pcieport-driver 0000:00:1c.1: setting latency timer to 64
    pcieport-driver 0000:00:1c.2: irq 27 for MSI/MSI-X
    pcieport-driver 0000:00:1c.2: setting latency timer to 64
    pcieport-driver 0000:00:1c.3: irq 28 for MSI/MSI-X
    pcieport-driver 0000:00:1c.3: setting latency timer to 64
    vesafb: framebuffer at 0xf3000000, mapped to 0xffffc20004100000, using 1536k, total 14336k
    vesafb: mode is 1024x768x8, linelength=1024, pages=3
    vesafb: scrolling: redraw
    vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    Console: switching to colour frame buffer device 128x48
    fb0: VESA VGA frame buffer device
    Linux agpgart interface v0.103
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Warning: Keylock active.
    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
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 460k freed
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    ahci 0000:00:1f.2: irq 29 for MSI/MSI-X
    ahci: SSS flag set, parallel bus scan disabled
    ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl RAID mode
    ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ems
    ahci 0000:00:1f.2: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    scsi4 : ahci
    scsi5 : ahci
    ata1: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1c900 irq 29
    ata2: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1c980 irq 29
    ata3: DUMMY
    ata4: DUMMY
    ata5: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1cb00 irq 29
    ata6: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1cb80 irq 29
    ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    ata1.00: ATA-8: ST9160411ASG, DE17, max UDMA/133
    ata1.00: 312581808 sectors, multi 0: LBA48 NCQ (depth 31/32)
    ata1.00: configured for UDMA/133
    scsi 0:0:0:0: Direct-Access ATA ST9160411ASG DE17 PQ: 0 ANSI: 5
    ata2: SATA link down (SStatus 4 SControl 300)
    ata5: SATA link down (SStatus 4 SControl 300)
    ata6: SATA link down (SStatus 4 SControl 300)
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 312581808 512-byte hardware sectors: (160 GB/149 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4
    sd 0:0:0:0: [sda] Attached SCSI disk
    EXT4-fs: barriers enabled
    EXT4-fs: delayed allocation enabled
    EXT4-fs: file extents enabled
    EXT4-fs: mballoc enabled
    EXT4-fs: mounted filesystem sda2 with ordered data mode
    kjournald2 starting: pid 551, dev sda2:8, commit interval 5 seconds
    rtc_cmos 00:03: RTC can wake from S4
    rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    udev: starting version 141
    ACPI: AC Adapter [AC] (on-line)
    ACPI: Battery Slot [BAT0] (battery present)
    ACPI: Battery Slot [BAT1] (battery absent)
    input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    ACPI: Lid Switch [LID]
    input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    ACPI: Power Button [PBTN]
    input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
    ACPI: Sleep Button [SBTN]
    ACPI: SSDT 00000000df450999 00281 (v01 PmRef BspIst 00003000 INTL 20050624)
    ACPI: SSDT 00000000df450df1 005C6 (v01 PmRef BspCst 00003001 INTL 20050624)
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Monitor-Mwait will be used to enter C-3 state
    Marking TSC unstable due to TSC halts in idle
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    processor ACPI_CPU:00: registered as cooling_device0
    ACPI: Processor [CPU0] (supports 8 throttling states)
    ACPI: SSDT 00000000df450c1a 001D7 (v01 PmRef ApIst 00003000 INTL 20050624)
    ACPI: SSDT 00000000df4513b7 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
    processor ACPI_CPU:01: registered as cooling_device1
    ACPI: Processor [CPU1] (supports 8 throttling states)
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [THM] (44 C)
    i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    iTCO_vendor_support: vendor-support=0
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    ehci_hcd 0000:00:1a.7: setting latency timer to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1a.7: debug port 1
    ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
    ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfed1c400
    input: PC Speaker as /devices/platform/pcspkr/input/input5
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 6 ports detected
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    ehci_hcd 0000:00:1d.7: irq 20, io mem 0xfed1c000
    e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.4-k4
    e1000e: Copyright (c) 1999-2008 Intel Corporation.
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 6 ports detected
    e1000e 0000:00:19.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    e1000e 0000:00:19.0: setting latency timer to 64
    e1000e 0000:00:19.0: irq 30 for MSI/MSI-X
    0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:24:e8:a0:ef:64
    0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
    0000:00:19.0: eth0: MAC: 7, PHY: 8, PBA No: 1004ff-0ff
    nvidia: module license 'NVIDIA' taints kernel.
    Disabling lock debugging due to kernel taint
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
    iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060)
    iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    cfg80211: Calling CRDA to update world regulatory domain
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    uhci_hcd 0000:00:1a.0: setting latency timer to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f60
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    uhci_hcd 0000:00:1a.1: setting latency timer to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f80
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    uhci_hcd 0000:00:1a.2: setting latency timer to 64
    uhci_hcd 0000:00:1a.2: UHCI Host Controller
    uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1a.2: irq 22, io base 0x00006fa0
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f00
    usb usb6: configuration #1 chosen from 1 choice
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f20
    usb usb7: configuration #1 chosen from 1 choice
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40
    usb usb8: configuration #1 chosen from 1 choice
    hub 8-0:1.0: USB hub found
    hub 8-0:1.0: 2 ports detected
    usb 1-6: new high speed USB device using ehci_hcd and address 3
    usb 1-6: configuration #1 chosen from 1 choice
    ohci1394 0000:03:01.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    nvidia 0000:01:00.0: setting latency timer to 64
    NVRM: loading NVIDIA UNIX x86_64 Kernel Module 185.18.14 Wed May 27 01:23:47 PDT 2009
    ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f1bff800-f1bfffff] Max Packet=[2048] IR/IT contexts=[4/4]
    usb 5-1: new full speed USB device using uhci_hcd and address 2
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    ACPI: WMI: Mapper loaded
    usb 5-1: configuration #0 chosen from 1 choice
    usb 5-1: config 0 descriptor??
    acpi device:35: registered as cooling_device2
    input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:32/device:33/input/input6
    ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27ks
    iwlagn: Copyright(c) 2003-2009 Intel Corporation
    iwlagn 0000:0c:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    iwlagn 0000:0c:00.0: setting latency timer to 64
    iwlagn 0000:0c:00.0: Detected Intel Wireless WiFi Link 5300AGN REV=0x24
    input: DualPoint Stick as /devices/platform/i8042/serio1/input/input7
    input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input8
    iwlagn 0000:0c:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    iwlagn 0000:0c:00.0: irq 31 for MSI/MSI-X
    sdhci: Secure Digital Host Controller Interface driver
    sdhci: Copyright(c) Pierre Ossman
    sdhci-pci 0000:03:01.1: SDHCI controller found [1180:0822] (rev 21)
    sdhci-pci 0000:03:01.1: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Registered led device: mmc0::
    mmc0: SDHCI controller on PCI [0000:03:01.1] using DMA
    sdhci-pci 0000:03:01.2: SDHCI controller found [1180:0843] (rev 11)
    sdhci-pci 0000:03:01.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    mmc1: Hardware doesn't specify base clock frequency.
    sdhci-pci 0000:03:01.2: PCI INT C disabled
    Linux video capture interface: v2.00
    uvcvideo: Found UVC 1.00 device Integrated_Webcam_2M (0c45:63f1)
    input: Integrated_Webcam_2M as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input9
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input10
    input: HDA Intel Mic at Sep Left Jack as /devices/pci0000:00/0000:00:1b.0/input/input11
    input: HDA Intel Mic at Ext Right Jack as /devices/pci0000:00/0000:00:1b.0/input/input12
    input: HDA Intel Line Out at Sep Left Jack as /devices/pci0000:00/0000:00:1b.0/input/input13
    input: HDA Intel HP Out at Ext Right Jack as /devices/pci0000:00/0000:00:1b.0/input/input14
    ricoh-mmc: Ricoh MMC Controller disabling driver
    ricoh-mmc: Copyright(c) Philip Langdale
    ricoh-mmc: Ricoh MMC controller found at 0000:03:01.2 [1180:0843] (rev 11)
    ricoh-mmc: Controller is now disabled.
    phy0: Selected rate control algorithm 'iwl-agn-rs'
    EXT4 FS on sda2, internal journal on sda2:8
    ieee1394: Host added: ID:BUS[0-00:1023] GUID[314fc000176a4221]
    EXT4-fs: barriers enabled
    kjournald2 starting: pid 3310, dev sda1:8, commit interval 5 seconds
    EXT4 FS on sda1, internal journal on sda1:8
    EXT4-fs: delayed allocation enabled
    EXT4-fs: file extents enabled
    EXT4-fs: mballoc enabled
    EXT4-fs: mounted filesystem sda1 with ordered data mode
    EXT4-fs: barriers enabled
    kjournald2 starting: pid 3311, dev sda3:8, commit interval 5 seconds
    EXT4 FS on sda3, internal journal on sda3:8
    EXT4-fs: delayed allocation enabled
    EXT4-fs: file extents enabled
    EXT4-fs: mballoc enabled
    EXT4-fs: mounted filesystem sda3 with ordered data mode
    Adding 4337540k swap on /dev/sda4. Priority:-1 extents:1 across:4337540k
    iwlagn 0000:0c:00.0: firmware: requesting iwlwifi-5000-2.ucode
    iwlagn 0000:0c:00.0: loaded firmware version 8.24.2.12
    Registered led device: iwl-phy0::radio
    Registered led device: iwl-phy0::assoc
    Registered led device: iwl-phy0::RX
    Registered led device: iwl-phy0::TX
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    ADDRCONF(NETDEV_UP): wlan0: link is not ready
    wlan0: authenticate with AP 00:0f:66:36:7d:d6
    wlan0: authenticated
    wlan0: associate with AP 00:0f:66:36:7d:d6
    wlan0: RX AssocResp from 00:0f:66:36:7d:d6 (capab=0x401 status=0 aid=1)
    wlan0: associated
    ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    wlan0: no IPv6 routers present
    fstab
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    /dev/cdrom /media/cd auto ro,user,noauto,unhide 0 0
    /dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
    #/dev/fd0 /media/fl auto user,noauto 0 0
    UUID=11ce9e4b-8f49-40f8-b5eb-9b831de7a691 /boot ext4 defaults 0 2
    UUID=324656d9-019f-48a7-b174-10dd3e51ce22 swap swap defaults 0 0
    UUID=a5e2a98f-759a-4669-b7f5-1acc2efce817 /home ext4 defaults 0 2
    UUID=dcfa58b1-012a-480b-af37-4546ae2577c0 / ext4 defaults 0 1
    now, I am pretty sure this drive IS working because I installed Arch with it like a week ago.
    Last edited by Dethredic (2009-08-01 00:10:31)

    yw

  • 'Error 1063 occurred at an unidentified location' CompactRIO driver internal error when attempting simple input/output

       An NI representative (Eric Dean) recently held an NI Open House to showcase the contributions NI was making to the University.  Before leaving he noticed cRIO-9014 was not functioning properly and asked that I reinstall the drivers, saying they had likely been steamrolled by another peice of NI software (he mentioned this was a known issue and was being resolved in future releases)  After un/reinstalling everything (but not reinstalling the corruptING software) the CompactRIO still returns 'Error 1063'. 
    When asked, Eric asked that I replace a specific driver he suspected of  being corrupt: EIO_SpecifyEIONode.vi  at location C:\Program Files\National Instruments\LabVIEW8.5\vi.lib\eio\EIONode\
    When this failed to resolve the issue I was directed here.
    We're using a simple FPGA in/out project to test the unit. When asked to run, the previously mentioned error pops up.

    Hi Nathan,
    Sorry for the confusion.  The block diagram is where the LabVIEW code for your FPGA is.  If you expand your FPGA in your FPGA project you should have a VI.  You can open that VI and there will be two windows, a front panel and a block diagram.  The block diagram is white and if it doesn't show up automatically you can go to Window»Show Block Diagram and it will show up.  You will see the old I/O node, delete it and then right click on the block diagram to bring up the functions pallet.  Go to FPGA I/O and then I/O node.  Click on the I/O node and drag it onto your block diagram.  You will need to wire it up the same way the old one is wired.  I have included a screen shot of the block diagram, functions pallet and the I/O node.   
    Stephen S.
    National Instruments
    1 Test is worth 1000 expert opinions
    Attachments:
    IO Node.gif ‏34 KB

  • Changing the location and drive of the "Documents" folder

    Hi all,
    I would like to move my "Documents" folder to a drive other than the system boot drive. Is it possible to control the location of this special folder so that when I use the sidebar to click on "documents" it goes to my data drive instead of my OS drive?
    thanks in advance!

    Move your Users folder or the individual User account folders to a different drive to keep User files from competing with System files.
    You can do this in 10.6 Snow leopard, one User at a time, without having to resort to CarbonCopyCloner or any Terminal commands, using this handy article:
    http://chris.pirillo.com/how-to-move-the-home-folder-in-os-x-and-why/
    The procedure is first, the explanation follows.

  • Home Location Nokia Drive +

    Hello
    I have recently purchased Nokia Lumia 925. How can i setup Home Location in Nokia Drive +.
    Thanks
    Pavan

    There's no "home" setting in Here Drive, but you can rename a saved destination to "Home" and use it.
    I guess the following articles will be helpful to understand here drive basics
    HERE makes the most out of Windows Phone 8
    How to use HERE Drive
    How to use My Commute on Windows Phone 8

  • Is there a way to find files by their location or drive?

    Hi there. I have moved most of my photos over to an external hard drive, but it looks like a few got missed and I don't really feel like searching through 10K photos to see which ones don't have the offline icon. Is there a way to search for which ones are still on my c: drive so I can then select them and move them over?
    Thanks! Amy

    You can use the Folder Location view to view photos by their file location (e.g. which drive they are on). You don't say which version of PSE you have, but in the PSE 6 Organizer, do Display > Folder Location.

Maybe you are looking for

  • Anyone having a problem with links in Safari after upgrading?

    okay,  Before the upgrade to os5, we were able to go to the website to get  the e-edition of our local paper.  The way their website is designed you first see part of the first page and then there is a link to take you to the full page.   Everything

  • Can't get MP3s to work on Flash executable

    Hi, I can't seem to embed mp3s to my flash executable. Any idea anyone? Tried everything but it still doesn't work. Someone told me it should work but even so, it will leave gap when looping. Is this true? I am really clueless. Please help asap!

  • [Asking for Clue] Authorization to Display Spesific Master Data of HR

    Hi, I have 2 payroll area, R1 and R2. I want to authorize user only to R2 payroll area employee's master data. How to make this happen? Thanks & Regards, nessia

  • Error when importing Flash

    When I try to import .swf files into Captivate 4, I get the following error message: The Adobe Flash File contains action script that references 'root'. This might cause the Adobe captivate project to work incorrectly or to stop working. Do you want

  • Oracle Maps (11gP1) deployed to OAS grid  FOIs don't display

    We have a four server OAS grid (10.1.3.1) with a dedicated Mapview node distributed across all four. The machines are all running Linux. We've set up a shared NFS drive for the cache and created soft links in each of the web folders to common images