$ ./configure --build=sparc-sun-solaris2.6 $ make LANGUAGES=c CFLAGS="-O2" $ make stage1 $ make CC="stage1/xgcc -Bstage1/" CFLAGS="-O2" $ make stage2 $ make CC="stage2/xgcc -Bstage2/" CFLAGS="-O2" $ make compare
というように やたらとめんどくさいことが記載されていますが、 実際、 $ make stage1 の部分で失敗して、成功したためしがありません。
ふつうに $ ./configure $ make で問題なく出来上がったかのように見えるのですが いったい何が原因なのでしょうか。
====[ここまで]==================== 上のやつで以下のようにコマンドを入力する 1) make 2) make bootstrap 3) make aborn 1) と 3) は同じ結果 2) は別の結果になります man make で見てもらえばわかる(かも知れない)が、 make ってパラメータ指定なしの時は一番最初に出てきた パラメータを実行するんです。 #この場合は aborn これでわかったでしょうか?
#!/bin/sh POSTGRESDIR=/usr/local/pgsql if [ -x /usr/local/pgsql/bin/postmaster -a -d /usr/local/pgsql/data ];then rm -f /tmp/.s.PGSQL.5432 su -l - postgres -c "/usr/local/pgsql/bin/postmaster -S -i" echo -n 'PostgreSQL Service Started' fi
を置いたのですがログイン後、コマンドラインでpsql -lを実行すると
Connection to database 'template1' failed. connectDB() -- connect() failed: No such file or directory Is the postmaster running at 'localhost' and accepting connections on Unix socket '5432'?
rootから su postgres -c "/usr/local/pgsql/bin/postmaster -S -i" を実行すると起動できましたが、例えばtestユーザーから上記のコマンドを 実行すると、パスワードを要求してきます。
シーラカンス本の載っている自動起動スクリプトを書いているんですけど、psql -lのようなコマンドを実行すると Connection to database 'template1' failed. connectDB() -- connect() failed: No such file or directory Is the postmaster running at 'localhost' and accepting connections on Unix socket '5432'? というようなメッセージが表示されます。
どうすればpostmasterの自動起動が出来るのか、わかりませんか?
361 :359 :2001/02/26(月) 12:27
>>360 一般ユーザから su するとパスワード付きの場合は聞いてくるのがあたりまえだよ。 rc?.d で自動起動しようとしてるみたいだから、rootで実行してOKならそれで いいと思うよ。rc?.dの起動シェルを書き換えてリブートしてみそ。
if [ -x $POSTGRESDIR/bin/postmaster -a -d $POSTGRESDIR/data ];then rm -f /tmp/.s.PGSQL.5432 su - postgres -c "/opt/local/pgsql/bin/postmaster -S -i" echo -n 'PostgreSQL Service Started' fi
オレもつくづく暇人だよなぁ・・・。 if [ -x $POSTGRESDIR/bin/postmaster -a -d $POSTGRESDIR/data ];then を if [ -x $POSTGRESDIR/bin/postmaster -a -d $POSTGRESDIR/data ] then に、 su - postgres -c "/opt/local/pgsql/bin/postmaster -S -i" の行を su postgres -c "/opt/local/pgsql/bin/postmaster -S -i" と直してみれ。
if [ -x $POSTGRESDIR/bin/postmaster -a -d $POSTGRESDIR/data ] then rm -f /tmp/.s.PGSQL.5432 su postgres -c "/opt/local/pgsql/bin/postmaster -S -i" echo -n 'PostgreSQL Service Started' fi --------------------------------------------------------------
>>464, 470 Solaris7 な man eeprom から。↓は? -------- comX-noprobe Where X is the number of the serial port, prevents device probe on serial port X. # eeprom コマンド初めて使った...
>>500 それだと,root を full login した状態ですよね. su するユーザの環境変数を引き継ぎたいのです.
502 :500 :2001/03/25(日) 04:38
あああ、そうですね。-l と -m を勘違いしてました。 手抜きしないでちゃんとmanを読むと。
The following statements are true only if either /usr/bin/sh or NULL is named in the specified user's pass- word file entry. If the first argument to su is a ' - ' (dash), the environment is passed along unchanged, as if the user actually logged in as the specified user. Other- wise, the environment is passed along, with the exception of $PATH, which is controlled by PATH and SUPATH in etc/default/su.
説明不足ですいません。ノートパソコンなんでPCカードタイプじゃないと使えないんですが、HCLに乗ってるやつが売ってないんですよ。3COMのやつ。これ→EtherLink III PCMCIA (3C589、3C589B、3C589C、3C589D)。売っているところか、これも使えますよ情報もっている方教えてください。
> PC との相互運用性 > オプションの SunPCi[tm] II コプロセッサ・カードによって、 > Sun ワークステーション内で完全な Windows PC 環境を使用できます。 > アプリケーションを、 Solaris オペレーティング環境と Windows NT > プラットフォームの両方で同時に実行できます。このため、机の上に 2 つ > コンピュータを置く必要がなくなります。 だってよ
556 :名無しさん@お腹いっぱい。 :2001/04/08(日) 02:11
>>551 おれ、もってるよ、Oracle for intel 。 メディアキットをぷらっとで買ってきたんだ。 FTPであげようか? おれんちADSLだし。
>>619 ifconfig iprb0:1 dhcp startのほうはだめでした。 ifconfig: iprb0:1: interface dose not exist or cannot be managed using DHCP と出てしまいます。 /etc/hostsを書き換えるほうはなんか他のところに問題が出そうで… ループバックアドレスのところにnodenameを書いても問題ないんですか?
621 :616 :2001/04/15(日) 14:43
/etc/rcS.d/S30network.shとか、 /etc/rc2.d/S72inetsvc
とかに、dhcpの時に /etc/hostsにdhcpで取れた ipを書き込むところがある。 #Added by DHCP だったかな?
そこがうまくいってないんだか、なんだったか。 あんまり覚えていない
/sbin/ifconfig -a でiprb0のアドレス見て、 /etc/hostsとの違いをみてみて。
DHCPのリースが切れて、ip変わったときに 同じ状態になったことがある(昔
622 :名無しさん@お腹いっぱい。 :2001/04/15(日) 21:48
>>541 set promptchars="% "としてしばらくは快適なsuコマンド生活を送っていますが、たまにsuコマンドでルートになると何もプロンプトが表示されてないことがある。何でやねん。
質問します。 ちょっとした手違いから私のUltra30のHDをフォーマットされ、 それ以来、BootでもBoot CDROMでも必ず、 「The file just loaded does not appear to be executable」 というメッセージが出てくるようになってしまいました。 Boot時にRunレベルを設定してあげれば問題なく立ち上がります。
Solaris 8(Intel)で、ある日ふと気づいたら、 [CTRL]+[ALT]+[F*]で、仮想コンソールが切り替わらなくなっていました。 どこか設定をいじってしまったのでしょうか? 直前にやったことといえば、関係ないと思うけど、 GNU makeをファイル名makeのままでインストールしたことぐらいです。
#mount /dev/dsk/c0t0d0s0 /a #chroot /a /usr/sbin/drvconfig chroot: No such file or directory #chroot /a /usr/sbin/devlinks chroot: No such file or directory
>>830 CDEしか使っていなくても、Xとして OpenWindows を使っていることになるんですよね? ところで、なんで Solaris の X は OpenWindows というネーミングなんですか? Sunは Windows は嫌いなはずなのに、同じ発音が入っているのが すごい抵抗があるのは私だけでしょうか?
835 :名無しさん@お腹いっぱい。 :2001/05/22(火) 01:37
Based on your search of "Windows," the following was found:
RFC 675 Specification of Internet Transmission Control Program V. Cerf, Y. Dalal, C. Sunshine RFC 761 DoD standard Transmission Control Protocol J. Postel RFC 782 Virtual Terminal management model J. Nabielsky, A.P. Skelton RFC 793 Transmission Control Protocol J. Postel RFC 813 Window and Acknowledgement Strategy in TCP D.D. Clark RFC 909 Loader Debugger Protocol C. Welles, W. Milliken RFC 938 Internet Reliable Transaction Protocol functional and interface specification T. Miller RFC 965 Format for a graphical communication protocol L. Aguilar RFC 969 NETBLT: A bulk data transfer protocol D.D. Clark, M.L. Lambert, L. Zhang RFC 984 PCMAIL: A distributed mail system for personal computers D.D. Clark, M.L. Lambert RFC 993 PCMAIL: A distributed mail system for personal computers D.D. Clark, M.L. Lambert RFC 998 NETBLT: A bulk data transfer protocol D.D. Clark, M.L. Lambert, L. Zhang RFC 1005 ARPANET AHIP-E Host Access Protocol (enhanced AHIP) A. Khanna, A.G. Malis RFC 1008 Implementation guide for the ISO Transport Protocol W. McCoy RFC 1013 X Window System Protocol, version 11: Alpha update April 1987 R.W. Scheifler RFC 1016 Something a host could do with source quench: The Source Quench Introduced Delay (SQuID) W. Prue, J. Postel RFC 1030 On testing the NETBLT Protocol over divers networks M.L. Lambert RFC 1072 TCP extensions for long-delay paths V. Jacobson, R.T. Braden RFC 1077 Critical issues in high bandwidth networking B.M. Leiner RFC 1106 TCP big window and NAK options R. Fox RFC 1110 Problem with the TCP big window option A.M. McKenzie RFC 1122 Requirements for Internet Hosts - Communication Layers R. Braden, Ed. RFC 1127 Perspective on the Host Requirements RFCs R.T. Braden RFC 1144 Compressing TCP/IP headers for low-speed serial links V. Jacobson RFC 1147 FYI on a Network Management Tool Catalog: Tools for Monitoring and Debugging TCP/IP Internets and Interconnected Devices R.H. Stine RFC 1152 Workshop report: Internet research steering group workshop on very-high-speed networks C. Partridge RFC 1175 FYI on where to start: A bibliography of internetworking information K.L. Bowers, T.L. LaQuey, J.K. Reynolds, K. Roubicek, M.K. Stahl, A. Yuan RFC 1180 TCP/IP tutorial T.J. Socolofsky, C.J. Kale RFC 1185 TCP Extension for High-Speed Paths V. Jacobson, R.T. Braden, L. Zhang RFC 1203 Interactive Mail Access Protocol: Version 3 J. Rice RFC 1210 Network and infrastructure user requirements for transatlantic research collaboration: Brussels, July 16-18, and Washington July 24-25, 1990 V.G. Cerf, P.T. Kirstein, B. Randell RFC 1244 Site Security Handbook J.P. Holbrook, J.K. Reynolds RFC 1246 Experience with the OSPF Protocol J. Moy RFC 1254 Gateway Congestion Control Survey A. Mankin, K. Ramakrishnan RFC 1287 Towards the Future Internet Architecture D. Clark, L. Chapin, V. Cerf, R. Braden, R. Hobby RFC 1292 A Catalog of Available X.500 Implementations R. Lang, R. Wright RFC 1300 Remembrances of Things Past S. Greenfield RFC 1301 Multicast Transport Protocol S. Armstrong, A. Freier, K. Marzullo RFC 1309 Technical Overview of Directory Services Using the X.500 Protocol C. Weider, J. Reynolds, S. Heker RFC 1323 TCP Extensions for High Performance V. Jacobson, R. Braden, D. Borman RFC 1324 A Discussion on Computer Network Conferencing D. Reed
836 :名無しさん@お腹いっぱい。 :2001/05/22(火) 01:38
RFC 1325 FYI on Questions and Answers Answers to Commonly asked "New Internet User" Questions G. Malkin, A. Marine RFC 1330 Recommendations for the Phase I Deployment of OSI Directory Services (X.500) and OSI Message Handling Services (X.400) within the ESNET Community ESCC X.500/X.400 Task Force, ESnet Site Coordinating Committee (ESCC) RFC 1356 Multiprotocol Interconnect on X.25 and ISDN in the Packet Mode A. Malis, D. Robinson, R. Ullmann RFC 1381 SNMP MIB Extension for X.25 LAPB D. Throop, F. Baker RFC 1382 SNMP MIB Extension for the X.25 Packet Layer D. Throop RFC 1399 Summary of 1300-1399 J. Elliott RFC 1402 There's Gold in them thar Networks! or Searching for Treasure in all the Wrong Places J. Martin RFC 1431 DUA Metrics (OSI-DS 33 (v2)) P. Barker RFC 1456 Conventions for Encoding the Vietnamese Language VISCII: VIetnamese Standard Code for Information Interchange VIQR Vietnamese Standardization Working Group RFC 1463 FYI on Introducing the Internet-- A Short Bibliography of Introductory Internetworking Readings E. Hoffman, L. Jackson RFC 1470 FYI on a Network Management Tool Catalog: Tools for Monitoring and Debugging TCP/IP Internets and Interconnected Devices R. Enger, J. Reynolds RFC 1491 A Survey of Advanced Usages of X.500 C. Weider, R. Wright RFC 1502 X.400 Use of Extended Character Sets H. Alvestrand RFC 1514 Host Resources MIB P. Grillo, S. Waldbusser RFC 1579 Firewall-Friendly FTP S. Bellovin RFC 1580 Guide to Network Resource Tools EARN Staff RFC 1594 FYI on Questions and Answers - Answers to Commonly asked "New Internet User" Questions A. Marine, J. Reynolds, G. Malkin RFC 1614 Network Access to Multimedia Information C. Adie RFC 1616 X.400(1988) for the Academic and Research Community in Europe RARE WG-MSG Task Force 88, E. Huizer, J. Romaguera, Editors RFC 1632 A Revised Catalog of Available X.500 Implementations A. Getchell, S. Sataluri, Editors RFC 1645 Simple Network Paging Protocol - Version 2 A. Gwinn RFC 1663 PPP Reliable Transmission D. Rand RFC 1679 HPN Working Group Input to the IPng Requirements Solicitation D. Green, P. Irey, D. Marlow, K. O'Donoghue RFC 1689 A Status Report on Networked Information Retrieval: Tools and Groups J. Foster RFC 1693 An Extension to TCP : Partial Order Service T. Connolly, P. Amer, P. Conrad RFC 1698 Octet Sequences for Upper-Layer OSI to Support Basic Communications Applications P. Furniss RFC 1709 K-12 Internetworking Guidelines J. Gargano, D. Wasley RFC 1710 Simple Internet Protocol Plus White Paper R. Hinden RFC 1739 A Primer On Internet and TCP/IP Tools G. Kessler, S. Shepard RFC 1742 AppleTalk Management Information Base II S. Waldbusser, K. Frisa
837 :名無しさん@お腹いっぱい。 :2001/05/22(火) 01:39
RFC 1759 Printer MIB R. Smith, F. Wright, T. Hastings, S. Zilles, J. Gyllenskog RFC 1760 The S/KEY One-Time Password System N. Haller RFC 1795 Data Link Switching: Switch-to-Switch Protocol AIW DLSw RIG L. Wells, Chair, A. Bartky, Editor RFC 1813 NFS Version 3 Protocol Specification B. Callaghan, B. Pawlowski, P. Staubach RFC 1815 Character Sets ISO-10646 and ISO-10646-J-1 M. Ohta RFC 1842 ASCII Printable Characters-Based Chinese Character Encoding for Internet Messages Y. Wei, Y. Zhang, J. Li, J. Ding, Y. Jiang RFC 1855 Netiquette Guidelines S. Hambridge RFC 1861 Simple Network Paging Protocol - Version 3 -Two-Way Enhanced A. Gwinn RFC 1910 User-based Security Model for SNMPv2 G. Waters RFC 1922 Chinese Character Encoding for Internet Messages HF. Zhu, DY. Hu, ZG. Wang, TC. Kao, WCH. Chang, M. Crispin RFC 1941 Frequently Asked Questions for Schools J. Sellers, J. Robichaux RFC 1942 HTML Tables D. Raggett RFC 1945 Hypertext Transfer Protocol -- HTTP/1.0 T. Berners-Lee, R. Fielding, H. Frystyk RFC 1947 Greek Character Encoding for Electronic Mail Messages D. Spinellis RFC 2001 TCP Slow Start, Congestion Avoidance, Fast Retransmit, and Fast Recovery Algorithms W. Stevens RFC 2007 Catalogue of Network Training Materials J. Foster, M. Isaacs, M. Prior RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1 R. Fielding, J. Gettys, J. Mogul, H. Frystyk, T. Berners-Lee RFC 2083 PNG (Portable Network Graphics) Specification Version 1.0 T. Boutell RFC 2116 X.500 Implementations Catalog-96 C. Apple, K. Rossen RFC 2123 Traffic Flow Measurement: Experiences with NeTraMet N. Brownlee RFC 2140 TCP Control Block Interdependence J. Touch RFC 2147 TCP and UDP over IPv6 Jumbograms D. Borman RFC 2150 Humanities and Arts: Sharing Center Stage on the Internet J. Max, W. Stickle RFC 2151 A Primer On Internet and TCP/IP Tools and Utilities G. Kessler, S. Shepard RFC 2179 Network Security For Trade Shows A. Gwinn RFC 2194 Review of Roaming Implementations B. Aboba, J. Lu, J. Alsop, J. Ding, W. Wang RFC 2244 ACAP -- Application Configuration Access Protocol C. Newman, J. G. Myers RFC 2259 Simple Nomenclator Query Protocol (SNQP) J. Elliott, J. Ordille RFC 2264 User-based Security Model (USM) for version 3 of the Simple Network Management Protocol (SNMPv3) U. Blumenthal, B. Wijnen RFC 2274 User-based Security Model (USM) for version 3 of the Simple Network Management Protocol (SNMPv3) U. Blumenthal, B. Wijnen RFC 2345 Domain Names and Company Name Retrieval J. Klensin, T. Wolf, G. Oglesby RFC 2361 WAVE and AVI Codec Registries E. Fleischman RFC 2388 Returning Values from Forms: multipart/form-data L. Masinter RFC 2401 Security Architecture for the Internet Protocol S. Kent, R. Atkinson
838 :名無しさん@お腹いっぱい。 :2001/05/22(火) 01:39
RFC 2414 Increasing TCP's Initial Window M. Allman, S. Floyd, C. Partridge RFC 2433 Microsoft PPP CHAP Extensions G. Zorn, S. Cobb RFC 2481 A Proposal to add Explicit Congestion Notification (ECN) to IP K. Ramakrishnan, S. Floyd RFC 2488 Enhancing TCP Over Satellite Channels using Standard Mechanisms M. Allman, D. Glover, L. Sanchez RFC 2525 Known TCP Implementation Problems V. Paxson, M Allman, S. Dawson, W. Fenner, J. Griner, I. Heavens, K. Lahey, J. Semke, B. Volz RFC 2534 Media Features for Display, Print, and Fax L. Masinter, D. Wing, A. Mutz, K. Holtman RFC 2548 Microsoft Vendor-specific RADIUS Attributes G. Zorn RFC 2549 IP over Avian Carriers with Quality of Service D. Waitzman RFC 2550 Y10K and Beyond S. Glassman, M. Manasse, J. Mogul RFC 2567 Design Goals for an Internet Printing Protocol F. Wright RFC 2569 Mapping between LPD and IPP Protocols R. Herriot, Ed., T. Hastings, N. Jacobs, J. Martin RFC 2574 User-based Security Model (USM) for version 3 of the Simple Network Management Protocol (SNMPv3) U. Blumenthal, B. Wijnen RFC 2581 TCP Congestion Control M. Allman, V. Paxson, W. Stevens RFC 2586 The Audio/L16 MIME content type J. Salsman, H. Alvestrand RFC 2588 IP Multicast and Firewalls R. Finlayson RFC 2616 Hypertext Transfer Protocol -- HTTP/1.1 R. Fielding, J. Gettys, J. Mogul, H. Frystyk, L. Masinter, P. Leach, T. Berners-Lee RFC 2624 NFS Version 4 Design Considerations S. Shepler RFC 2626 The Internet and the Millennium Problem (Year 2000) P. Nesser II RFC 2637 Point-to-Point Tunneling Protocol K. Hamzeh, G. Pall, W. Verthein, J. Taarud, W. Little, G. Zorn RFC 2640 Internationalization of the File Transfer Protocol B. Curtin RFC 2675 IPv6 Jumbograms D. Borman, S. Deering, R. Hinden RFC 2683 IMAP4 Implementation Recommendations B. Leiba RFC 2701 Nortel Networks Multi-link Multi-node PPP Bundle Discovery Protocol G. Malkin RFC 2707 Job Monitoring MIB - V1.0 R. Bergman, T. Hastings, S. Isaacson, H. Lewis RFC 2708 Job Submission Protocol Mapping Recommendations for the Job Monitoring MIB R. Bergman RFC 2757 Long Thin Networks G. Montenegro, S. Dawkins, M. Kojo, V. Magret, N. Vaidya RFC 2759 Microsoft PPP CHAP Extensions, Version 2 G. Zorn RFC 2760 Ongoing TCP Research Related to Satellites M. Allman, S. Dawkins, D. Glover, J. Griner, D. Tran, T. Henderson, J. Heidemann, J. Touch, H. Kruse, S. Ostermann, K. Scott, J. Semke RFC 2790 Host Resources MIB S. Waldbusser, P. Grillo RFC 2816 A Framework for Integrated Services Over Shared and Switched IEEE 802 LAN Technologies A. Ghanwani, J. Pace, V. Srinivasan, A. Smith, M. Seaman RFC 2839 Internet Kermit Service F. da Cruz, J. Altman RFC 2861 TCP Congestion Window Validation M. Handley, J. Padhye, S. Floyd RFC 2884 Performance Evaluation of Explicit Congestion Notification (ECN) in IP Networks J. Hadi Salim, U. Ahmed RFC 2896 Remote Network Monitoring MIB Protocol Identifier Macros A. Bierman, C. Bucci, R. Iddon RFC 2936 HTTP MIME Type Handler Detection D. Eastlake, C. Smith, D. Soroka RFC 2971 IMAP4 ID extension T. Showalter RFC 2972 Context and Goals for Common Name Resolution N. Popp, M. Mealling, L. Masinter, K. Sollins RFC 2988 Computing TCP's Retransmission Timer V. Paxson, M. Allman
839 :名無しさん@お腹いっぱい。 :2001/05/22(火) 01:40
RFC 3002 Overview of 2000 IAB Wireless Internetworking Workshop D. Mitzel RFC 3010 NFS version 4 Protocol S. Shepler, B. Callaghan, D. Robinson, R. Thurlow, C. Beame, M. Eisler, D. Noveck RFC 3017 XML DTD for Roaming Access Phone Book M. Riegel, G. Zorn RFC 3023 XML Media Types M. Murata, S. St.Laurent, D. Kohn RFC 3027 Protocol Complications with the IP Network Address Translator M. Holdrege, P. Srisuresh RFC 3049 TN3270E Service Location and Session Balancing J. Naugle, K. Kasthurirangan, G. Ledford RFC 3050 Common Gateway Interface for SIP J. Lennox, H. Schulzrinne, J. Rosenberg RFC 3074 DHC Load Balancing Algorithm B. Volz, S. Gonczi, T. Lemon, R. Stevens RFC 3079 Deriving Keys for use with Microsoft Point-to-Point Encryption (MPPE) G. Zorn RFC 3081 Mapping the BEEP Core onto TCP M. Rose-------------------------------------------------------------------------------- Send mail to the RFC-Editor about the search engine Go to the RFC Search Engine Go to home page
Funding for the RFC Editor function is currently provided by the Internet Society.
formatで選択できるようにはなったのですが、drive type unknownとなります。 そこでCHS等をドライブの表記通り次のように設定しました。 Enter number of data cylinders : 16381 Enter number of altaernate cylinders[2]: 2 Enter number of physical cylinders[16383]: 16383 Enter number of heads: 16 Enter number of data sectors/track:63 Enter rpm of drive[3600]: 7200 :この間はデフォルト値 Enter disk type name (remember quotes): ibm
しかし、formatコマンド内でcurrentサブコマンドを実行してみると <ibm cyl 53037 alt 2 hd 16 sec 63> と表示され、シリンダ数が違ってしまっています。 構わずformatしようとしても Cannot format this drive. Please use your Manufacturer supplied formatting utility. と言われます。 どうすれば良いのでしょうか。
Solaris8IAでXをXFree86にして使っているんですがprodregとかでJava系のGUIが立ち上がるときフォントエラーが出ます。 下に書いた感じの奴。 Font specified in font.properties not fond [-b&h-lucida sans-medium-r-normal-sans-*-%d-*-*-iso8859-1] こんなのが何行も出力されてきてうざい。 たまに文字が化けて□になってたりもする。 何が原因なのでしょうか? 解決策をご存知の方いらっしゃいましたら教えてください。
>>962 BIOSでの選択肢は以下の3つです。 cyl 3328 hd 255 sec 63 LBA cyl 53040 hd 16 sec 63 NORMAL cyl 6630 hd 128 sec 63 LARGE 残りの2つについても試してみましたが、NORMALではcylindersで "53038" is out of range. と言われてしまい、LARGEではheadsで "128" is out of range. と言われてみました。 NORMALでドライブ表記のCHSも試してみましたが、LBAの時と同じ症状でした。