Error failure writing sector 0xf8000 to hd0

On startup of my Samsung 900x laptop (Ubuntu 16.04), I experienced the error failure writing sector (some hex code) to hd0 press any key to continue ... I reached the login screen and was able to type my password, but upon logging in, I lost the keyboard and cursor! Once in a while my keyboard doesn't work on startup, but I've never experienced a `failure writing to sector` error along with it. Furthormore, I've never experienced losing the keyboard *after* login.
  • Home
  • Forum
  • The Ubuntu Forum Community
  • Ubuntu Official Flavours Support
  • General Help
  • «failure writing sector to hd0» and (related?) keyboard errors

  1. «failure writing sector to hd0» and (related?) keyboard errors

    On startup of my Samsung 900x laptop (Ubuntu 16.04), I experienced the error

    Code:

    failure writing sector (some hex code) to hd0
    press any key to continue ...

    I reached the login screen and was able to type my password, but upon logging in, I lost the keyboard and cursor! Once in a while my keyboard doesn’t work on startup, but I’ve never experienced a `failure writing to sector` error along with it. Furthormore, I’ve never experienced losing the keyboard *after* login.

    When I lose keyboard control, my only option to reboot is to force a power down (i.e., press and hold the power button). Could it be possible that when I’m forced to do this, that it causes disk errors?

    `dmesg` seems to indicate many errors:

    Code:

        [    1.949908] ata1.00: exception Emask 0x10 SAct 0x7f8000ff SErr 0x400100 action 0x6 frozen
        [    1.949915] ata1.00: irq_stat 0x08000000, interface fatal error
        [    1.949919] ata1: SError: { UnrecovData Handshk }
        [    1.949924] ata1.00: failed command: WRITE FPDMA QUEUED
        [    1.949940] ata1.00: cmd 61/08:00:08:08:10/00:00:06:00:00/40 tag 0 ncq 4096 out
                                res 40/00:e4:10:28:10/00:00:00:00:00/40 Emask 0x10 (ATA bus error)

    Here is the full `dmesg` print out: http://pastebin.com/raw/tBgBDpvV

    My questions:

    1. Is it possible that «hard shutdown» (i.e., power-button power-down) can cause disk errors?
    2. If yes, how should I proceed in finding and fixing the (seemingly random) loss of keyboard control and the existing disk errors? If no, how should I proceed in fixing the disk errors above?


  2. Re: «failure writing sector to hd0» and (related?) keyboard errors

    The logs report an drive hardware failure, backup your data, hard disk may die soon.

    Check current SMART drive’s health,

    install smartmontools:

    Code:

    sudo apt install smartmontools --no-install-recommends

    generate and post back the report:

    Code:

    sudo smartctl -iHA --log=error /dev/sda


  3. Re: «failure writing sector to hd0» and (related?) keyboard errors

    Here is the result of `smartctl`:

    Code:

    smartctl 6.5 2016-01-24 r4214 [x86_64-linux-4.4.0-59-generic] (local build)
    Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org
    
    
    === START OF INFORMATION SECTION ===
    Device Model:     LITEONIT LMT-256M3M
    Serial Number:    002240129533
    LU WWN Device Id: 5 000000 000000000
    Firmware Version: VZJ4
    User Capacity:    256,060,514,304 bytes [256 GB]
    Sector Size:      512 bytes logical/physical
    Rotation Rate:    Solid State Device
    Device is:        Not in smartctl database [for details use: -P showall]
    ATA Version is:   ATA8-ACS, ATA/ATAPI-7 T13/1532D revision 4a
    SATA Version is:  SATA 3.0, 6.0 Gb/s
    Local Time is:    Wed Jan 18 09:23:26 2017 EST
    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
    
    
    SMART Attributes Data Structure revision number: 1
    Vendor Specific SMART Attributes with Thresholds:
    ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
      1 Raw_Read_Error_Rate     0x0003   100   100   070    Pre-fail  Always       -       0
      5 Reallocated_Sector_Ct   0x0003   100   100   000    Pre-fail  Always       -       0
      9 Power_On_Hours          0x0002   100   100   000    Old_age   Always       -       10090
     12 Power_Cycle_Count       0x0002   100   100   000    Old_age   Always       -       2917
    171 Unknown_Attribute       0x0032   000   000   000    Old_age   Always       -       0
    172 Unknown_Attribute       0x0032   000   000   000    Old_age   Always       -       0
    173 Unknown_Attribute       0x0032   000   000   000    Old_age   Always       -       69
    174 Unknown_Attribute       0x0030   000   000   000    Old_age   Offline      -       80
    178 Used_Rsvd_Blk_Cnt_Chip  0x0003   100   100   000    Pre-fail  Always       -       0
    187 Reported_Uncorrect      0x0002   100   100   000    Old_age   Always       -       0
    192 Power-Off_Retract_Count 0x0003   100   100   000    Pre-fail  Always       -       80
    230 Unknown_SSD_Attribute   0x0032   100   100   000    Old_age   Always       -       142588
    232 Available_Reservd_Space 0x0003   100   100   010    Pre-fail  Always       -       2848
    241 Total_LBAs_Written      0x0003   100   100   000    Pre-fail  Always       -       383014
    242 Total_LBAs_Read         0x0003   100   100   000    Pre-fail  Always       -       227344
    
    
    SMART Error Log Version: 0
    No Errors Logged


  4. Re: «failure writing sector to hd0» and (related?) keyboard errors

    This hard disk is not in smartctl database so some hard disk attributes are unknown. Looking at the logs it seems the system could reset the sata link as no more errors are reported after resetting. So keyboard issue probably not related.


  5. Re: «failure writing sector to hd0» and (related?) keyboard errors

    Quote Originally Posted by laurent85
    View Post

    This hard disk is not in smartctl database so some hard disk attributes are unknown. Looking at the logs it seems the system could reset the sata link as no more errors are reported after resetting. So keyboard issue probably not related.

    Hmm. The following situation repeated about 3 or 4 times before I booted successfully:

    1. I boot up and encounter the `failure writing sector to hd0` message.
    2. I reach the login screen and type my password. Upon logging in, keyboard and mouse do not work.
    3. I force shutdown.

    So clearly the keyboard is related, but maybe only as collateral damage?


  6. Re: «failure writing sector to hd0» and (related?) keyboard errors

    Check booting a usb live session keyboard and mouse are worling properly. If so, installed system is corrupted somehow.


  7. Re: «failure writing sector to hd0» and (related?) keyboard errors

    It looks like I will have to do that. I’ll update this afterwards.


  8. Re: «failure writing sector to hd0» and (related?) keyboard errors

    Update:

    I created a boot disc and found that there were no problems when I booted to that. I did a clean reinstall, and there’s no longer any error messages in the output of `dmesg`, sooo … problem solved?

    Second update:
    It’s been through a few power on/off cycles now, and things still look good:

    Code:

    dmesg | less | grep ata1
    
    [    1.570352] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 29
    [    1.891641] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [    1.891938] ata1.00: ATA-8: LITEONIT LMT-256M3M, VZJ4, max UDMA/133
    [    1.891943] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [    1.892304] ata1.00: configured for UDMA/133

    Retrospectively, on the previous install, I ran some random terminal magic that I did not understand in order to get the keyboard backlight working. This could’ve played a part in the keyboard. I do not know why the hard disk became corrupted, and I am still puzzled as to why the two seemed related.

    Last edited by chestervonwinchester; January 19th, 2017 at 12:52 PM.


Bookmarks

Bookmarks


Posting Permissions

  • Печать

Страницы: [1] 2 3 5  Все   Вниз

Тема: GRUB. Error  (Прочитано 9015 раз)

0 Пользователей и 1 Гость просматривают эту тему.

Оффлайн
mari_ch

Здравствуйте. Мною была установлена система Ubuntu 14.04.3 LTS (Trusty Tahr) 32 bit. Вся установка была завершена успешно и без единой ошибки, но вот но..:

Error: file ‘/boot/grub/i386-pc/normal.mod’ not found.
Entering rescue mode…
grub rescue> _

Что делать для исправления этой ошибки? Была совершена попытка восстановления GRUB через gnome-terminal (запустил систему с диска). В конце gnome-terminal было написано, что Grub был успешно установлен, но после перезагрузки ошибка вылазит вновь. Помогите, что делать? Вся надежда в Linux увядает.
p.s Установка была на внешний хард диск размером 460 гб

« Последнее редактирование: 08 Августа 2015, 17:49:38 от mari_ch »


Оффлайн
skybour


Оффлайн
mari_ch

«После чего нужно проверить, действительно ли на этом разделе есть то, что нам нужно. Даем команду:
ls /boot/grub если в ответ получаем список всех файлов в этой директории, то диск и раздел выбраны правильно. » Нигде из трех разделов в ответ я не получил список файлов.


Оффлайн
skybour

Нигде из трех разделов в ответ я не получил список файлов.

Покажи, что получил.


Оффлайн
mari_ch

короче я написал команду ls, а выдало
(hd0) (hd0,msdos1) (fd0)
Я прописал все как по статье до первого и на ls /boot/grub выдало unknow filesystem,  на втором выдало error: file ‘/boot/grub’ not found, а на третьем error: failure reading sector 0x2 from ‘fd0’
p.s извини за ожидание, картинки кидать нельзя сюда, ссылки блочит.

« Последнее редактирование: 08 Августа 2015, 18:26:32 от mari_ch »


Оффлайн
userok2008

mari_ch,
Загрузчик, при установке куда ставили?Внешний хард, это больше всего не dev/sda(disk 0)а dev/sdb(disk 1)или как он там был виден).Устанавливать надо не на раздел, а на ВЕСЬ диск, кроме «специальных» случаев.

Debian Squeeze 6.10 PPC/i486, Wheezy 7.8 PPC/i686, Jessie 8.2 i686


symon2014

mari_ch, Загрузись с Live и покажи выводы команд —

sudo blkid

cat /etc/fstabнеплохо бы и скрин gparted


Оффлайн
skybour


Оффлайн
userok2008

Debian Squeeze 6.10 PPC/i486, Wheezy 7.8 PPC/i686, Jessie 8.2 i686


Оффлайн
mari_ch


symon2014

userok2008, так подскажи ТС.( поточнее).


Оффлайн
userok2008

mari_ch,
Если это картинка загрузки с внешнего харда, то пишет что файл не обнаружен, где он должен быть)
И ответьте на прежний вопрос пожалста.
Также ждем sudo blkid с заранее подключенным внешним хардом.

« Последнее редактирование: 08 Августа 2015, 18:53:43 от userok2008 »

Debian Squeeze 6.10 PPC/i486, Wheezy 7.8 PPC/i686, Jessie 8.2 i686


Оффлайн
skybour

mari_ch, команды нужно вводить не приблизительно, а так как указано в руководстве.

set prefix=(hd0,1)/boot/grub


Оффлайн
mari_ch

mari_ch, Загрузись с Live и покажи выводы команд —
sudo blkidcat /etc/fstabнеплохо бы и скрин gparted

sudo blkid выдало следующее:
/dev/loop0: TYPE=»squashfs»
/dev/sr0: LABEL=»Ubuntu 14.04.3 LTS i386″ TYPE=»iso9668″
/dev/sda1: UUID=»*куча цифр, устал набирать*» TYPE=»ext4″
/dev/sda5: UUID=»*куча цифр, устал набирать*» TYPE=»swap»


Оффлайн
skybour


  • Печать

Страницы: [1] 2 3 5  Все   Вверх


Lenovo Y700-17ISK Boot Error: Failure writing sector 0x21c8800 to ‘hd0’

Bug #1553687 reported by
aljosa
on 2016-03-06

This bug affects 6 people

Affects Status Importance Assigned to Milestone


grub2 (Ubuntu)

Confirmed

Undecided


Unassigned

Bug Description

Lenovo Y700-17ISK (Intel Core i7-6700HQ/RAM 16GB/SSD 512GB/Nvidia GTX960M 4GB)
Operating system: Ubuntu 16.04 (xenial-desktop-amd64.iso 04-Mar-2016, kernel 4.4.0-10-generic, nvidia 361.28)

Boot Error:
failure writing sector 0x21c8800 to ‘hd0’
press any key to continue…

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-10-generic 4.4.0-10.25
ProcVersionSignature: Ubuntu 4.4.0-10.25-generic 4.4.3
Uname: Linux 4.4.0-10-generic x86_64
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
AudioDevicesInUse:
 USER PID ACCESS COMMAND
 /dev/snd/controlC0: aljosa 1776 F…. pulseaudio
CurrentDesktop: Unity
Date: Sun Mar 6 11:11:22 2016
HibernationDevice: RESUME=UUID=ac022671-63df-40ae-bffe-66fff3b35125
InstallationDate: Installed on 2016-03-05 (0 days ago)
InstallationMedia: Ubuntu 16.04 LTS «Xenial Xerus» — Alpha amd64 (20160304)
MachineType: LENOVO 80Q0
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-10-generic.efi.signed root=UUID=aa4325c4-4b4c-4372-b8ca-a66c3e5b2aa6 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.4.0-10-generic N/A
 linux-backports-modules-4.4.0-10-generic N/A
 linux-firmware 1.156
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/31/2016
dmi.bios.vendor: LENOVO
dmi.bios.version: CDCN30WW
dmi.board.asset.tag: NO Asset Tag
dmi.board.name: Allsparks 7A
dmi.board.vendor: LENOVO
dmi.board.version: NO DPK
dmi.chassis.asset.tag: NO Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo ideapad Y700-17ISK
dmi.modalias: dmi:bvnLENOVO:bvrCDCN30WW:bd01/31/2016:svnLENOVO:pn80Q0:pvrLenovoideapadY700-17ISK:rvnLENOVO:rnAllsparks7A:rvrNODPK:cvnLENOVO:ct10:cvrLenovoideapadY700-17ISK:
dmi.product.name: 80Q0
dmi.product.version: Lenovo ideapad Y700-17ISK
dmi.sys.vendor: LENOVO

EDIT: This issue is resolved. For a complete tutorial on how to install Ubuntu arm64 for raspberry pi 3b, please go here: viewtopic.php?f=56&t=220079

The goal
So I want a 64 bit system due to software being unsupported for 32 bit operating systems (mongodb specifically) for my Raspberry Pi3B V1.2 and I tried a few (opensuse, fedora, debian), but all had some sort of problem that inhibited using them. So I learned about ubuntu 18.04 server edition.
I followed this guide to install it: https://wiki.ubuntu.com/ARM/RaspberryPi … .2FAArch64
This is one part I didn’t quite understand though.

Finally(!), you will have to copy the GPU firmware/bootloader files and U-boot to the system’s fat partition. This will be mounted at /boot/efi if installation has gone correctly.

But it did boot into ubuntu just fine, so I kinda just left it out.

The problem
The parts in red at the bottom are where I deviated from the instructions. I also tried this on 2 different raspberry pi 3Bs to make sure it was the sd card.
So when I came back to the pi today it greeted me with U-Boot, 5 usb devices found
Then starting grub2, which then promptly told me:

Failure writing sector 0x790000 to hd0
No such partition [x3]

Then can’t boot fallback bootloader proceeded by spamming the screen full of

WARNING at drivers/mmc/bcm2835_sdhost.c:408/bcm2835_send_command()!

After about 10 minutes or so of it spamming that message it gave a stack overflow warning and dropped into grub2.02 giving me

Code: Select all

*Ubuntu
 Advanced options for Ubuntu

If I select any entry in the menu it gives me a couple of bcm2835 warnings again, then

Code: Select all

partition not found [x4]
press any key to continue...

before dropping back into the menu.
Dropping into console and writing ANY command, including ls or help result in a couple more bcm2835_sdhost.c warnings before dropping back into the console and giving me

autocomplete to list commands work, and unknown commands give me

How I got there
Here are the detailed steps of what I did to create sd card. I used an Ubuntu VM on windows to handle partitioning, etc on the SD card.

Getting Netboot onto SD Card
With GParted

  • Delete partition table on SD Card
  • Create msdos partition table on SD Card
  • Create Primary Partion 1 with FAT32 about 128MB
  • Set ‘Boot’ Flag

Mount the partition to /mnt

Get and Unpack the bootloader

Code: Select all

wget http://archive.raspberrypi.org/debian/pool/main/r/raspberrypi-firmware/raspberrypi-bootloader_1.20180417-1_armhf.deb
dpkg-deb -x raspberrypi-bootloader_1.20180417-1_armhf.deb ~/Desktop/pi-bootloader
rm raspberrypi-bootloader_1.20180417-1_armhf.deb
sudo cp ~/Desktop/pi-bootloader/boot* /mnt

Clone U-Boot, compile and copy kernel8.img

Code: Select all

sudo apt-get install build-essential bison flex git make gcc gcc-aarch64-linux-gnu
git clone --progress http://git.denx.de/u-boot.git
cd u-boot
make rpi_3_defconfig
make CROSS_COMPILE=aarch64-linux-gnu-
sudo cp u-boot.bin /mnt/kernel8.img
cd ..

Get and copy device tree blob (although I have no idea where it is stated that it should be loaded or anything else about this)

Code: Select all

wget http://ports.ubuntu.com/dists/bionic/main/installer-arm64/current/images/device-tree/bcm2837-rpi-3-b.dtb
sudo mkdir /mnt/dtb/broadcom/
sudo cp bcm2837-rpi-3-b.dtb /mnt/dtb/broadcom

Get netboot installer mini-iso and copy it onto the sdcard

Code: Select all

mkdir /tmp/mini-iso
sudo mount -o loop mini.iso /tmp/mini-iso
sudo cp -rT /tmp/mini-iso /mnt
mkdir /tmp/efi-img
sudo mount -o loop /tmp/mini-iso/boot/grub/efi.img /tmp/efi-img
sudo cp -rT /tmp/efi-img /mnt
sudo umount /tmp/efi-img
sudo umount /tmp/mini-iso

Force writing changes and unmount sd card from VM

Installing Ubuntu with Netboot

  • Stick the card into the Raspberry Pi 3B
  • Boot it up.
  • Select Install
  • Set Locale, Keyboard layout, Geographic position, etc
  • Partition disk. (I use a 16GB SD Card like this: 128MB Fat32 boot partition (part1), 1.5GB swap partition (part2), rest ext4 mounted on / (part3))
  • Select download server (none pops up for the mini-iso linked on the page with the installation manual, use the one from the download page instead: https://www.ubuntu.com/download/server/arm )
  • Additional software: Don’t install desktop environment at this point, openssh if wanted
  • Grub installation (expectedly) fails -> continue without bootloader
  • set clock to utc

Fixing the bootloader — This is the part that probably borked somehow

  • Reboot into installer
  • On Grub (Menu with Auto Install, Advanced options, etc), enter console mode by pressing C
  • list partitions
  • set root partition
  • Check file system is the correct one

    Should list a linux root file system with typical directories /root, /usr/, /var, etc

  • select kernel

    Code: Select all

    linux /boot/vmlinuz root=/dev/mmcblk0p3
  • Whatever this does
  • boot the system manually

Unlike the manual tells, /boot/efi doesn’t exist, and nothing is mounted there. So this is where I deviate from the manual and likely messed something up.

Code: Select all

sudo grub-install --no-nvram
sudo update-grub

This returns errors that grub can’t find the efi partition or something of the kind. so what I did instead was this:

Code: Select all

sudo mkdir /boot/efi
sudo mount /dev/mmcblk0p1 /boot/efi
sudo grub-install --no-nvram
sudo update-grub

and then I put

Code: Select all

UUID=<UUID> /boot/efi vfat defaults 0 2

at the end of /etc/fstab
Get UUID with

I did not follow this step, because I didn’t know what it meant at all, and no commands or paths were given.

Finally(!), you will have to copy the GPU firmware/bootloader files and U-boot to the system’s fat partition. This will be mounted at /boot/efi if installation has gone correctly.

Rebooting now does boot into ubuntu without a problem, at least it did for me.
At this point I made some changes to the system, like installing the package xubuntu-desktop, mongodb, mono-complete and a few other things I wanted.
A few problems did occur:

  • The desktop was hanging up
  • wifi not working, which is no big deal for me

The desktop hanging up was related to the vc4 framebuffer kernel module not working correctly. When switching to tty1 (ctrl + alt + f1) it gave me some hdmi errors related to vc4. On a fedora forum I found out that blacklisting the module gets rid of the error (and it did for me on ubuntu).
So I will add this to the list of things I did that the installation instructions didn’t mention
I added the vc4 kernel module to the blacklist

Code: Select all

sudo bash
echo blacklist vc4 > /etc/modprobe.d/blacklist-vc4.conf
exit
reboot

After that everything worked fine without even the hint of a problem, except for wifi, as I mentioned.
However I powered down over the weekend, returned to the project and nothing works anymore.
Also I rebooted several times, and it always came back into ubuntu before, including with disconnected power.

That’s all I did, and I don’t have a clue what’s going on. I’m no expert at booting, nor am I deep down into linux or the raspberry, I just want to use the thing to log some data.
Any help would be greatly appreciated. Thank you.

Страница 1 из 2


  1. Mak

    Mak
    Пользователь

    Регистрация:
    14.07.2011
    Сообщения:
    644
    Симпатии:
    61

    Вчера по инструкции записал гири войны 3. Сегодня прошился на 2.0 установил на винт приставки, всё нормально.
    Сегодня пытаюсь записать Rage и когда должна начатся запись выдаёт вот такую ошибку

    Снимок.PNG

    Потом предлагает закрыть сессию

  2. в помойку и пробуй на новую балванку писать


  3. Mak

    Mak
    Пользователь

    Регистрация:
    14.07.2011
    Сообщения:
    644
    Симпатии:
    61

    Да и эта болванка не старая. :)

    Я их две брал для Rage, сегодня пробовал на вторую записать.
    Тоже самое. Проверил запись на DVD-RW. Работает.
    Запись вообще не начинается. После болванки остаются такими же ( т.е. занова ставишь в привод пишет что чистая )
    Последняя запись в сообщении об ошибке про формат. Может образы не правильные ? Что ещё может быть ?


  4. Kudesnik

    Kudesnik
    Пользователь

    Регистрация:
    30.08.2011
    Сообщения:
    320
    Симпатии:
    25

    [​IMG]
    Не смущает?


  5. aledjo

    aledjo
    Пользователь

    Регистрация:
    10.10.2011
    Сообщения:
    22
    Симпатии:
    0

    Болванки те же на какую ГОВ3 писал???
    И КлонСД что говорит? Тоже самое?
    Итог: для начала попробуй через клон записать, посмотри что он скажет)


  6. Kudesnik

    Kudesnik
    Пользователь

    Регистрация:
    30.08.2011
    Сообщения:
    320
    Симпатии:
    25


  7. Mak

    Mak
    Пользователь

    Регистрация:
    14.07.2011
    Сообщения:
    644
    Симпатии:
    61

    Да гов на точно такие же писал. Клон тоже не пишет. Ошибку сейчас не могу показать вчера делал
    — добавлено: Oct 11, 2011 1:39 AM —

    Не ,по подробней ..
    — добавлено: Oct 11, 2011 1:42 AM —

    Смущает, про это и спрашивал


  8. aledjo

    aledjo
    Пользователь

    Регистрация:
    10.10.2011
    Сообщения:
    22
    Симпатии:
    0

    Ну раз делал все по инструкции) то одно из двух: либо образ кривой, либо болванки кривые… на привод нет смысла грешить.
    Кинь полный лог с имгбурна и клонсд
    и какие болванки используешь?


  9. Mak

    Mak
    Пользователь

    Регистрация:
    14.07.2011
    Сообщения:
    644
    Симпатии:
    61


  10. aledjo

    aledjo
    Пользователь

    Регистрация:
    10.10.2011
    Сообщения:
    22
    Симпатии:
    0

    А что с ним не так??? ты же его не менял???


  11. Kudesnik

    Kudesnik
    Пользователь

    Регистрация:
    30.08.2011
    Сообщения:
    320
    Симпатии:
    25

    В имгбёрне надо ткнуть на «книжку» в правом нижнем углу, выбрать свой привод, DVD+R DL и выставить буктайп DVD-ROM!


  12. aledjo

    aledjo
    Пользователь

    Регистрация:
    10.10.2011
    Сообщения:
    22
    Симпатии:
    0

    Ага, а ГОВ он чисто случайно записал) нет тут дело не в этом, ждем лог и ответа по болванкам


  13. Kudesnik

    Kudesnik
    Пользователь

    Регистрация:
    30.08.2011
    Сообщения:
    320
    Симпатии:
    25

    Может и случайно… В большенстве факов указано что НЕОБХОДИМО изменить буктайп.


  14. Mak

    Mak
    Пользователь

    Регистрация:
    14.07.2011
    Сообщения:
    644
    Симпатии:
    61

    Вобщем вот

    img1.PNG

    нажимаем запись

    img2.PNG

    жмем ОК и через секунды 2 вываливается это

    img3.PNG

    жму отмена

    img4.PNG

    ну и тоже нет нажимаю

    вот полный лог

    I 13:19:18 ImgBurn Version 2.5.6.0 started!
    I 13:19:18 Microsoft Windows 7 Ultimate x64 Edition (6.1, Build 7600)
    I 13:19:18 Total Physical Memory: 3 144 248 KB — Available: 1 814 124 KB
    W 13:19:18 Duplex Secure’s SPTD driver can have a detrimental effect on drive performance.
    I 13:19:18 Initialising SPTI…
    I 13:19:18 Searching for SCSI / ATAPI devices…
    I 13:19:18 -> Drive 1 — Info: _NEC DVD_RW ND-4551A 1-07 (G:) (ATA)
    I 13:19:18 -> Drive 2 — Info: SRGTC QVCLABW 1.04 (H:) (SCSI)
    I 13:19:18 Found 1 DVD±RW/RAM and 1 BD-ROM!
    W 13:22:36 User accepted disc space warning and is attempting to truncate!
    I 13:22:36 Operation Started!
    I 13:22:36 Source File: F:Dowloads DCRageRage disc 1.dvd
    I 13:22:36 Source File Sectors: 4 267 015 (MODE1/2048-)
    I 13:22:36 Source File Size: 8 738 846 720 bytes
    I 13:22:36 Source File Volume Identifier: DVD_ROM
    I 13:22:36 Source File Volume Set Identifier: 191b8000MS UDFBridge
    I 13:22:36 Source File Application Identifier: CDIMAGE 2.45 (12/06/2000 TM)
    I 13:22:36 Source File Implementation Identifier: Microsoft CDIMAGE UDF
    I 13:22:37 Source File File System(s): ISO9660; UDF (1.50)
    I 13:22:37 Destination Device: [0:0:0] _NEC DVD_RW ND-4551A 1-07 (G:) (ATA)
    I 13:22:37 Destination Media Type: DVD+R DL (Disc ID: MBIPG101-R10-65)
    I 13:22:37 Destination Media Sectors: 4 173 824
    I 13:22:37 Write Mode: DVD
    I 13:22:37 Write Type: DAO
    I 13:22:37 Write Speed: 2,4x
    I 13:22:37 Link Size: Auto
    I 13:22:37 Lock Volume: Yes
    I 13:22:37 Test Mode: No
    I 13:22:37 OPC: No
    I 13:22:37 BURN-Proof: Enabled
    W 13:22:37 Write Speed Miscompare! — MODE SENSE: 8 467 KB/s (6,3x), GET PERFORMANCE: 1 385 KB/s (1x)
    W 13:22:37 Write Speed Miscompare! — MODE SENSE: 8 467 KB/s (6,3x), GET PERFORMANCE: 1 385 KB/s (1x)
    W 13:22:37 Write Speed Miscompare! — MODE SENSE: 8 467 KB/s (6,3x), GET PERFORMANCE: 1 385 KB/s (1x)
    W 13:22:37 Write Speed Miscompare! — MODE SENSE: 8 467 KB/s (6,3x), GET PERFORMANCE: 1 385 KB/s (1x)
    W 13:22:37 Write Speed Miscompare! — Wanted: 3 324 KB/s (2,4x), Got: 8 467 KB/s (6,3x) / 1 385 KB/s (1x)
    I 13:22:37 Book Type Setting: DVD-ROM
    W 13:22:37 Optimal layer break position exceeds L0 capacity.
    W 13:22:37 Optimal L0 Sectors: 2 133 520
    W 13:22:37 Maximum L0 Sectors: 2 086 912
    I 13:22:37 Optimal L0 Data Zone Capacity: 2 133 520
    I 13:22:37 Optimal L0 Data Zone Method: Copied From Original Disc
    W 13:22:37 Set L0 Data Zone Capacity Failed! — Reason: Invalid Field in Parameter List
    I 13:22:38 Filling Buffer… (40 MB)
    I 13:22:39 Writing LeadIn…
    W 13:22:39 Failed to Write Sectors 0 — 31 — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (1 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (2 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (3 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (4 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (5 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (6 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (7 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (8 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (9 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (10 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (11 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (12 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (13 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (14 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (15 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (16 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (17 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (18 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (19 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    W 13:22:39 Retrying (20 of 20)…
    W 13:22:39 Retry Failed — Reason: Cannot Write Medium — Incompatible Format
    E 13:23:20 Failed to Write Sectors 0 — 31 — Reason: Cannot Write Medium — Incompatible Format
    I 13:23:20 Synchronising Cache…
    W 13:23:49 User opted to skip the ‘Close Track/Session/Disc’ functions.
    E 13:23:49 Failed to Write Image!
    E 13:23:49 Operation Failed! — Duration: 00:01:12
    I 13:23:49 Average Write Rate: N/A — Maximum Write Rate: N/A

    Диски TDK штук десять записал

    диск.jpg


  15. Kudesnik

    Kudesnik
    Пользователь

    Регистрация:
    30.08.2011
    Сообщения:
    320
    Симпатии:
    25

    Попробуй убей это — Drive 2 — Info: SRGTC QVCLABW 1.04 (H:) (SCSI) и это — Duplex Secure’s SPTD driver.

    А ещё лучьше stock windows! незахламлённая винда лучьший друг и саратник! (Усли Линукса нет :))


  16. aledjo

    aledjo
    Пользователь

    Регистрация:
    10.10.2011
    Сообщения:
    22
    Симпатии:
    0

    не хочется тебя огорчать но есть вероятность что загнулся привод…
    Но не будем сразу о плохом) для начала проверь какой layer break стоит в .dvd/файле
    И купи verbatim для точной проверки)


  17. Mak

    Mak
    Пользователь

    Регистрация:
    14.07.2011
    Сообщения:
    644
    Симпатии:
    61

    Первый раз вижу. Даже нигде не видел


  18. aledjo

    aledjo
    Пользователь

    Регистрация:
    10.10.2011
    Сообщения:
    22
    Симпатии:
    0

    Duplex Secure’s SPTD driver…: это либо алкоголь либо даймон


  19. Mak

    Mak
    Пользователь

    Регистрация:
    14.07.2011
    Сообщения:
    644
    Симпатии:
    61

    LayerBreak=2133520
    Rage disc 1.iso

    Я сегодня на DVD-RW вроде им писал
    — добавлено: Oct 11, 2011 7:23 AM —

    демон стоит
    А что с ним ?


  20. aledjo

    aledjo
    Пользователь

    Регистрация:
    10.10.2011
    Сообщения:
    22
    Симпатии:
    0

    Да все в норме, это не должно быть помехой. Давай определим причины:
    1. Кривой образ. отпадает, так как наверняка там откуда ты качал куча коменов что образ рабочий и игруха супер))
    2. Болванки. Во всех партиях есть брак.
    3.Загнулся привод. Обнови firmware и купи verbatim для точного анализа-диагноза)

Страница 1 из 2

Поделиться этой страницей


The Hack FAQ Community

Понравилась статья? Поделить с друзьями:
  • Error failure processing png image
  • Error failure enumerating files in directory
  • Error failedepicauthtoken among us
  • Error failed while fetching server version could be due to unauthorized access
  • Error failed to update magicad cuix mnr file