ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Картридер
@ 2005-01-22 21:31 Topper
  2005-01-23  5:45 ` Nikolay A. Fetisov
                   ` (3 more replies)
  0 siblings, 4 replies; 16+ messages in thread
From: Topper @ 2005-01-22 21:31 UTC (permalink / raw)
  To: community

Приветствую! приобрел себе картридер (внутренний, нонеймовый, 7-в-1, без
проблем работающий под виндой). никак не удается завести его под ALM2.4.
вот вывод dmesg:

SCSI subsystem driver Revision: 1.00
Initializing USB Mass Storage driver...
usb.c: registered new driver usb-storage
scsi0 : SCSI emulation for USB Mass Storage devices
  Vendor: Generic   Model: USB Storage-CFC   Rev: I16A
  Type:   Direct-Access                      ANSI SCSI revision: 02
WARNING: USB Mass Storage data integrity not assured
USB Mass Storage device found at 2
USB Mass Storage support registered.
Attached scsi removable disk sda at scsi0, channel 0, id 0, lun 0
sda: Unit Not Ready, sense:
Current 00:00: sense key Not Ready
Additional sense indicates Medium not present
sda : READ CAPACITY failed.
sda : status = 1, message = 00, host = 0, driver = 08
Current sd00:00: sense key Not Ready
Additional sense indicates Medium not present
sda : block size assumed to be 512 bytes, disk size 1GB.
 sda: I/O error: dev 08:00, sector 0
 I/O error: dev 08:00, sector 0
ldm_validate_partition_table(): Disk read failed.
 I/O error: dev 08:00, sector 0
 unable to read partition table
sda: Unit Not Ready, sense:
Current 00:00: sense key Not Ready
Additional sense indicates Medium not present
sda : READ CAPACITY failed.
sda : status = 1, message = 00, host = 0, driver = 08
Current sd00:00: sense key Not Ready
Additional sense indicates Medium not present
sda : block size assumed to be 512 bytes, disk size 1GB.
sda: Write Protect is off
 sda: I/O error: dev 08:00, sector 0
 I/O error: dev 08:00, sector 0
ldm_validate_partition_table(): Disk read failed.
 I/O error: dev 08:00, sector 0
 unable to read partition table

#lsmod|grep usb:

usb-storage           139744   0
scsi_mod               95296   2  [sd_mod usb-storage]
usb-uhci               21676   0  (unused)
usbcore                58464   1  [usb-storage usb-uhci]

содержимое modules.conf:

options ide-scsi ignore="hdc"
above snd-emu10k1 snd-pcm-oss
alias sound-slot-0 snd-emu10k1
above snd-pcm-oss snd-mixer-oss
alias usb-interface usb-uhci
alias eth0 ne2k-pci
# I2C module options
alias char-major-89 i2c-dev

попытка внести в modules.conf 

option scsi_mod max_scsi_luns=0xffffff

успеха не принесла: начинается ругань на неверные данные в modules.conf.
хотя, насколько я осознал проблемму, именно это мне и поможет заставить
эту железяку работать.

собственно вот... куда копать и что делать?

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-22 21:31 [Comm] Картридер Topper
@ 2005-01-23  5:45 ` Nikolay A. Fetisov
  2005-01-23  6:14 ` Alex Yustasov
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 16+ messages in thread
From: Nikolay A. Fetisov @ 2005-01-23  5:45 UTC (permalink / raw)
  To: community

В сообщении от Воскресенье 23 Январь 2005 00:31 Topper написал(a):
> попытка внести в modules.conf
>
> option scsi_mod max_scsi_luns=0xffffff
>
> успеха не принесла: начинается ругань на неверные данные в modules.conf.
Название параметра  зависит от используемого ядра:
http://faq.altlinux.ru/index.php?action=single&nf=1&qid=266

Для 2.4 в приведённую строку нужно добавить ещё пару 'f':
option scsi_mod max_scsi_luns=0xffffffff

Для 2.6 параметр называется max_luns:
options scsi_mod max_luns=255

С уважением,
Николай Фетисов.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-22 21:31 [Comm] Картридер Topper
  2005-01-23  5:45 ` Nikolay A. Fetisov
@ 2005-01-23  6:14 ` Alex Yustasov
  2005-01-23 16:53   ` Topper
  2005-01-25 11:07 ` Topper
  2005-01-25 17:29 ` [Comm] Картридер Alex Yustasov
  3 siblings, 1 reply; 16+ messages in thread
From: Alex Yustasov @ 2005-01-23  6:14 UTC (permalink / raw)
  To: community

On Sun, Jan 23, 2005 at 12:31:09AM +0300, Topper wrote:
> 
> options ide-scsi ignore="hdc"

Ошибка может здесь? Что Вы хотели сказать?

> above snd-emu10k1 snd-pcm-oss
> alias sound-slot-0 snd-emu10k1
> above snd-pcm-oss snd-mixer-oss
> alias usb-interface usb-uhci
> alias eth0 ne2k-pci
> # I2C module options
> alias char-major-89 i2c-dev
> 
> попытка внести в modules.conf 
> 
> option scsi_mod max_scsi_luns=0xffffff

Только еще две ff, может и не надо.

> 
> успеха не принесла: начинается ругань на неверные данные в modules.conf.
> хотя, насколько я осознал проблемму, именно это мне и поможет заставить
> эту железяку работать.
> 
> собственно вот... куда копать и что делать?


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-23  6:14 ` Alex Yustasov
@ 2005-01-23 16:53   ` Topper
  2005-01-23 16:58     ` Topper
  2005-01-23 18:05     ` [Comm] Картридер Alex Yustasov
  0 siblings, 2 replies; 16+ messages in thread
From: Topper @ 2005-01-23 16:53 UTC (permalink / raw)
  To: community

On Sun, 23 Jan 2005 08:14:05 +0200
Alex Yustasov <snmon@server.by> wrote:

> > options ide-scsi ignore="hdc"
> 
> Ошибка может здесь? Что Вы хотели сказать?
> 

то, что не надо заставлять непишущий cd-rom работать через эмуляцию
скази. а вообще это не я, это дракинстолл :)


> > option scsi_mod max_scsi_luns=0xffffff
> 
> Только еще две ff, может и не надо.

спасибо, попробую...

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-23 16:53   ` Topper
@ 2005-01-23 16:58     ` Topper
  2005-01-23 17:48       ` Nikolay A. Fetisov
  2005-01-23 18:05     ` [Comm] Картридер Alex Yustasov
  1 sibling, 1 reply; 16+ messages in thread
From: Topper @ 2005-01-23 16:58 UTC (permalink / raw)
  To: community

On Sun, 23 Jan 2005 19:53:08 +0300
Topper <xpyctman@rambler.ru> wrote:

> > > option scsi_mod max_scsi_luns=0xffffff
> > 
> > Только еще две ff, может и не надо.
> 
> спасибо, попробую...

не помогло. по прежнему ругается на некорректную запись в modules.conf.

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-23 16:58     ` Topper
@ 2005-01-23 17:48       ` Nikolay A. Fetisov
  2005-01-23 18:02         ` Topper
  0 siblings, 1 reply; 16+ messages in thread
From: Nikolay A. Fetisov @ 2005-01-23 17:48 UTC (permalink / raw)
  To: community

В сообщении от Воскресенье 23 Январь 2005 19:58 Topper написал(a):
> On Sun, 23 Jan 2005 19:53:08 +0300
>
> Topper <xpyctman@rambler.ru> wrote:
> > > > option scsi_mod max_scsi_luns=0xffffff
> > >
> > > Только еще две ff, может и не надо.
> >
> > спасибо, попробую...
>
> не помогло. по прежнему ругается на некорректную запись в modules.conf.
Для 2.4.x:
options scsi_mod max_scsi_luns=0xffffffff

Для 2.6.x:
options scsi_mod max_luns=0xffffffff


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-23 17:48       ` Nikolay A. Fetisov
@ 2005-01-23 18:02         ` Topper
  2005-01-24  7:50           ` [Comm] [FAQ!] Картридер Michael Shigorin
  0 siblings, 1 reply; 16+ messages in thread
From: Topper @ 2005-01-23 18:02 UTC (permalink / raw)
  To: community

On Sun, 23 Jan 2005 20:48:54 +0300
"Nikolay A. Fetisov" <naf@naf.net.ru> wrote:

> Для 2.4.x:
> options scsi_mod max_scsi_luns=0xffffffff
> 
> Для 2.6.x:
> options scsi_mod max_luns=0xffffffff

ядро 2.4, но все равно продолжает ругаться.
кстати, для 2.6 - 0x255.

а картридер оживил. как - не спрашивайте, не знаю. нашел вот эту
страничку: http://www.linux-sxs.org/hardware/flashreaders.html
все проделал по приведенным там шагам, и искомая флешка нашлась на
/dev/sdd1. что интересно, этот девайс я проверял, когда перебирал все
возможные. едсинственная мысль: установка sg_utils заставила эту
штуковину работать...

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-23 16:53   ` Topper
  2005-01-23 16:58     ` Topper
@ 2005-01-23 18:05     ` Alex Yustasov
  2005-01-25 10:51       ` Topper
  1 sibling, 1 reply; 16+ messages in thread
From: Alex Yustasov @ 2005-01-23 18:05 UTC (permalink / raw)
  To: community

On Sun, Jan 23, 2005 at 07:53:08PM +0300, Topper wrote:
> On Sun, 23 Jan 2005 08:14:05 +0200
> Alex Yustasov <snmon@server.by> wrote:
> 
> > > options ide-scsi ignore="hdc"
> > 
> > Ошибка может здесь? Что Вы хотели сказать?
> > 
> 
> то, что не надо заставлять непишущий cd-rom работать через эмуляцию
> скази. а вообще это не я, это дракинстолл :)

Попробуйте закоментировать эту строчку. Пусть непишущий cd-rom
чуть-чуть поработает через эмуляцию. :)


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Comm] [FAQ!] Re: Картридер
  2005-01-23 18:02         ` Topper
@ 2005-01-24  7:50           ` Michael Shigorin
  2005-01-25 10:56             ` Topper
  0 siblings, 1 reply; 16+ messages in thread
From: Michael Shigorin @ 2005-01-24  7:50 UTC (permalink / raw)
  To: community

On Sun, Jan 23, 2005 at 09:02:36PM +0300, Topper wrote:
> > Для 2.4.x: options scsi_mod max_scsi_luns=0xffffffff
> > Для 2.6.x: options scsi_mod max_luns=0xffffffff
> ядро 2.4, но все равно продолжает ругаться.
> кстати, для 2.6 - 0x255.

Просто 255 (http://faq.altlinux.ru/index.php?action=single&nf=1&qid=266).

> а картридер оживил. как - не спрашивайте, не знаю. нашел вот эту
> страничку: http://www.linux-sxs.org/hardware/flashreaders.html

Добавить туда же? :)

> все проделал по приведенным там шагам, и искомая флешка нашлась
> на /dev/sdd1.

У меня SanDisk 6-in-1 чудно работает ровно по инструкции из FAQ.
Проверьте, может, проблема-то в байтике-двух. :)

PS: вопрос-то для hardware@ был.

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-23 18:05     ` [Comm] Картридер Alex Yustasov
@ 2005-01-25 10:51       ` Topper
  0 siblings, 0 replies; 16+ messages in thread
From: Topper @ 2005-01-25 10:51 UTC (permalink / raw)
  To: community

On Sun, 23 Jan 2005 20:05:19 +0200
Alex Yustasov <snmon@server.by> wrote:

> 
> Попробуйте закоментировать эту строчку. Пусть непишущий cd-rom
> чуть-чуть поработает через эмуляцию. :)

пробовал. результат один - "ошибка в строке 11..."

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] [FAQ!] Re: Картридер
  2005-01-24  7:50           ` [Comm] [FAQ!] Картридер Michael Shigorin
@ 2005-01-25 10:56             ` Topper
  0 siblings, 0 replies; 16+ messages in thread
From: Topper @ 2005-01-25 10:56 UTC (permalink / raw)
  To: community

On Mon, 24 Jan 2005 09:50:58 +0200
Michael Shigorin <mike@osdn.org.ua> wrote:

> 
> Добавить туда же? :)

стоит, стоит...

> У меня SanDisk 6-in-1 чудно работает ровно по инструкции из FAQ.
> Проверьте, может, проблема-то в байтике-двух. :)
> 
> PS: вопрос-то для hardware@ был.

sorry, конечно, но на hardware я не подписан...
в чем было дело - до сих пор не пойму...

а свистопляска продолжилась... после перезагрузки неожиданно сработал
hotplug, как ему и полагалось с самого начала: я ММЦешку втыкаю в
картридер, и на десктопе появляется четыре юсб-устройства. все прекрасно
работает. еще одна перезагрузка - и на десктопе ВСЕГДА висит только одно
устройство - /dev/sda. втыкание флешки приводит к его переобнаружению
(то бишь хрупает дисковод, моргает винт и иконка на КДЕшном десктопе
исчезает/появляется). попытался смонтировать его вручную:

[root@localhost root]# mount /dev/sdd1 /mnt/storage/
mount: /dev/sdd1 is not a valid block device

то есть, как и было до установки sg_utils. вывод sg_scan:

[root@localhost root]# sg_scan
/dev/sg0: scsi0 channel=0 id=0 lun=0 [em]  type=0

то есть, система видит не 4 устройства, а только одно. что делать-то?..

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-22 21:31 [Comm] Картридер Topper
  2005-01-23  5:45 ` Nikolay A. Fetisov
  2005-01-23  6:14 ` Alex Yustasov
@ 2005-01-25 11:07 ` Topper
  2005-01-25 11:59   ` [Comm] Картридер Michael Shigorin
  2005-01-25 17:29 ` [Comm] Картридер Alex Yustasov
  3 siblings, 1 reply; 16+ messages in thread
From: Topper @ 2005-01-25 11:07 UTC (permalink / raw)
  To: community

все, разобрался. вот этот скрипт:

#!/bin/sh
echo "scsi add-single-device 0 0 0 0" > /proc/scsi/scsi
echo "scsi add-single-device 0 0 0 1" > /proc/scsi/scsi
echo "scsi add-single-device 0 0 0 2" > /proc/scsi/scsi
echo "scsi add-single-device 0 0 0 3" > /proc/scsi/scsi
cat /proc/scsi/scsi

надобно исполнять при каждой загрузке. и все будет работать.

ЗЫ: спасибо всем учавствовшим и сочувствовавшим. 

ЗЗЫ: вопрос про неработоспособность 
options scsi_mod max_scsi_luns=0xffffffff
остается открытым... если у кого-нибудь есть еще какие-нибудь идеи -
прошу высказаться...

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Comm] Re: Картридер
  2005-01-25 11:07 ` Topper
@ 2005-01-25 11:59   ` Michael Shigorin
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Shigorin @ 2005-01-25 11:59 UTC (permalink / raw)
  To: community; +Cc: vsu

On Tue, Jan 25, 2005 at 02:07:05PM +0300, Topper wrote:
> все, разобрался. вот этот скрипт:
> #!/bin/sh
> echo "scsi add-single-device 0 0 0 0" > /proc/scsi/scsi
> echo "scsi add-single-device 0 0 0 1" > /proc/scsi/scsi
> echo "scsi add-single-device 0 0 0 2" > /proc/scsi/scsi
> echo "scsi add-single-device 0 0 0 3" > /proc/scsi/scsi
> cat /proc/scsi/scsi
> надобно исполнять при каждой загрузке. и все будет работать.

2 vsu: any comments?

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-22 21:31 [Comm] Картридер Topper
                   ` (2 preceding siblings ...)
  2005-01-25 11:07 ` Topper
@ 2005-01-25 17:29 ` Alex Yustasov
  2005-01-25 18:43   ` Topper
  3 siblings, 1 reply; 16+ messages in thread
From: Alex Yustasov @ 2005-01-25 17:29 UTC (permalink / raw)
  To: community

On Sun, Jan 23, 2005 at 12:31:09AM +0300, Topper wrote:
> option scsi_mod max_scsi_luns=0xffffff
options?


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [Comm] Картридер
  2005-01-25 17:29 ` [Comm] Картридер Alex Yustasov
@ 2005-01-25 18:43   ` Topper
  2005-01-25 20:03     ` [Comm] Картридер Michael Shigorin
  0 siblings, 1 reply; 16+ messages in thread
From: Topper @ 2005-01-25 18:43 UTC (permalink / raw)
  To: community

On Tue, 25 Jan 2005 19:29:08 +0200
Alex Yustasov <snmon@server.by> wrote:

> options?

в точку! спасибо!
2ALT Team: поправьте в FAQ'е, пожалуйста...

-- 
Всем спасибо, все свободны
ALT Linux 2.4 Master
Tualatin-1400/384/Ti4200
Registred Linux User #339833


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Comm] Re: Картридер
  2005-01-25 18:43   ` Topper
@ 2005-01-25 20:03     ` Michael Shigorin
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Shigorin @ 2005-01-25 20:03 UTC (permalink / raw)
  To: community

On Tue, Jan 25, 2005 at 09:43:59PM +0300, Topper wrote:
> > options?
> в точку! спасибо!  2ALT Team: поправьте в FAQ'е, пожалуйста...

*sigh*

RTFM!!! :-)

(hint: http://faq.altlinux.ru/index.php?action=single&nf=1&qid=266
я как выложил, так и _не_ правил :)

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2005-01-25 20:03 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-22 21:31 [Comm] Картридер Topper
2005-01-23  5:45 ` Nikolay A. Fetisov
2005-01-23  6:14 ` Alex Yustasov
2005-01-23 16:53   ` Topper
2005-01-23 16:58     ` Topper
2005-01-23 17:48       ` Nikolay A. Fetisov
2005-01-23 18:02         ` Topper
2005-01-24  7:50           ` [Comm] [FAQ!] Картридер Michael Shigorin
2005-01-25 10:56             ` Topper
2005-01-23 18:05     ` [Comm] Картридер Alex Yustasov
2005-01-25 10:51       ` Topper
2005-01-25 11:07 ` Topper
2005-01-25 11:59   ` [Comm] Картридер Michael Shigorin
2005-01-25 17:29 ` [Comm] Картридер Alex Yustasov
2005-01-25 18:43   ` Topper
2005-01-25 20:03     ` [Comm] Картридер Michael Shigorin

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git