home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 May / PCWorld_2001-05_cd.bin / Software / Vyzkuste / cdspeed / Usage.txt < prev   
Text File  |  1999-09-14  |  4KB  |  104 lines

  1. May be examples will be best.
  2.  
  3. My PC configuration:
  4.   No SCSI device is present.
  5.   Primary IDE channel (reported as host adapter 0):
  6.     master is hard drive (reported as TargetId 0, LUN 0)
  7.     slave is not present
  8.   Secondary IDE channel (reported as host adapter 1):
  9.     master is hard drive (reported as TargetId 0, LUN 0)
  10.     slave is IDE CDROM (reported as TargetId 1, LUN 0)
  11.  
  12. Here are some directly from my machine:
  13.  
  14. *REM fist I want to know how to use the program 
  15. *REM so -h argument present in command line
  16. METOD 5>cdspeed -h
  17. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  18. Usage: cdspeed HA Tgt LUN [isg]+ NewSpeed
  19.   HA        host adapter number
  20.   Tgt       target number on the specified HA
  21.   LUN       logical unit number on the specified Tgt
  22.   [isgr]+   nonempty sequence of these three characters which have this
  23.             meaning: i perform inquiry command
  24.                      s perform set CD speed command
  25.                      g print CD speed setting from mode sense command data
  26.                      r perform reset command
  27.   NewSpeed  required speed in KB/s to be set if `s' was specified,
  28.             some well known values are:
  29.                 x1    176              x2     353
  30.                 x3    528              x4     706
  31.                 x8   1411              x16   2823
  32.                 maximumSpeed or simply max  65535
  33. METOD 6>
  34.  
  35. *REM i recommended to run it without arguments too
  36. *REM so launched without command line arguments
  37. *REM --> this tells you what you have
  38. *REM     CDROM drive is marked with asterisk (*)
  39. METOD 3>cdspeed
  40. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  41. ASPI32 installed OK; Adapter count is: 2
  42. Scanning host adapter 0 for CD-ROM devices...
  43.   TargetId 0, LUN 0 - Direct-access device (i.e. magnetic disk)
  44.     WDC AC313000R            Rev 15.0
  45. Scanning host adapter 1 for CD-ROM devices...
  46.   TargetId 0, LUN 0 - Direct-access device (i.e. magnetic disk)
  47.     WDC AC11000H             Rev 12.0
  48. * TargetId 1, LUN 0 - CD-ROM device
  49.     TOSHIBA CD-ROM XM-6202B  Rev 1110 11/20/97
  50. METOD 4>
  51.  
  52. *REM now I know that on host adapter 1 I have target device
  53. *REM number 1 with LUN equal to 0 ... and the device is
  54. *REM my CDROM (asterisk)
  55. *REM I again ask what is my CDROM (inquiry command)
  56. METOD 6>cdspeed 1 1 0 i
  57. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  58. ASPI32 installed OK; Adapter count is: 2
  59. TOSHIBA CD-ROM XM-6202B  Rev 1110 11/20/97 --> CD-ROM device
  60. METOD 7>
  61.  
  62. *REM well it's "TOSHIBA CD-ROM XM-6202B"
  63. *REM now I want to know what speed it has (mode sense command)
  64. METOD 7>cdspeed 1 1 0 g
  65. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  66. ASPI32 installed OK; Adapter count is: 2
  67. Current CD speed: 5645 KB/s     Max. CD speed supported: 5645 KB/s
  68. METOD 8>
  69.  
  70. *REM now I want to set speed of 706 KB/s (set CD speed command)
  71. *REM there are two possibilities
  72. METOD 8>cdspeed 1 1 0 s x4
  73. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  74. ASPI32 installed OK; Adapter count is: 2
  75. Speed should be set to 706 KB/s
  76. METOD 9>cdspeed 1 1 0 s 706
  77. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  78. ASPI32 installed OK; Adapter count is: 2
  79. Speed should be set to 706 KB/s
  80. METOD 10>
  81.  
  82. *REM now I want to ask what drive I have and what speed 
  83. *REM it has, then set it's speed to 176 KB/s and again
  84. *REM ask what speed it has
  85. METOD 11>cdspeed 1 1 0 igsg x1
  86. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  87. ASPI32 installed OK; Adapter count is: 2
  88. TOSHIBA CD-ROM XM-6202B  Rev 1110 11/20/97 --> CD-ROM device
  89. Current CD speed: 706 KB/s     Max. CD speed supported: 5645 KB/s
  90. Speed should be set to 176 KB/s
  91. Current CD speed: 176 KB/s     Max. CD speed supported: 5645 KB/s
  92. METOD 12>
  93.  
  94. *REM and last returning the drive to max speed
  95. METOD 12>cdspeed 1 1 0 s max
  96. CD Speed Changer V1.1  Copyright (C) 1998 Peter Hercek; See Version Resource.
  97. ASPI32 installed OK; Adapter count is: 2
  98. Speed should be set to 65535 KB/s
  99. METOD 13>
  100.  
  101. If you want to know more read ATAPI specification - it
  102. should be somewhere on Western digital ftp (or web).
  103.  
  104.