Difference between revisions of "Boot-parameters"

From Bashlinux
Jump to: navigation, search
 
(Redirected page to Boot parameters)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  +
#REDIRECT [[Boot parameters]]
__NOTOC__
 
= Boot Parameters =
 
== SCSI Hard drive not present ==
 
This issue is more related to SCSI raid on servers, and an indication that it is happening is the following message at boot time, just after grub is launched.
 
 
<pre><nowiki>
 
Volume group "VolGroup00" not found
 
</nowiki></pre>
 
 
The way to fix this issue is adding to the kernel the `scsi_mod.scan=sync` parameter.
 
 
== Serial ports available ==
 
By default, only 4 serial ports are present on linux, known as `/dev/ttyS[0-3]`, but it happens that some times is necessary to handle more ports in order to reach any other devices hooked on such ports.
 
 
Before tell the kernel how many port it should mount, it will be necessary to copy from BIOS the `port` and `IRQ` for the needed ports.
 
 
Then we need to ensure that new serial ports are being set properly on boot time, it could be done by adding the command following command to `/etc/rc.local` file:
 
 
<pre><nowiki>
 
setserial /dev/ttySn irq N port 0xDDDD uart 16550A baud_base 115200
 
</nowiki></pre>
 
 
Where:
 
* `ttySn` is the port to be set
 
* `N` is the IRQ number
 
* `0xDDDD` is the port in four digits format
 
 
Also the speed could be modified in order to accomplish the device requirements.
 
 
To add more ports add to the kernel the `8250.nr_uarts=N` parameter, where `N` is the total desired amount of ports available.
 
 
== AMD Graphic card doesn't come up on boot ==
 
On AMD Geode LX based terminals, the graphic card doesn't works with the standard frame buffer driver, that means the parameters `xdriver=vesa vga=792` won't work, or maybe yes but soonest will turn blank the screen and stop to work.
 
 
To solve this issue on AMD Geode terminals add to the kernel the `lxfb.mode_option=1024x768` parameter. ''1024x768'' could be changed to match the size of current monitor.
 

Latest revision as of 17:43, 9 June 2015

Redirect to: