最終更新:2023-01-04 (水) 11:43:20 (479d)  

console
Top / console

JavaScript

メモ

メソッド

機能の確認

for (var p in console) {
  console.log('console.' + p + '() is supported!');
}

関連

参考

カーネルパラメータ

  • Linux/console
  • console=tty02,115200n8
    console=	[KNL] Output console device and options.
    
    	tty<n>	Use the virtual console device <n>.
    
    	ttyS<n>[,options]
    	ttyUSB0[,options]
    		Use the specified serial port.  The options are of
    		the form "bbbbpnf", where "bbbb" is the baud rate,
    		"p" is parity ("n", "o", or "e"), "n" is number of
    		bits, and "f" is flow control ("r" for RTS or
    		omit it).  Default is "9600n8".
    
    		See Documentation/serial-console.txt for more
    		information.  See
    		Documentation/networking/netconsole.txt for an
    		alternative.
    
    	uart[8250],io,<addr>[,options]
    	uart[8250],mmio,<addr>[,options]
    		Start an early, polled-mode console on the 8250/16550
    		UART at the specified I/O port or MMIO address,
    		switching to the matching ttyS device later.  The
    		options are the same as for ttyS, above.
    
                If the device connected to the port is not a TTY but a braille
                device, prepend "brl," before the device type, for instance
    		console=brl,ttyS0
    	For now, only VisioBraille is supported.