Mount: special device /dev/cdroms/cdrom0 does not exist

I am new to Arch--so far I'm very happy with it (past experience is mostly Red Hat, Fedora, and Debian).  I do have a couple of remaining problems, and I'm trying to put my questions in the appropriate forums for each one.
I am having a problem, where I do not have entries in /dev for my dvd/cd combo drive.
/etc/fstab:
/dev/cdroms/cdrom0 /mnt/cd iso9660 ro,user,noauto,unhide 0 0
/dev/cdroms/cdrom0 /mnt/dvd udf ro,user,noauto,unhide 0 0
dmesg:
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE2: IDE controller at PCI slot 0000:00:09.0
NFORCE2: chipset revision 162
NFORCE2: not 100% native mode: will probe irqs later
NFORCE2: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE2: 0000:00:09.0 (rev a2) UDMA133 controller
ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb:DMA
ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd:DMA
hda: LITE-ON COMBO SOHC-5232K, ATAPI CD/DVD-ROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
SiI3112 Serial ATA: IDE controller at PCI slot 0000:01:0b.0
SiI3112 Serial ATA: chipset revision 2
SiI3112 Serial ATA: 100% native mode on irq 201
ide2: MMIO-DMA , BIOS settings: hde:DMA, hdf:DMA
ide3: MMIO-DMA , BIOS settings: hdg:pio, hdh:pio
hde: ST3120026AS, ATA DISK drive
ide2 at 0xf889f080-0xf889f087,0xf889f08a on irq 201
hdg: no response (status = 0xfe)
hdg: no response (status = 0xfe), resetting drive
hdg: no response (status = 0xfe)
Notice I have SATA (the hdg: no response thing takes forever to time out--don't know what it thinks it's finding there, but that isn't my primary problem).  My combo drive is hda, and it worked fine during install.
I've searched a long time in the forums, and could only find one post which seemed similar:
http://bbs.archlinux.org/viewtopic.php? … ght=devfsd
but that is from a long time ago, and I didn't understand what the solution actually was 
If I look at /dev/ide, I don't see anything except for my SATA drive:
|-- hd
| |-- c2b0t0u0 -> ../host2/bus0/target0/lun0/disc
| |-- c2b0t0u0p1 -> ../host2/bus0/target0/lun0/part1
| |-- c2b0t0u0p10 -> ../host2/bus0/target0/lun0/part10
| |-- c2b0t0u0p2 -> ../host2/bus0/target0/lun0/part2
| |-- c2b0t0u0p5 -> ../host2/bus0/target0/lun0/part5
| |-- c2b0t0u0p6 -> ../host2/bus0/target0/lun0/part6
| |-- c2b0t0u0p7 -> ../host2/bus0/target0/lun0/part7
| |-- c2b0t0u0p8 -> ../host2/bus0/target0/lun0/part8
| `-- c2b0t0u0p9 -> ../host2/bus0/target0/lun0/part9
`-- host2
`-- bus0
`-- target0
`-- lun0
|-- disc
|-- part1
|-- part10
|-- part2
|-- part5
|-- part6
|-- part7
|-- part8
`-- part9
At this point I'm not sure what to try.  There is no /dev/cdroms directory at all.
I do have:
[root@strongbad dev]# ls -l cdrom
lr-xr-xr-x 1 root root 8 Jun 9 23:08 cdrom -> /dev/hda
[root@strongbad dev]# ls -l /dev/hda
ls: /dev/hda: No such file or directory
I did not make any links by hand--I'm devfs ignorant  :oops:
Can anyone help me out?

I do have:
Code:
[root@strongbad dev]# ls -l cdrom
lr-xr-xr-x  1 root root 8 Jun  9 23:08 cdrom -> /dev/hda
[root@strongbad dev]# ls -l /dev/hda
ls: /dev/hda: No such file or directory
Hmmm..this is bizzare, where'd the symlink come from if it points to a nonexistent file?
Also, have you tried just mounting /dev/cdrom (probably wont work..but hey). Let's see, what else, /dev/cdrom points to /dev/hda, but 2.6 kernels dont really use that anymore, instead they use /dev/discs/discX/partY . So maybe even try mounting /dev/discs/disc0/part1 (or something along those lines) . Play around with that and see what happens...make sure you're trying it with a disc in the drive (i've done sillier things and wondered for days about it).

Similar Messages

  • SOLVED: Mounting IDE ZIP Drives, "Special Device hdb4 Does Not Exist"

    I thought I would post a follow-up, since I have finally resolved this long standing issue, which has plagued me since my first days with Linux many years ago.
    As outlined in my original post below, every time I would attempt to access a Zip disk for the first time since boot, Linux (pretty much all distros I have ever tried, with the exception of SuSE 9.3) would fail to mount the disk and report back that "Special device hdb4 does not exist". Of course the "hdb4" part varies from distro to distro and machine to machine, depending on how your Zip disk is connected and how the distro names its disks, but the basic error has been constant. I have always worked around it by redoing the mount command specifying just the device, not the partition, and while that would always fail, it would force the creation of the device /dev/hdb4, and I could carry on. Annoying but effective.
    FINALLY, a long term answer. I got my inspiration from a really snarky post I read in another online forum where someone had posted this very same question (this is a very common problem with no common answer it seems!). The respondant, who completely failed to provide a helpful answer, basically said "listen, the OS is telling you what is wrong - the device hdb4 doesn't exist - so fix it, and all will be just fine". Of course, the respondant didn't even bother to offer a suggestion about HOW to fix it.
    However, therein lies the inspiration for the solution. Indeed they are right, /dev/hdb4 *doesn't* exist, so how to fix that? They had a point. I started researching the mysteries of mknod, a program that can create /dev files, and the even deeper mysteries of Linux device numbers, both major and minor.
    In the end, I found a wonderfully informative document that described the current standard for the device numbering scheme used by mknod, and Linux in general. The key things of interest are this:
    1/ The major number for IDE based drives is 3.
    2/ IDE allows for 64 partitions per device, so the minor numbers are 0-63 for device "a", 64-127 for device "b" and so on. You derive the minor number of interest for your particular device by taking the starting value of the minor number range of interest for your device and adding the partition number to it. So, for example, hdb4 would have a minor number of 64 (the start of the minor number range for device "b") plus 4 (the partition number in "hdb4"), yielding a result of 68.
    3/ The major number for SCSI based drives, or those that your OS treats as SCSI, is 8.
    4/ SCSI allows for 16 partitions per device, so the minor numbers are 0-15 for device "a", 16-31 for device "b" and so on. You derive the minor number of interest for your particular device by taking the starting value of the minor number range of interest for your device and adding the partition number to it. So, for example, sdb4 would have a minor number of 16 (the start of the minor number range for device "b") plus 4 (the partition number in "hdb4"), yielding a result of 20.
    In my case, Arch seems to be treating all of my disk based devices as SCSI, perhaps because I do have a real SCSI interfaced Jaz drive in my machine. So, the Zip disk of interest in my machine is sdc4 (my real SCSI jaz is sda, my Arch root is sdb, and the IDE Zip is sdc). Applying the above, for /dev/sdc4:
    - The major number is 8.
    - The minor number is 32 (start of range for device "c") plus 4 (the partition number) = 36.
    Armed with this knowledge, I su'd to root and entered:
    # mknod /dev/sdc4 b 8 36
    and like magic, there is was, /dev/sdc4. I popped a disk into the drive and my first attempt to access it was greeted with success, not the usual "device does not exist" error! By the way, the "b" in the above command is just part of the mknod syntax, and indicates that I am creating a block device (vs. a character device, or some other type of device - disk drives all seem to be "block" devices for apparent reasons).
    SO, determine your major number by device type (it will usually be 3 or 8), compute your minor number by device letter and partition number, and add a mknod command to your system startup (so you don't have to do it manually every time) and you are done! No more annoying "device does not exist" errors.
    Now for the kicker. It turns out that this information has been available under my nose all along. I just didn't recognize the code. If you do the following:
    # ls -ald /dev/sd*
    Linux obligingly provides you with the major number and the start of the minor number range for your device. Since Linux has always detected the Zip *device* (just not the partition) this is really all you need to know. When I issue the above command, I get an output like:
    brw-rw----  1  root  disk  8,   32   date   time   /dev/sdc
    Guess what, there they are! "8" is the major number of interest, "32" is the start of the minor number range of interest. If I had just recognized that, and known that all I had to do was add the partition number to the minor number to get the magic number to feed into mknod, things would have been easier.
    Sorry for the long post, but like so many things in Linux, the OS doesn't make this easy on the uninitiated. I sincerely hope that this post may help lots of other people to resolve this vexing and longstanding problem.

    Solved!
    See the lengthy response in this post:
    http://bbs.archlinux.org/viewtopic.php?id=36468
    I posted the solution separately, with the most informative title I could come up with, so that others Googling this topic on the web may hopefully easily find it.

  • Special device does not exist, FSTAB Issue

    I set up this arch64 install last night, and till now I've managed all right except for one niggling issue.  For some odd reason, when I installed everything I forgot to add my "sandbox" partition in Fstab.  I thought I could just generate a UUID then add a line to Fstab later, and I did just that.  However, as its not part of my LVM, I'm wondering if thats why I cannot mount my sandbox partition from Fstab.  Ideas appreciated. 
    My fdisk -l output:
    [root@acer ~]# fdisk -l
    Disk /dev/sda: 120.0 GB, 120034123776 bytes
    255 heads, 63 sectors/track, 14593 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x379c7acb
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 13 104391 83 Linux
    /dev/sda2 14 6428 51528487+ 5 Extended
    /dev/sda3 6429 14593 65585362+ 8e Linux LVM
    /dev/sda5 14 6428 51528456 83 Linux
    Disk /dev/mmcblk0: 7969 MB, 7969177600 bytes
    221 heads, 20 sectors/track, 3521 cylinders
    Units = cylinders of 4420 * 512 = 2263040 bytes
    Disk identifier: 0x00000000
    Device Boot Start End Blocks Id System
    /dev/mmcblk0p1 2 3522 7778304 b W95 FAT32
    Fstab as it stands now -
    /etc/fstab: static file system information
    (cut out irrelevant lines about tmpfs & commented out optical devices)
    /dev/mapper/vg0-lv_home /home ext3 defaults,noatime 0 1
    /dev/mapper/vg0-lv_root / ext3 defaults,noatime 0 1
    /dev/mapper/vg0-lv_swap swap swap defaults,noatime 0 0
    /dev/mapper/vg0-lv_var /var ext3 defaults,noatime 0 1
    UUID=a7d625c6-0fb9-41f5-bdba-6d306c90739a /boot ext2 defaults 0 1
    UUID=a802d8f4-f70e-4ed5-ab72-65bb0ebdca9b /media/sandbox ext3 defaults,users,noatime 1 2
    ## Memory card at /dev/mmcblk0p1 /media/memorycard
    UUID=238db34b-8bf3-4510-b8ee-1aa46e04f17d /media/memorycard vfat defaults,users,noauto,noatime 0 0
    The error I get when I issue a "mount -a" as root or just let the computer boot up with the "sandbox" in fstab -
    mount: special device UUID=a802d8f4-f70e-4ed5-ab72-65bb0ebdca9b does not exist

    Having the same problem with flash memory set as /dev/sdb1. It refuses to mount claiming the device doesn't exist.
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    /dev/sda2 / reiserfs defaults,noatime 0 1
    /dev/sda1 /boot ext2 defaults,noatime 0 1
    /dev/sda3 swap swap defaults 0 0
    /dev/sdb1 /media/flash auto ro,user,noauto,unhide 0 0
    /dev/cdrom /media/cdrom auto ro,user,noauto,unhide 0 0
    /dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
    P.S.
    Yuuhuuuuu post #600

  • Root device mounted successfully, but /sbin/init does not exist ???

    I'm having the issue where when I boot after doing a fresh install, it gives me:
    ERROR: Root device mounted successfully, but /sbin/init does not exist
    Bailing out, you are on your own. Good luck
    sh: can't access tty; job control turned off
    [rootfs /]#
    My fstab:
    # /etc/fstab
    # <file system> <dir> <type> <options> <dump> <pass>
    # /dev/sda1 LABEL=homerroot
    UUID=877deab9-624d-4e1d-90a1-ccc1d6ebc0c6 / ext4 rw,relatime,data=ordered 0 1
    # /dev/sda2 LABEL=homerboot
    UUID=77835da5-8a38-44c1-bf27-bb657df4484b /boot ext4 rw,relatime,data=ordered 0 2
    # /dev/sda3 LABEL=homeretc
    UUID=8a1b5bd8-b147-41e0-87df-70a4a9e12df2 /etc ext4 rw,relatime,data=ordered 0 2
    # /dev/sda4 LABEL=homervar
    UUID=8eb2e7b1-cdf1-46ce-9dc1-439d002bfae4 /var ext4 rw,relatime,data=ordered 0 2
    # /dev/sda5 LABEL=homerusr
    UUID=bce162b4-d27f-450c-a0e6-4d3ebc6242dc /usr ext4 rw,relatime,data=ordered 0 2
    # /dev/sda6 LABEL=home
    UUID=62de76ab-b6d4-4e3d-a423-c287b81813a9 /home ext4 rw,relatime,data=ordered 0 2
    # /dev/sda7 LABEL=public
    UUID=d98a9c8e-2301-4e66-8c7f-26167633a4b0 /public ext4 rw,relatime,data=ordered 0 2
    This looks fine to me, but when /dev/sda1 is mounted at /new_root, none of the other devices are mounted....
    I don't know if this is what's causing the problem since /etc, and /usr are on separate partitions from root, but
    this would be the first time I get a problem dividing things this way (on ubuntu, mint, fedora, et cetera).
    So I tried:
    https://bbs.archlinux.org/viewtopic.php … 3#p1283343
    I get "* is owned by filesystem 2013.05-2" for all three dirs from step three.
    None of the other steps have any effect....
    I also tried:
    https://bbs.archlinux.org/viewtopic.php?id=172943
    My /dev/sda1 mounts to new_root, so I don't think I'm having his problem.
    And:
    https://bbs.archlinux.org/viewtopic.php?id=166423
    I reinstalled systemd-sysvcompat, and I'm sure that's not my problem.
    Interestingly enough, /usr/lib/systemd/systemd is an elf file on my target hard disk.
    Is this an outdated issue or something? Or should /usr/lib/systemd/systemd be a text file?
    Thanks in advance for your help guys!

    WorMzy wrote:Oh, and /usr/lib/systemd/systemd is supposed to be an ELF binary. Not sure why you think it should be a text file.
    I saw another thread saying that adding an entry there would help. I think it was "init=<something>".
    WonderWoofy wrote:A separate /etc is not supported whatsoever.  There needs to be initial access to a few things there.  I'm sure it could be made to work with some initramfs hackery.  But it is neither supported or wise to do so IMO.
    I'll not do the separate partitions then. Thanks. I'll check back if it works/doesn't-works.

  • ORA-15001: diskgroup "FRA" does not exist or is not mounted

    Dear Experts,
    We noticed the error "ORA-15001: diskgroup "FRA" does not exist or is not mounted" on the 2nd node of our 4 nodes RAC database system.
    During this weekend, we moved our system to a new data center. After the move was done, we were able to bring up the 4 instances around 3:00 AM. However, 4 hours later (7:00 AM), OEM Grid control alerted us with "archival error" on the 2nd instance. From our investigating, we saw the FRA was dismounted. Below is the oracle alert log file (For secuirty reson, the SID is modified):
    Sat Feb  7 03:46:03 2009
    Completed: ALTER DATABASE OPEN
    Sat Feb  7 03:50:18 2009
    Sat Feb  7 07:01:36 2009
    Thread 2 advanced to log sequence 8534
      Current log# 3 seq# 8534 mem# 0: +REDOGRPA/xyz/onlinelog/redo_03.log
      Current log# 3 seq# 8534 mem# 1: +REDOGRPB/xyz/onlinelog/redo_03b.log
    Sat Feb  7 07:01:39 2009
    ARCH: Archival stopped, error occurred. Will continue retrying
    Sat Feb  7 07:01:39 2009
    ORACLE Instance XYZ2 - Archival Error
    Sat Feb  7 07:01:39 2009
    ORA-16038: log 11 sequence# 8533 cannot be archived
    ORA-00254: error in archive control string ''
    ORA-00312: online log 11 thread 2: '+REDOGRPA/xyz/onlinelog/redo_11.log'
    ORA-00312: online log 11 thread 2: '+REDOGRPB/xyz/onlinelog/redo_11b.log'
    ORA-15001: diskgroup "FRA" does not exist or is not mounted
    ORA-15001: diskgroup "FRA" does not exist or is not mounted It is my understanding, that Oracle will automatically mount the diskgroups on the ASM when the instances are started. In our case, all other diskgroups are started OK but not the FRA diskgroup. Is this a bug with FRA where FRA can not be automatically started up after recycling the instance? Did anyone experience the same situation? Can someone advice?
    Thanks!

    Hello,
    We are running oracle 10.2.0.2.
    Which section of the alert log file for +ASM2 we need here? I will paste it here the ones when "alter diskgroup all mounted" started at 3:00 AM all the way upto 4:00 AM on Saturday, Feb 7:
    SQL> ALTER DISKGROUP ALL MOUNT
    Sat Feb  7 03:44:15 2009
    NOTE: cache registered group FRA' number=1 incarn=0x1e5bf0d2
    NOTE: cache registered group DATAX number=2 incarn=0xbcabf0d1
    NOTE: cache registered group REDO2 number=4 incarn=0x1e5bf0d3
    NOTE: cache registered group REDOGRPA number=5 incarn=0xbcbbf0d4
    NOTE: cache registered group REDOGRPB number=6 incarn=0xbcbbf0d5
    NOTE: cache registered group TEMPX number=7 incarn=0xbcbbf0d6
    NOTE: cache registered group TEMP number=8 incarn=0x1e6bf0d7
    NOTE: cache registered group TIBDATA number=9 incarn=0xbcbbf0d8
    NOTE: cache registered group TIBREDO number=10 incarn=0xbcbbf0d9
    NOTE: cache registered group TIBTEMP number=11 incarn=0x1ebbf0da
    Sat Feb  7 03:44:15 2009
    ERROR: no PST quorum in group 1: required 2, found 0
    Sat Feb  7 03:44:15 2009
    NOTE: cache dismounting group 1/0x1E5BF0D2 (FRA')
    NOTE: dbwr not being msg'd to dismount
    ERROR: diskgroup FRA' was not mounted
    Sat Feb  7 03:44:15 2009
    NOTE: Hbeat: instance not first (grp 2)
    ERROR: no PST quorum in group 4: required 2, found 0
    Sat Feb  7 03:44:15 2009
    NOTE: cache dismounting group 4/0x1E5BF0D3 (REDO2)
    NOTE: dbwr not being msg'd to dismount
    ERROR: diskgroup REDO2 was not mounted
    Sat Feb  7 03:44:15 2009
    NOTE: Hbeat: instance not first (grp 5)
    Sat Feb  7 03:44:15 2009
    NOTE: Hbeat: instance not first (grp 6)
    Sat Feb  7 03:44:15 2009
    NOTE: Hbeat: instance not first (grp 7)
    ERROR: no PST quorum in group 8: required 2, found 0
    Sat Feb  7 03:44:15 2009
    NOTE: cache dismounting group 8/0x1E6BF0D7 (TEMP)
    NOTE: dbwr not being msg'd to dismount
    ERROR: diskgroup TEMP was not mounted
    Sat Feb  7 03:44:15 2009
    NOTE: Hbeat: instance not first (grp 9)
    Sat Feb  7 03:44:15 2009
    NOTE: Hbeat: instance not first (grp 10)
    ERROR: no PST quorum in group 11: required 2, found 0
    Sat Feb  7 03:44:15 2009
    NOTE: cache dismounting group 11/0x1EBBF0DA (TIBTEMP)
    NOTE: dbwr not being msg'd to dismount
    ERROR: diskgroup TIBTEMP was not mounted
    NOTE: cache opening disk 0 of grp 2: DATAX_0000 path:/dev/raw/raw61
    NOTE: F1X0 found on disk 0 fcn 0.0
    NOTE: cache mounting (not first) group 2/0xBCABF0D1 (DATAX)
    Sat Feb  7 03:44:16 2009
    kjbdomatt send to node 0
    kjbdomatt send to node 2
    kjbdomatt send to node 3
    Sat Feb  7 03:44:16 2009
    NOTE: attached to recovery domain 2
    Sat Feb  7 03:44:16 2009
    NOTE: opening chunk 4 at fcn 0.1158090 ABA
    NOTE: seq=54 blk=4821
    Sat Feb  7 03:44:16 2009
    NOTE: cache mounting group 2/0xBCABF0D1 (DATAX) succeeded
    SUCCESS: diskgroup DATAX was mounted
    NOTE: cache opening disk 0 of grp 5: REDOGRPA_0000 path:/dev/raw/raw20
    NOTE: F1X0 found on disk 0 fcn 0.0
    NOTE: cache mounting (not first) group 5/0xBCBBF0D4 (REDOGRPA)
    Sat Feb  7 03:44:16 2009
    kjbdomatt send to node 0
    kjbdomatt send to node 2
    kjbdomatt send to node 3
    Sat Feb  7 03:44:16 2009
    NOTE: recovering COD for group 2/0xbcabf0d1 (DATAX)
    SUCCESS: completed COD recovery for group 2/0xbcabf0d1 (DATAX)
    Sat Feb  7 03:44:16 2009
    NOTE: attached to recovery domain 5
    Sat Feb  7 03:44:16 2009
    NOTE: opening chunk 4 at fcn 0.103802 ABA
    NOTE: seq=43 blk=2123
    Sat Feb  7 03:44:16 2009
    NOTE: cache mounting group 5/0xBCBBF0D4 (REDOGRPA) succeeded
    SUCCESS: diskgroup REDOGRPA was mounted
    NOTE: cache opening disk 0 of grp 6: REDOGRPB_0000 path:/dev/raw/raw12
    NOTE: F1X0 found on disk 0 fcn 0.0
    NOTE: cache mounting (not first) group 6/0xBCBBF0D5 (REDOGRPB)
    Sat Feb  7 03:44:16 2009
    kjbdomatt send to node 0
    kjbdomatt send to node 2
    kjbdomatt send to node 3
    Sat Feb  7 03:44:17 2009
    NOTE: attached to recovery domain 6
    Sat Feb  7 03:44:17 2009
    NOTE: opening chunk 4 at fcn 0.75866 ABA
    NOTE: seq=20 blk=1704
    Sat Feb  7 03:44:17 2009
    NOTE: cache mounting group 6/0xBCBBF0D5 (REDOGRPB) succeeded
    SUCCESS: diskgroup REDOGRPB was mounted
    NOTE: cache opening disk 0 of grp 7: TEMPX_0000 path:/dev/raw/raw71
    NOTE: F1X0 found on disk 0 fcn 0.25328
    NOTE: cache opening disk 1 of grp 7: TEMPX_0001 path:/dev/raw/raw7
    NOTE: cache mounting (not first) group 7/0xBCBBF0D6 (TEMPX)
    Sat Feb  7 03:44:17 2009
    kjbdomatt send to node 0
    kjbdomatt send to node 2
    kjbdomatt send to node 3
    Sat Feb  7 03:44:17 2009
    NOTE: attached to recovery domain 7
    Sat Feb  7 03:44:17 2009
    NOTE: opening chunk 4 at fcn 0.69473 ABA
    NOTE: seq=42 blk=432
    Sat Feb  7 03:44:17 2009
    NOTE: cache mounting group 7/0xBCBBF0D6 (TEMPX) succeeded
    SUCCESS: diskgroup TEMPX was mounted
    NOTE: cache opening disk 0 of grp 9: TIBDATA path:/dev/raw/raw86
    NOTE: F1X0 found on disk 0 fcn 0.0
    NOTE: cache mounting (not first) group 9/0xBCBBF0D8 (TIBDATA)
    Sat Feb  7 03:44:17 2009
    kjbdomatt send to node 0
    kjbdomatt send to node 2
    kjbdomatt send to node 3
    Sat Feb  7 03:44:17 2009
    NOTE: attached to recovery domain 9
    Sat Feb  7 03:44:17 2009
    NOTE: opening chunk 4 at fcn 0.102912 ABA
    NOTE: seq=12 blk=2050
    Sat Feb  7 03:44:17 2009
    NOTE: cache mounting group 9/0xBCBBF0D8 (TIBDATA) succeeded
    SUCCESS: diskgroup TIBDATA was mounted
    NOTE: cache opening disk 0 of grp 10: TIBREDO path:/dev/raw/raw87
    NOTE: F1X0 found on disk 0 fcn 0.0
    NOTE: cache mounting (not first) group 10/0xBCBBF0D9 (TIBREDO)
    Sat Feb  7 03:44:18 2009
    kjbdomatt send to node 0
    kjbdomatt send to node 2
    kjbdomatt send to node 3
    Sat Feb  7 03:44:18 2009
    NOTE: attached to recovery domain 10
    Sat Feb  7 03:44:18 2009
    NOTE: opening chunk 4 at fcn 0.18970 ABA
    NOTE: seq=12 blk=6577
    Sat Feb  7 03:44:18 2009
    NOTE: cache mounting group 10/0xBCBBF0D9 (TIBREDO) succeeded
    SUCCESS: diskgroup TIBREDO was mounted
    Sat Feb  7 03:44:19 2009
    NOTE: recovering COD for group 5/0xbcbbf0d4 (REDOGRPA)
    SUCCESS: completed COD recovery for group 5/0xbcbbf0d4 (REDOGRPA)
    NOTE: recovering COD for group 6/0xbcbbf0d5 (REDOGRPB)
    SUCCESS: completed COD recovery for group 6/0xbcbbf0d5 (REDOGRPB)
    NOTE: recovering COD for group 7/0xbcbbf0d6 (TEMPX)
    SUCCESS: completed COD recovery for group 7/0xbcbbf0d6 (TEMPX)
    NOTE: recovering COD for group 9/0xbcbbf0d8 (TIBDATA)
    SUCCESS: completed COD recovery for group 9/0xbcbbf0d8 (TIBDATA)
    NOTE: recovering COD for group 10/0xbcbbf0d9 (TIBREDO)
    SUCCESS: completed COD recovery for group 10/0xbcbbf0d9 (TIBREDO)
    Sat Feb  7 03:45:18 2009
    Starting background process ASMB
    ASMB started with pid=17, OS id=16122
    Sat Feb  7 03:49:35 2009
    NOTE: ASMB process exiting due to lack of ASM file activity
    Starting background process ASMB
    ASMB started with pid=18, OS id=25963
    Sat Feb  7 03:54:34 2009
    NOTE: ASMB process exiting due to lack of ASM file activity
    Sat Feb  7 03:54:50 2009
    Starting background process ASMB
    ASMB started with pid=18, OS id=913
    Sat Feb  7 03:57:55 2009
    NOTE: ASMB process exiting due to lack of ASM file activity
    Sat Feb  7 04:07:26 2009
    Starting background process ASMB
    ASMB started with pid=21, OS id=23012
    Sat Feb  7 04:13:59 2009
    NOTE: ASMB process exiting due to lack of ASM file activity
    Starting background process ASMB
    ASMB started with pid=22, OS id=31320
    Sat Feb  7 04:36:43 2009
    NOTE: ASMB process exiting due to lack of ASM file activity

  • TS4062 I can't sync music on my computer to my ipod touch; the ipod shows up under Devices in itunes but does not show buttons (Summary etc.) when I click on it. Suggestions?

    I can't sync music already on my computer to my ipod touch; the ipod shows up under Devices in itunes but does not show buttons (Summary etc.) when I click on it. I've read through all the Help tutorials but none of them say what to do if the sync options don't pop up when you highlight the device.  I've already spent way too much time trying to figure this out and it's driving me crazy!  Thanks for any help you can offer.

    This is correct.  It will not show in finder.  It is not an external storage device.
    The music sync is one way - computer to ipod.  The only exception is itunes purchases.  Open itunes connect ipod, do not sync, click File>Transfer Purchases

  • While creating SAP ISU Device category i got one error message like The material 5 does not exist or is not activated Message no. M3305

    while creating SAP ISU Device category EG01 .i got one error message like The material 5 does not exist or is not activated Message no. M3305

    I don't know EG01 transaction, but if SAP says "material 5 does not exist " then SAP is usually right.
    Can you give an evidence that material 5 exists? e.g. screenshot from  SE16 at table MARA, MARC and MAST

  • I have a device that shows up in my airplay device list on my iMac, and my phone.  This device does not exist.  How do I get it out of the list? I would like to drop it before I add new airplay devices to my network.

    I have a device that shows up in my airplay device list in iTunes, and on my iPhone that does not exist.  How do I delete it? I have OS X 10.10.1 on my iMac, and iOS 8.1.2 on my iPhone 5.  I would like to get it out before I add new airplay devices to my network.

    I called Apple tech support.  The device turns out to be a WiFi extender.  I never would have guessed that the extender would show up on the list since I wouldn't think of it as an airplay device, and in the list, it shows a little speaker icon.  In the process of talking with Apple, I gained a greater understanding of how airplay works. 
    It turns out that there is no stored list of devices in a file on the mac, or anywhere else.  I have seen a lot of traffic on the web from people trying to modify this list, but there isn't one.  iTunes, and other devices simply poll the network for airplay devices from time to time.
    Have a very happy holiday!
    I would like to get rid of "just give me the aster, and stop wasting my time", and replace it with my name.  The Apple tech support guy never saw that before.  Just my luck.

  • I put ios7.1 to my ipad it was working not it is asking for activite for developer and allready registered to my developer for devices but now it does not actived

    I put ios7.1 to my ipad it was working not it is asking for activite for developer and allready registered to my developer for devices but now it does not actived

    If you are an authorized member of Apple's developer program, you have forums and resources through which you can address issues with seed versions of Apple's software. Posting here or in any public forum is a violation of your NDA with Apple. The developer forums can be found here:
    https://developer.apple.com/devforums/
    If you are not an authorized developer, then you have an illegal copy of the software.
    Either way, we cannot help you with questions about unreleased Apple software in these forums.
    Regards.

  • Asm diskgroup does not exist or not mounted

    Hi,
    iam have configured a 2 node cluster and now when i rebooted and again started my rac database so all the applications are offline so i stop them with crs_stop and then restarted but my databases asm and instance service is not up so in that case i tried to connect to database or to instance but i was not able to so then i thought of connecting to asm instance and then the status is as follows
    SQL> select name ,state ,mount_status from v$asm_disk ;
    NAME STATE MOUNT_S
    NORMAL CLOSED
    NORMAL CLOSED
    FG_0000 NORMAL CACHED
    SQL> alter database open ;
    alter database open
    ERROR at line 1:
    ORA-15000: command disallowed by current instance type
    SQL> alter diskgroup all mount ;
    alter diskgroup all mount
    ERROR at line 1:
    ORA-15032: not all alterations performed
    ORA-15130: diskgroup "DG1" is being dismounted
    ORA-15066: offlining disk "DG1_0001" may result in a data loss
    SQL>
    SQL>
    so in that cse the contents are as follows
    on Jul 11 21:58:46 2011
    Dirty detach reconfiguration started (old inc 2, new inc 2)
    List of nodes:
    0 1
    Global Resource Directory partially frozen for dirty detach
    * dirty detach - domain 1 invalid = TRUE
    0 GCS resources traversed, 0 cancelled
    Dirty Detach Reconfiguration complete
    Mon Jul 11 21:58:46 2011
    freeing rdom 1
    Mon Jul 11 21:58:47 2011
    WARNING: dirty detached from domain 1
    Mon Jul 11 21:58:47 2011
    ERROR: diskgroup DG1 was not mounted
    Mon Jul 11 21:58:47 2011
    WARNING: PST-initiated MANDATORY DISMOUNT of group DG1 not performed - group not mounted
    Mon Jul 11 21:58:47 2011
    Errors in file /u01/app/oracle/admin/+ASM/bdump/+asm1_b000_18030.trc:
    ORA-15001: diskgroup "DG1" does not exist or is not mounted
    ORA-15001: diskgroup "DG1" does not exist or is not mounted
    so iam not able to figure out please help me in solving this
    Thanks in Advance
    Regards
    Kavita

    Hi,
    Sir i wait for many times but the major issue is iam facing that all aplications when i start my machine are offline or unknown........ then when i exec crsctl stop crs and crsctl start crs i wait a lot and then i exec crrs_stat t that time all applications are either unknown or offline............ then i stop forcily all applications which are unknown finally bring all to offline status and then restart but in this case i exec srvctl start nodeapps - n rac1 and nrac2 these things work but tried with database or service or instnace that ownt work it give me the following error
    and then i sart instance or database through sqlplus and if i do any transcations then i get the follwoing error .........
    PRKP-1001 : Error starting instance devdb1 on node rac1
    CRS-0215: Could not start resource 'ora.devdb.devdb1.inst'
    and now if iam trying to start my asm instance iam have already posted through what iam getting and this i have tried for 2 diffemt 2 node cluster but facing the same issue
    2011-07-12 22:02:02.500: [  CRSRES][3772144560]0startRunnable: setting CLI values
    2011-07-12 22:02:03.235: [  CRSRES][3772144560]0Attempting to start `ora.prod1.LISTENER_PROD1.lsnr` on member `prod1`
    2011-07-12 22:02:06.197: [  CRSRES][3772144560]0Start of `ora.prod1.LISTENER_PROD1.lsnr` on member `prod1` succeeded.
    Sir this from
    (0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:46:09.669 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x8350880) proc(0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:47:03.826 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x8352a08) proc(0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:47:04.385 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x835bf18) proc(0x835ed88) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:47:17.938 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x835bf18) proc(0x8364680) pid() proto(10:2:1:1)
    [    CSSD]2011-07-12 22:48:27.641 [91069360] >TRACE: clssgmClientConnectMsg: Connect from con(0x8350880) proc(0x8364680) pid() proto(10:2:1:1)
    Thanks in Advance
    Regards
    Kavita

  • ORA-15001: diskgroup "DATA" does not exist or is not mounted in 11gR2

    Dear all,
    the system is HP-UX 11.31
    the new RAC infrastructure is 11gR2 11.2.0.2 (2nodes using ASM)
    i am restoring the 10G 10.2.0.4 database to this infrastructure
    copy binary files over to new oracle home,
    relink all binaries with option rac_off
    --startup nomount
    --restore controlfile
    --mount database
    --catalog the restore files
    then run restore
    run {
    restore database ;
    recover database;
    i always get this error, i did not see this error in 11gR1( restore few times to 11gR1)
    verified the diskgroup DATA and i was mounted
    ORA-19504: failed to create file "+DATA/OCP/data1.dbf"
    ORA-17502: ksfdcre:3 Failed to create file +DATA/OCP/data1.dbf
    ORA-15001: diskgroup "DATA" does not exist or is not mounted
    ORA-15077: could not locate ASM instance serving a required diskgroup
    ORA-29701: unable to connect to Cluster Manager
    Please give me an advice.
    Thanks,

    found this note in Metalink and it had solved my issue.
    Unable To Create 10.1 or 10.2 or 11.1(< 11gR2) ASM RAC Databases (ORA-29702) Using Brand New 11gR2 Grid Infrastructure Installation . [ID 946332.1]

  • Update was terminated - Class PO - Number 366 - Device ARCH does not exist

    Dear Gurus,
    We are using Automatic PO generation through ME59, we also applied one SAP note to pick the custom document type through ME59 (normally the system pick NB as standard document)
    In  MN05 - if i set as default output type 1 - print ( then the document is generating with the correct document with correct number range)
    But if i set in MN05 - default output as 2 - fax ( then i am getting this Update was terminated - Class PO - Number 366 - Device ARCH does not exist).
    Please advice
    Regards
    RS

    Dear Friend,
    Output determination for fax is not done properly. check the device connnectivity.
    SPRo>>Maintain Message type of PO
    For the particular document type - i have removed the default PO Print out settings - now its working fine. Is this the right way?
    Please advice
    RS

  • How do I (re)add a device? New iTunes does not see an iPad or IiPhone.

    How do I (re)add a device? New iTunes does not see an iPad or IiPhone.

    Go here and download and install iTunes on your PC
    http://www.apple.com/uk/itunes/download/

  • Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Welcome to the Apple community.
    A number of people have reported similar issues recently, many appear to have found a discrepancy of some kind in their account settings and making changes to these settings or simply resetting them has resolved the matter.
    Check your account details are correct, check that you are using the correct details for Location, Region and Time Zone. You may want to change these settings and then change them back to see if that helps.
    You might also try logging out of and then back into your iTunes account (Settings > iTunes Store > Apple ID’s > Sign Out) and restarting your router. (Some have reported that after doing this, they need to check for rentals even though it may report that there aren’t any, after which rentals once again appear in the ‘movies’ feature)
    Rentals should appear under their own heading in the ‘Movies’ feature, you might also check at Settings > iTunes Store > Check For Rentals.

  • ORA-15001: diskgroup "DG_NSOQACC" does not exist or is not mounted

    Hi experts,
    I need your help for this error, i'm newbie on this forum.
    I trying to start a database, but i can't.
    How do i solve this problem?
    [oracle@ilmatar root]$ sqlplus "/as sysdba"
    SQL*Plus: Release 11.2.0.3.0 Production on Tue Nov 13 16:06:32 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup;
    ORA-01078: failure in processing system parameters
    ORA-01565: error in identifying file '+DG_NSOQACC/NFOQACC/spfileNFOQACC.ora'
    ORA-17503: ksfdopn:2 Failed to open file +DG_NSOQACC/NFOQACC/spfileNFOQACC.ora
    ORA-15056: additional error message
    ORA-17503: ksfdopn:2 Failed to open file +DG_NSOQACC/nfoqacc/spfilenfoqacc.ora
    ORA-15001: diskgroup "DG_NSOQACC" does not exist or is not mounted
    ORA-06512: at line 4
    SQL>
    This problem happened when an user change the charset on this machine from en_US.UTF8 to en_US.ISO-8859-1, when the database was online.
    Then this machine was rebooted.
    Can someone help me with this issue?
    Regards.
    Marco

    Hi rcc50886,
    I did the commands you sent to me and do not show anything:
    [oracle@ilmatar root]$ . oraenv
    ORACLE_SID = [+ASM] ? +ASM
    The Oracle base remains unchanged with value /opt/oracle
    [oracle@ilmatar root]$ sqlplus "/as sysasm"
    SQL*Plus: Release 11.2.0.3.0 Production on Wed Nov 14 14:06:22 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Automatic Storage Management option
    SQL> select disk_number, mount_status, header_status, mode_status, state, name, label, path from v$asm_disk where group_number=1 order by disk_number;
    no rows selected
    Regards,
    Marco

Maybe you are looking for

  • Migration of PO with "free item" indicator not working (BAPI_PO_CREATE1)

    Hi experts, we are using the BAPI_PO_CREATE1 to migrate POs. However, when we try to create a line item with a price of 0.0  and a "free item" indicator, the PO is created with a price and without the "free item" indicator (price seems to be coming f

  • Iphone 4 yellow tinted screen

    i have iphone 4 32gb for like i think 3 months now and yesterday when i compare my phone to my sister iphone 4 16gb i noticed that her iphone is brighter then mine and is whiter. My iphone have like a warm yellow when i compared it and the brightness

  • Year to date variable

    Hello experts, I have installed the variable : Current Year From Start, Range to Current date(Sap Exit) with tech name 0I_IPMD7. How do i know which time infoObject it is applicable to? i want to use this in the year to date sales calculation. But ca

  • GetInputStream problem

    I am new to JAVA and am working on a simple socket connection class to read an HTTP post. But am having a problem with it looping. The while statement doesn't seem to recognize when there is no more input. My understanding is that a null value should

  • Generics bug with multiple interface inheritance?

    Hi, I've noticed what I believe to be a compiler bug (I am getting an error where I believe none should exist). Can someone please comment on the following use-case? interface Interface1<SelfType extends Interface1<SelfType>> interface Interface2 cla