Dataguard 11g setup between AIX and Linux

Hi,
We are planning to move our Oracle databases from AIX 6.1 to Oracle Linux 6.2
To reduce the downtime, we are thinking of setting up a dataguard (physical or logical) and do the switchover.
Have you performed this before?
Will you pls send me the steps?
Thanks,
DR

Hello again;
I thinking no for the same reason.
When my shop moved from AIX to Linux we just install Oracle on Linux and patched it to the same level as the AIX. We created users, tablespaces, job etc in advance and then just used import/export to move the needed schema's. Data Pump make this much easier.
Do a schema(s) compare and switch when ready. But in any event I don't believe Data Guard can help you. You mostly have a migrate issue.
Please consider closing your question when complete.
h3. Oracle Database 10g & Multi-Terabyte Database Migration
http://www.oracle.com/technetwork/database/features/availability/thehartfordprofile-xtts-133180.pdf
h3. Incrementally Updating Transportable Tablespaces using RMAN
http://www.oracle.com/technetwork/database/features/availability/itts-130873.pdf
h3. Platform Migration Using Transportable Database Oracle Database 11g and 10g Release 2
http://www.oracle.com/technetwork/database/features/availability/maa-wp-10gr2-platformmigrationtdb-131164.pdf
Best Regards
mseberg
Edited by: mseberg on Nov 13, 2012 6:31 PM

Similar Messages

  • ANN: ANN: XDK 10.1.0.2.0 for HP-UX64, AIX and LINUX Production Release

    XDK 10.1.0.2.0 production for HP-UX64, AIX and LINUX is ready to download on OTN:
    http://otn.oracle.com/tech/xml/xdk/software/production10g/index.html

    The error indicates that the password (or wallet) files oidpwdldap1 and oidpwdr<ORACLE_SID> do NOT exist under $ORACLE_HOME/ldap/admin or your $ORACLE_HOME and $PATH are set incorrectly (a bit unlikely).
    Assuming that the $ORACLE_HOME and $PATH are indeed set to correct values, if the 2 files mentioned above do not exist under $ORACLE_HOME/ldap/admin, then perform the below action plan:
    1. Set the ORACLE_HOME to INFRASTRUCTURE ORACLE_HOME
    2. set the PATH to $ORACLE_HOME/bin:$ORACLE_HOME/ldap/bin:$ORACLE_HOME/opmn/bin:$PATH
    3. Ensure that you are able to login to sqlplus as "ods" user.
    4. If you do NOT know the password of ods user, then reset the password.
    5. Run the below command and enter the ods password when prompted for it.
    oidpasswd create_wallet=true
    6. Voila! The Wallet files are created under $ORACLE_HOME/ldap/admin.
    HTH,
    Regards,
    Praveen
    Edited by: Praveen B K on Aug 28, 2009 3:20 AM

  • Steps to export and import oracle 10g databse from AIX to AIX and LINUX

    Hi,
    I need the steps to export the oracle 10g database from AIX server to AIX server and LINUX server.
    Please give me all the steps as this is my first exort an import activity.
    thanks,

    For 10g there exist two ways to do so.
    1) Regular exp/imp.
    2) Data pump expdp/impdp.
    As this is your first export and import activity, relevant concept understanding is mandatory for you.
    Documentation Link
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14215/toc.htm
    Read the chapters 1,2,3 (Data pump expdp/impdp) and 19 (regular exp/imp). Good luck.

  • Creating network between Mac and Linux

    Hello guys! I need to set up network between my iMac and Ubuntu linux. iMac is connected in internet by Airport and Fon Wifi Router witch is connected in router which is connected to adsl -modem. My pc is connected directly to router. Both computers have access to internet. Is there any easy solutions to share files with mac and linux? I don't need any webservers etc, I just want to share files.
    Other question related to this, why is my mac's ip address like 192.168... and linux ip addrress is 84.250...?
    Thanks allready!

    Though I'm not newbie with computers, I'm really confused becouse I haven't set up network like this never before.
    Not a problem, no worry... we all know something somebody else doesn't and vice versa.
    My linux says that my DHCP -IP is 193.210.18.18, is that related to this in any way?
    Yes, if the Mac had an IP of 193.210.18.x, (but not 18 for x), then connection would be simple, but I think we must have two devices passing out IPs. What is the Mac's IP again?
    http://www.helpdesk.umd.edu/topics/communication/ethernet/office/winxp/2882/
    Do you have any advice where I could start looking from the right IP of my linux?
    http://www.webmasterforums.com/networks-clusters/1804-find-ip-address-my-linux-b ox.html
    I'm not sure if its even configurable.
    http://tinyurl.com/2gug9s

  • Differences between AIX and Windows for SAP

    Dear All,
    I have a problem regarding SAP Software.We want to change our company software .First we order SAP On Windows with Oracle10g But Now We want SAP on AIX with Oracle10g.
    SAP delivered us software on Windows platform.
    Please Suggest me for this as what are the differences between the above two platforms and what are the differences between the above 2 platforms.
    Regards,
    Pankaj Kalsayan

    hi Pankaj,
    well, this is a very general question. perhaps you could specify a little more.
    in general i would see no difference regarding the end user sitting in front of his pc using sapgui.
    as far as i know all server side sap software is available for aix and windows (and many more).
    for administration on the other hand there is of course lots of difference. AIX is a UNIX operating system running on special hardware with power processors. it offers quit extensive virtualisation abilities using so called LPARs and supports real big number of CPUs and large RAM. Windows is a completly differnet operating system running mostly on x86/amd64 hardware.
    therefore you should also consider what know-how is available in your system administration.
    not shure if that is partly answering your question ...
    btw. if you are going forward with AIX you should perhaps consider switching oracle with db2. so you have a consistent IBM based landscape. also to me, sap and db2 seem to "like" each other more than sap and oracle
    regards,
    martin

  • IndexOf - difference between Win and Linux encoding

    Hello folks, wondering if someone could put me on the right track over this little problem with porting a java app to Linux...
    I have a nice little program, developed on (the latest) JDK under windows which reads a custom file format, locates the second occurance of the substring 'PNG', ignores everything before the character before this PNG (hence the -1 below) and saves the remainder, which is now a bog-standard PNG image. The first 'PNG substring always occurs within the first 50 bytes (hence the 50 below) and the second around the 2kB mark. Here's the line that finds the location of the second 'PNG' in the file loaded into strFileContent:
    location = strFileContent.indexOf( "PNG", 50 )-1;All is well compiled and run on windows, say file 'test1.xyz' produces a value for location of 2076 and saves a nice PNG called 'test1.png'.
    When I haul it over to Linux (Ubuntu 9.04) and lo, location comes out as 1964 for the same file, and of course the file is no-longer a PNG because there are an extra 112 bytes on the front end. Running the windows compile of the code or a fresh Linux compile makes no difference.
    I'm suspecting Win and Linux Java count, perhaps, line endings or some such differently, perhaps have to check an encoding. I'd appreciate any pointers on correcting this to work on both platforms (ultimately I'm trying to appease a Mac user, but don't have a Mac to play with at the moment).
    Cheers,
    K.
    Ken

    phaethon2008 wrote:
    I'm suspecting Win and Linux Java count, perhaps, line endings or some such differently, perhaps have to check an encoding. I'd appreciate any pointers on correcting this to work on both platforms (ultimately I'm trying to appease a Mac user, but don't have a Mac to play with at the moment).The immediate cause of your problem is probably that Windows uses a 8bit encoding as the default (probably some ISO-8859-{noformat}*{noformat} variant or the Windows-bastardization of it), while Ubuntu uses UTF-8, which has a varying number of bytes per character.
    The much more important underlying problem is that you're trying to treat binary data as if it were text. A PNG image is not text. Handling binary data in Strings (or char[]) is a sure way to invite desaster.
    You must convert your code to handle InputStream/OutputStream/byte[] instead of Reader/Writer/String/char[].

  • Howto setup VPN between RVS4000 and linux PC ?

    The "vpnc" - cisco compatible vpn client is available in lastest version of Ubuntu.
    Has anyone successed to establish a VPN?

    WRT54G does not support IPsec VPN. You could try WRV210 instead.

  • PDFs rendered on AIX and Linux different file sizes

    Hello,
    If I render a PDF on AIX my file size is around 400K. If I render the the same PDF on Linux, the file size is around 1.2MB. I am using the same XDP and XML file. I am using LiveCycle Forms v7.
    Any ideas?
    Thanks, Greg

    Just found out that the file size is larger on Linux when I apply usage rights with Reader Extensions.

  • Connection between AIX and NT based Oracle

    Hi There,
    I am encountering the following errors while connecting between two Oracle 8.1.5 databases i.e AIX to Windows NT 4 service pack 4 (Note. Windows NT has got Personal Oracle 8.1.5) :
    1. TNS-3505 error is coming while try to connect from AIX to NT.
    2. ORA-12514 and ORA-12154 while trying to connect from NT to AIX. Mind it, setting up the TNSNAMES on NT didnt give any problem.
    Is there any one out there to help me out.
    Thanks in Advance
    KVS

    You can make ODBC calls directly in C or you can use a variety of higher-level API's (RDO, DAO, ADO, etc.).
    Justin

  • PCNS between AD and Linux based LDAP

    Is it possible to sync passwords between an AD domain and a Linux based LDAP?
    All accounts in LDAP are present in AD. The initial flow would preferable be:
    LDAP password -> AD
    and from there on onwards, all password changes from AD should flow back to LDAP.
    Thanks

    Hi,
    I would be interested to see if the password sync can happen or you may like to find one of the 3rd party tool which can do that, so far i know i never worked with password sync service between the two, you may like to read these articles:
    http://technet.microsoft.com/en-us/magazine/2008.12.linux.aspx
    http://www.chriscowley.me.uk/blog/2013/12/16/integrating-rhel-with-active-directory/
    Best of luck, cheers
    Thanks
    Inderjit

  • RMAN compatibility between AIX and RHL

    Hi,
    I have a 1 TB 10gR2 database running on AIX 5.3. Can I take an RMAN backup of it and restore it in RedHat Linux ES 5?
    If it is not compatible, do I have any other options apart from the normal export/import?
    Thanks in advance,
    Karthik

    Hi Karthik,
    You can query the following table to see platforms to which rman can convert your AIX 5.3 database to.
    select * from V$DB_TRANSPORTABLE_PLATFORM;You have to run a different type of rman backup please check the documentation via this link.
    http://docs.oracle.com/cd/B19306_01/backup.102/b14191/dbxptrn.htm#CHDCFFDIRgds,
    Tycho

  • OMQ between OpenVMS and Linux

    Are there any issues with having communications between OMQ running on OpenVMS and OMQ running on Linux? Is there any documentation on this product for both OS's that I can download and review?
    Thanks

    We have been successfully using OMQ between Alphas running OpenVMS 7.3-2 and Redhat Linux using v5 of OMQ for several years now. You should be able to use the manuals for Unix to set it up on Linux. As long as you have the initialization files configured on both systems to recognize each other there shouldn't be anything unusual as compared to communicating between 2 OpenVMS nodes.

  • Can you share an external disk between OSX and Linux?

    I am using both Linux and Mac OS X computers at work. I have found a need in some cases for backing up very large files and/or moving them between systems that are not necessarily on a saf network. At least not at the same time.
    For this purpose I wanted an external big disk that could be mounted on a Linux system as well as a Mac. To my dismay there seem to be no common modern journalling file system between these two, well dialects of, unix.
    I am not going to use and old Windows file system such as FAT32 and the only possibility so far has been Apple's HFS+ with the journal turned off (as Linux does not support writing to a journalled HFS+ file system). Darwin does not support any of the file systems that I regularly use on Linux.
    Perhaps I am mistaken - is there really nothing good and useful out there?
    /T

    I was under the impression that having a journal would be safer, not just for the boot drive. Any volume that is not properly unmounted before removed (or the couputer is turned off) might be left in an incomplete save state, since data might have been saved to buffers only, not to the disk proper.
    To me safer would be better. Apple has added journaling to HFS+ which is good, and there are several journaling file systems for Linux. Nothing in common. Not even with Windows. I guess I will have to use HFS+ with the journal turned off, but it seems suboptimal to me.
    /T

  • Difference in data transfer rates between winXP and Linux server?

    Hello all,
    I am using a winXP laptop to act as my server (all usb external hard drives are connected to it) but the data transfer rates can be really slow. Is Linux faster in that regard? Can a Linux based server provide faster data transfer rates?
    Thanks for any help.
    Bmora96

    Linux cannot make hardware go any faster - so if WinXP and its drivers are making optimal use of those USB drives and the USB data transfer pipe, Linux will not make it faster. (but installing Linux and going Tux are always excellent ideas that need no real reason either ;-) )
    Real question you should be asking is if using a notebook in a server role is wise thing to do?

  • Drives disappear between UEFI and Linux

    This problem has me stumped for a month, so I'm hoping someone can shed some light on this.
    Originally, I had an MSI motherboard with BIOS only, GRUB2 booting Arch and Windows 7, no problems whatsoever. I upgraded to an Asus motherboard with UEFI, and at first Arch booted fine (Windows just blue screened). Subsequent boots would randomly fail, sometimes telling me Arch couldn't find the root drive, sometimes the home drive, and other times it would boot successfully. There was no telling how many times I would need to reboot before Arch would find all the drives. I returned the Asus board and replaced it with a Gigabyte Z97-D3H, but the problem continued.
    Finally this Tuesday I reinstalled Arch in UEFI mode, and instead of a bootloader, UEFI boots Linux directly, as shown in the "Using UEFI directly" section of EFISTUB. Still, Arch randomly fails to find my drives.
    Here is my drive layout when Arch boots properly (when it doesn't, lsblk also can't see the missing drive):
    ┌── kiba ⟶ Paradise ~
    └───── lsblk -o name,fstype,size,label,mountpoint
    NAME FSTYPE SIZE LABEL MOUNTPOINT
    sda 59.6G
    ├─sda1 vfat 512M SHAMAN /boot
    ├─sda2 ext4 51.1G Hige /
    └─sda3 swap 8G swap [SWAP]
    sdb 119.2G
    └─sdb1 ext4 119.2G Kiba /home
    sdc 465.8G
    ├─sdc1 ntfs 128G Tsume
    └─sdc2 ext4 337.8G Toboe /home/kiba/Toboe
    And /etc/fstab:
    # <file system> <dir> <type> <options> <dump> <pass>
    # /dev/sda2 UUID=67de5f82-861e-4934-94ba-9fdde2225bb1
    LABEL=Hige / ext4 rw,noatime,discard,data=ordered 0 1
    # /dev/sda1 UUID=6A35-D4DE
    LABEL=SHAMAN /boot vfat rw,noatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
    # /dev/sdb1 UUID=c89186ab-c005-4598-a5b9-2be4d0d6202c
    LABEL=Kiba /home ext4 rw,noatime,discard,data=ordered 0 2
    # /dev/sda3 UUID=0ee5665b-13e3-4592-bdf1-5701636697f3
    LABEL=swap none swap defaults 0 0
    LABEL=Toboe /home/kiba/Toboe ext4 defaults 0 0

    Oops, I forgot to mention that. As far as I can tell, the SMART status is fine on all the drives, but then I could be missing something.
    Here's the output for the root drive:
    ┌── kiba ⟶ Paradise ~ 11:49:50
    └───── s smartctl -t long /dev/sda && sleep 61 && s smartctl -a /dev/sda
    smartctl 6.3 2014-07-26 r3976 [x86_64-linux-3.18.6-1-ARCH] (local build)
    Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF OFFLINE IMMEDIATE AND SELF-TEST SECTION ===
    Sending command: "Execute SMART Extended self-test routine immediately in off-line mode".
    Drive command "Execute SMART Extended self-test routine immediately in off-line mode" successful.
    Testing has begun.
    Please wait 1 minutes for test to complete.
    Test will complete after Sat Feb 14 11:52:27 2015
    Use smartctl -X to abort test.
    smartctl 6.3 2014-07-26 r3976 [x86_64-linux-3.18.6-1-ARCH] (local build)
    Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF INFORMATION SECTION ===
    Model Family: JMicron based SSDs
    Device Model: KINGSTON SV100S264G
    Serial Number: 08AAA0003175
    Firmware Version: D100811a
    User Capacity: 64,023,257,088 bytes [64.0 GB]
    Sector Size: 512 bytes logical/physical
    Rotation Rate: Solid State Device
    Form Factor: 2.5 inches
    Device is: In smartctl database [for details use: -P show]
    ATA Version is: ATA8-ACS (minor revision not indicated)
    SATA Version is: SATA 2.6, 3.0 Gb/s
    Local Time is: Sat Feb 14 11:52:28 2015 PST
    SMART support is: Available - device has SMART capability.
    SMART support is: Enabled
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    General SMART Values:
    Offline data collection status: (0x00) Offline data collection activity
    was never started.
    Auto Offline Data Collection: Disabled .
    Self-test execution status: ( 0) The previous self-test routine complet ed
    without error or no self-test has ever
    been run.
    Total time to complete Offline
    data collection: ( 30) seconds.
    Offline data collection
    capabilities: (0x1b) SMART execute Offline immediate.
    Auto Offline data collection on/off support.
    Suspend Offline collection upon new
    command.
    Offline surface scan supported.
    Self-test supported.
    No Conveyance Self-test supported.
    No Selective Self-test supported.
    SMART capabilities: (0x0003) Saves SMART data before entering
    power-saving mode.
    Supports SMART auto save timer.
    Error logging capability: (0x01) Error logging supported.
    General Purpose Logging supported.
    Short self-test routine
    recommended polling time: ( 1) minutes.
    Extended self-test routine
    recommended polling time: ( 1) minutes.
    SMART Attributes Data Structure revision number: 16
    Vendor Specific SMART Attributes with Thresholds:
    ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
    1 Raw_Read_Error_Rate 0x000b 100 100 050 Pre-fail Always - 0
    2 Throughput_Performance 0x0005 100 100 050 Pre-fail Offline - 0
    3 Unknown_Attribute 0x0007 100 100 050 Pre-fail Always - 0
    5 Reallocated_Sector_Ct 0x0013 100 100 050 Pre-fail Always - 0
    7 Unknown_Attribute 0x000b 100 100 050 Pre-fail Always - 0
    8 Unknown_Attribute 0x0005 100 100 050 Pre-fail Offline - 0
    9 Power_On_Hours 0x0012 100 100 000 Old_age Always - 13005
    10 Unknown_Attribute 0x0013 100 100 050 Pre-fail Always - 0
    12 Power_Cycle_Count 0x0012 100 100 000 Old_age Always - 3565
    168 SATA_Phy_Error_Count 0x0012 100 100 000 Old_age Always - 15
    175 Bad_Cluster_Table_Count 0x0003 100 100 010 Pre-fail Always - 0
    192 Unexpect_Power_Loss_Ct 0x0012 100 100 000 Old_age Always - 0
    194 Temperature_Celsius 0x0022 031 100 020 Old_age Always - 31 (Min/Max 23/40)
    197 Current_Pending_Sector 0x0012 100 100 000 Old_age Always - 0
    240 Unknown_Attribute 0x0013 100 100 050 Pre-fail Always - 0
    170 Bad_Block_Count 0x0003 100 100 010 Pre-fail Always - 0 89 0
    173 Erase_Count 0x0012 100 100 000 Old_age Always - 5 9441 7415
    SMART Error Log Version: 1
    ATA Error Count: 15 (device log contains only the most recent five errors)
    CR = Command Register [HEX]
    FR = Features Register [HEX]
    SC = Sector Count Register [HEX]
    SN = Sector Number Register [HEX]
    CL = Cylinder Low Register [HEX]
    CH = Cylinder High Register [HEX]
    DH = Device/Head Register [HEX]
    DC = Device Command Register [HEX]
    ER = Error register [HEX]
    ST = Status register [HEX]
    Powered_Up_Time is measured from power on, and printed as
    DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes,
    SS=sec, and sss=millisec. It "wraps" after 49.710 days.
    Error 15 occurred at disk power-on lifetime: 12999 hours (541 days + 15 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 a0
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 a0 08 00:11:20.100 IDENTIFY DEVICE
    b1 c1 00 00 00 00 00 ff 00:11:19.800 DEVICE CONFIGURATION FREEZE LOCK [OBS-ACS-3]
    f5 00 00 00 00 00 00 ff 00:11:19.800 SECURITY FREEZE LOCK
    ec 00 00 00 00 00 00 00 00:11:17.600 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:11:17.600 IDENTIFY DEVICE
    Error 14 occurred at disk power-on lifetime: 12999 hours (541 days + 15 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 a0
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 a0 08 00:15:36.300 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:15:35.900 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:15:33.700 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:15:33.700 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:15:33.700 IDENTIFY DEVICE
    Error 13 occurred at disk power-on lifetime: 12986 hours (541 days + 2 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 00
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 00 00 00:03:08.200 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:03:02.700 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:02:46.000 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:02:41.400 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:02:24.700 IDENTIFY DEVICE
    Error 12 occurred at disk power-on lifetime: 12763 hours (531 days + 19 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 00
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 00 00 00:00:35.900 IDENTIFY DEVICE
    00 00 00 00 00 00 00 ff 00:00:29.400 NOP [Abort queued commands]
    00 00 00 00 00 00 00 ff 00:00:12.400 NOP [Abort queued commands]
    00 00 00 00 00 00 00 ff 00:00:00.000 NOP [Abort queued commands]
    Error 11 occurred at disk power-on lifetime: 12706 hours (529 days + 10 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 00
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 00 00 00:02:30.800 IDENTIFY DEVICE
    e7 00 00 00 00 00 a0 ff 00:02:11.900 FLUSH CACHE
    e7 00 00 00 00 00 a0 08 00:01:44.500 FLUSH CACHE
    e7 00 00 00 00 00 a0 08 00:01:43.300 FLUSH CACHE
    e7 00 00 00 00 00 a0 08 00:01:40.300 FLUSH CACHE
    SMART Self-test log structure revision number 1
    Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
    # 1 Extended offline Completed without error 00% 13005 -
    # 2 Extended offline Completed without error 00% 13005 -
    Selective Self-tests/Logging not supported
    And for the home drive:
    ┌── kiba ⟶ Paradise ~ 11:52:28
    └───── s smartctl -t long /dev/sdb && sleep 61 && s smartctl -a /dev/sdb
    smartctl 6.3 2014-07-26 r3976 [x86_64-linux-3.18.6-1-ARCH] (local build)
    Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF OFFLINE IMMEDIATE AND SELF-TEST SECTION ===
    Sending command: "Execute SMART Extended self-test routine immediately in off-line mode".
    Drive command "Execute SMART Extended self-test routine immediately in off-line mode" successful.
    Testing has begun.
    Please wait 1 minutes for test to complete.
    Test will complete after Sat Feb 14 11:54:25 2015
    Use smartctl -X to abort test.
    smartctl 6.3 2014-07-26 r3976 [x86_64-linux-3.18.6-1-ARCH] (local build)
    Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF INFORMATION SECTION ===
    Model Family: JMicron based SSDs
    Device Model: KINGSTON SV100S2128G
    Serial Number: 08BB20039237
    Firmware Version: D110225a
    User Capacity: 128,035,676,160 bytes [128 GB]
    Sector Size: 512 bytes logical/physical
    Rotation Rate: Solid State Device
    Form Factor: 2.5 inches
    Device is: In smartctl database [for details use: -P show]
    ATA Version is: ATA8-ACS (minor revision not indicated)
    SATA Version is: SATA 2.6, 3.0 Gb/s
    Local Time is: Sat Feb 14 11:54:26 2015 PST
    SMART support is: Available - device has SMART capability.
    SMART support is: Enabled
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    General SMART Values:
    Offline data collection status: (0x00) Offline data collection activity
    was never started.
    Auto Offline Data Collection: Disabled.
    Self-test execution status: ( 0) The previous self-test routine completed
    without error or no self-test has ever
    been run.
    Total time to complete Offline
    data collection: ( 30) seconds.
    Offline data collection
    capabilities: (0x1b) SMART execute Offline immediate.
    Auto Offline data collection on/off support.
    Suspend Offline collection upon new
    command.
    Offline surface scan supported.
    Self-test supported.
    No Conveyance Self-test supported.
    No Selective Self-test supported.
    SMART capabilities: (0x0003) Saves SMART data before entering
    power-saving mode.
    Supports SMART auto save timer.
    Error logging capability: (0x01) Error logging supported.
    General Purpose Logging supported.
    Short self-test routine
    recommended polling time: ( 1) minutes.
    Extended self-test routine
    recommended polling time: ( 1) minutes.
    SMART Attributes Data Structure revision number: 16
    Vendor Specific SMART Attributes with Thresholds:
    ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
    1 Raw_Read_Error_Rate 0x000b 100 100 050 Pre-fail Always - 0
    2 Throughput_Performance 0x0005 100 100 050 Pre-fail Offline - 0
    3 Unknown_Attribute 0x0007 100 100 050 Pre-fail Always - 0
    5 Reallocated_Sector_Ct 0x0013 100 100 050 Pre-fail Always - 0
    7 Unknown_Attribute 0x000b 100 100 050 Pre-fail Always - 0
    8 Unknown_Attribute 0x0005 100 100 050 Pre-fail Offline - 0
    9 Power_On_Hours 0x0012 100 100 000 Old_age Always - 9899
    10 Unknown_Attribute 0x0013 100 100 050 Pre-fail Always - 0
    12 Power_Cycle_Count 0x0012 100 100 000 Old_age Always - 3541
    168 SATA_Phy_Error_Count 0x0012 100 100 000 Old_age Always - 13
    175 Bad_Cluster_Table_Count 0x0003 100 100 010 Pre-fail Always - 0
    192 Unexpect_Power_Loss_Ct 0x0012 100 100 000 Old_age Always - 0
    194 Temperature_Celsius 0x0022 034 100 020 Old_age Always - 34 (Min/Max 23/40)
    197 Current_Pending_Sector 0x0012 100 100 000 Old_age Always - 0
    240 Unknown_Attribute 0x0013 100 100 050 Pre-fail Always - 0
    170 Bad_Block_Count 0x0003 100 100 010 Pre-fail Always - 0 135 0
    173 Erase_Count 0x0012 100 100 000 Old_age Always - 2 16503 12094
    SMART Error Log Version: 1
    ATA Error Count: 37 (device log contains only the most recent five errors)
    CR = Command Register [HEX]
    FR = Features Register [HEX]
    SC = Sector Count Register [HEX]
    SN = Sector Number Register [HEX]
    CL = Cylinder Low Register [HEX]
    CH = Cylinder High Register [HEX]
    DH = Device/Head Register [HEX]
    DC = Device Command Register [HEX]
    ER = Error register [HEX]
    ST = Status register [HEX]
    Powered_Up_Time is measured from power on, and printed as
    DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes,
    SS=sec, and sss=millisec. It "wraps" after 49.710 days.
    Error 37 occurred at disk power-on lifetime: 9893 hours (412 days + 5 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 a0
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 a0 08 00:00:09.200 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:00:08.800 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:00:08.800 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:00:06.600 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:00:06.600 IDENTIFY DEVICE
    Error 36 occurred at disk power-on lifetime: 9880 hours (411 days + 16 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 00
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 00 00 00:09:55.000 IDENTIFY DEVICE
    ec 00 00 00 00 00 a0 ff 00:09:48.800 IDENTIFY DEVICE
    e7 00 00 00 00 00 a0 08 00:09:47.900 FLUSH CACHE
    ec 00 01 00 00 00 00 08 00:04:00.000 IDENTIFY DEVICE
    ec 00 01 00 00 00 00 08 00:03:56.100 IDENTIFY DEVICE
    Error 35 occurred at disk power-on lifetime: 9855 hours (410 days + 15 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 00
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 00 00 00:03:35.400 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:03:29.200 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 ff 00:03:24.600 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:01:00.000 IDENTIFY DEVICE
    ec 00 00 00 00 00 00 00 00:01:00.000 IDENTIFY DEVICE
    Error 34 occurred at disk power-on lifetime: 9168 hours (382 days + 0 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 00
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 00 00 00:00:21.800 IDENTIFY DEVICE
    00 00 00 00 00 00 00 ff 00:00:21.800 NOP [Abort queued commands]
    00 00 00 00 00 00 00 ff 00:00:00.000 NOP [Abort queued commands]
    Error 33 occurred at disk power-on lifetime: 9165 hours (381 days + 21 hours)
    When the command that caused the error occurred, the device was active or idle.
    After command completion occurred, registers were:
    ER ST SC SN CL CH DH
    84 51 00 00 00 00 a0
    Commands leading to the command that caused the error were:
    CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
    ec 00 00 00 00 00 a0 00 00:18:36.900 IDENTIFY DEVICE
    a1 00 00 00 00 00 a0 00 00:18:36.900 IDENTIFY PACKET DEVICE
    ec 00 00 00 00 00 a0 ff 00:18:36.900 IDENTIFY DEVICE
    ec 00 00 00 00 00 a0 ff 00:18:00.100 IDENTIFY DEVICE
    ec 00 00 00 00 00 a0 ff 00:17:49.100 IDENTIFY DEVICE
    SMART Self-test log structure revision number 1
    Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
    # 1 Extended offline Completed without error 00% 9899 -
    # 2 Extended offline Completed without error 00% 9894 -
    Selective Self-tests/Logging not supported
    They are both SSD's, while the extra drive is a HDD. I don't think I've ever had an issue with the HDD showing up, so maybe this is an SSD-specific problem?

Maybe you are looking for

  • Looking for a good music player app

    Hi. I have a problem. i'm looking for a good music player app for my new iphone (which i will buy my next month) in terms of playing music. after having 3 phones in the last 9 months i'm still unhappy. Had a Samsung Galaxy Ace. sound was above averag

  • Missing System Folder  in Classic

    I really need some help here Purchased an I BOOK G4 notebook .. mostly as a back up for some graphic programs. It is running a clean copy of OS X version 10.4.11 Classic is missing the system folder and as a result i cant seem to install anything???

  • Worse gaming performance than Kubuntu 12.10?

    Title. I'm using KDE 4.10 (installed kdebase package), Pulse, nVidia propietary drivers with VSync disabled, same programs than on Kubuntu, compositing manually suspended, yet performance is worse on TF2 and Serious Sam 3: BFE. FPS is high... enough,

  • Application Module

    What is the use of application module in ADF? Please don't give book definitions. Possible please explain with some example. Thanks.

  • Weblogic9: Location for application library jars

    Hi, The installation of weblogic 9 creates two lib directories: 1. user_projects/domains/base_domain/config/lib 2. user_projects/domains/base_domain/lib Both are for application libraries. What are the differences between the two? Any information wou