Tagged Questions
3
votes
1answer
51 views
Does the vmlinux header contain the length of the kernel image?
I am trying to disassemble a compound file that consists of several parts, one of which is an uncompressed kernel sandwiched between several other files. I am trying to find the exact length of the ...
1
vote
1answer
58 views
How to access u boot environment from linux?
How can I access and change the u-Boot env variables in linux. Using the u-boot/tools/env directory in u boot directory:
u-boot$ make env
Which created the executable file fw_printenv. I copied ...
5
votes
1answer
132 views
Running one OS per core
I'm interested in using a COTS board like the Wandboard for a project. On one hand I'd like to use something like Ubuntu for user interaction, sounds, TCP/IP stuff, etc. But I also need an RTOS like ...
2
votes
2answers
113 views
Where to find the VBR on the /dev/sda1 partition?
I have one built-in hard disk /dev/sda which looks like this:
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * ...
0
votes
1answer
72 views
Grub with two hard drives
I am trying to install Mint14 on my machine having two hard drives :
Samsung SSD PM830 SATA : 128 Gb ( sda ) - Windows 7 (i want to keep this)
ST9500423AS ATA : 500 Gb ( sdb ) - ...
3
votes
1answer
185 views
How can Linux detect automatically if kernel must boot on dev hdc or hda
I have an industrial PC mounting Linux.
These PC is delivered in two version, each with slightly different internal board and depending on the board type the disk inside the PC is see as hda or hdc.
...
2
votes
1answer
124 views
Chain loading kernel without a boot loader
I am working on an embedded project that will do in-place upgrades. There may come a time when an upgrade will need to reinstall everything. Since this is a pretty risky thing, I would like to have ...
1
vote
0answers
72 views
Change terminal resolution on Whiite (Wii Linux)
Is there a way to change the terminal resolution in Whiite (Linux for Wii)? All the answers I can find suggest editing grub configuration, but Whiite uses a custom bootloader instead of grub.
0
votes
1answer
158 views
What is the best procedure for setting up a triple-boot system?
I have a machine that I wish to install 3 operating systems on. The systems are, in no particular order, Windows 8, Ubuntu, and Backtrack Linux. Is there some document or step-by-step guide to the ...
3
votes
1answer
210 views
How to run a bootloader from Linux?
I want to reboot from Linux to another system (a bootable CD for my current need).
I don't want to modifiy the current bootloader, nor to modify BIOS settings.
Some Linux CD can be run from Windows ...
3
votes
2answers
210 views
Is it possible for a CentOS system on EC2 to not have a bootloader?
I'm attempting to look for grub:
[root /]# find / -iname "*grub*"
/sbin/grubby
/usr/share/man/man8/grubby.8.gz
/usr/share/vim/vim70/syntax/grub.vim
/usr/share/vim/vim70/ftplugin/grub.vim
...
1
vote
2answers
536 views
Fresh Linux (Debian and CentOS) installation will not boot
I am trying to install either Debian or CentOS on a home server (Fujitsu PRIMERGY TX100 S3). I first tried installing Debian. The whole installation was successful (including grub). But after ...
5
votes
1answer
205 views
Should I use LILO or GRUB or other?
I am making a netinstall DVD which will have netinstall for 10 different Linux distros on it. I will need to install a bootloader on the disk so I can choose which distro I want to install.
Which is ...
0
votes
2answers
153 views
Prevent GRUB from showing up by default?
Whenever I boot on Ubuntu, I see the entire GRUB menu by default. Is there a way I could make it simply auto-boot if uninterrupted within X seconds? I remember that this was the case on previous ...
10
votes
4answers
1k views
Please explain Linux boot sequence in detail
I am preparing a document in detail showing light on the boot sequence of Linux right from pressing of Power-on button the host to the login prompt appearance.
It would be great if we could combine ...
2
votes
1answer
210 views
Preparing a Linux image in a virtual machine
I am trying to set up a system to prepare a Linux system on a virtual machine and then deploy it onto an SD card. The target system has an Atom processor, so there aren't architecture compatibility ...
0
votes
2answers
789 views
Boot Linux from UEFI BIOS
I'm porting UEFI BIOS. I'd like to download an Linux image (bzImage) to system memory by TFTP in my UEFI shell, and then boot the OS directly. I know we generally need another bootloader to do that. ...