Questions tagged [boot]

Booting is the initial set of operations that a computer system performs when electrical power is switched on. The process begins when a computer that has been turned off is re-energized, and ends when the computer is ready to perform its normal operations.

Booting (also known as booting up) is the initial set of operations that a computer system performs when electrical power is switched on. The process begins when a computer that has been turned off is re-energized, and ends when the computer is ready to perform its normal operations. On modern general purpose computers, this can take tens of seconds and typically involves performing power-on self-test, locating and initializing peripheral devices, and then finding, loading and starting an operating system. Many computer systems also allow these operations to be initiated by a software command without cycling power, in what is known as a soft reboot, though some of the initial operations might be skipped on a soft reboot. A boot loader is a computer program that loads the main operating system or runtime environment for the computer after completion of self-tests.

The computer term boot is short for bootstrap or bootstrap load and derives from the phrase to pull oneself up by one's bootstraps. The usage calls attention to the paradox that a computer cannot run without first loading software but some software must run before any software can be loaded. Early computers used a variety of ad-hoc methods to get a fragment of software into memory to solve this problem. The invention of integrated circuit Read-only memory (ROM) of various types solved the paradox by allowing computers to be shipped with a start up program that could not be erased, but growth in the size of ROM has allowed ever more elaborate start up procedures to be implemented.

1085 questions
16
votes
4 answers

Booting a native Windows install in Virtualbox: is it possible?

I am looking for something similiar to Bootcamp. Currently, I run Ubuntu Maveric as my primary operating system and run Windows 7 in Virtualbox. For some tasks, however, running Windows virtualized just seems to result in too much overhead and…
Aron Rotteveel
  • 8,449
  • 17
  • 53
  • 64
16
votes
4 answers

How to change Linux services startup/boot order?

As the question is clear from the title, how do I change Linux services startup/boot order?
Gnanam
  • 1,459
  • 13
  • 26
  • 32
15
votes
2 answers

Is there a way to create a "one-time" boot entry in grub?

I have the following issue: I have a small server (Debian based) to which I can connect remotely (VPN/SSH connection). Now I want to change some boot options (in fact I want to migrate my root file system to another partition) and therefore I have…
Christian Wolf
  • 308
  • 3
  • 9
13
votes
1 answer

combine partitions to one disk image

I have 3 images. Each image was done by cloning (by dd) a partition (these partitions formatted using ext3 file system). One partition is boot-able with GRUB1 (CentOS) How can I combine them to one disk image? (I can copy the partitions images using…
Dima
  • 485
  • 3
  • 7
  • 15
13
votes
9 answers

How to repair/restore ubuntu 10.04 after 'sudo chmod / 777'

See Also: Why is “chmod -R 777 /” destructive? I changed file permissions recursively on the root directory / by executing sudo chmod -R / 777, and after that my system won't boot (I'm getting a lot of "permission denied" errors). Please help.
Marcin
  • 147
  • 1
  • 1
  • 3
13
votes
3 answers

Finding how a Linux system was booted

I have a remote server, running Linux 5.19.0-41-generic x86_64, I am trying to find out how it was booted. Apparently, it does not use systemd : PID 1 process is bash. ps -p 1 -o comm= bash Apparently, there is no GRUB, at least there is none in…
0x11111
  • 131
  • 3
12
votes
5 answers

How do I mount sshfs at boot?

Using a NAS box as 24/7 file server, I'd like to use sshfs to connect to it from an Ubuntu 9.04 desktop. Currently, I have this line in the desktop's fstab: sshfs#jldugger@storage:/mnt/HD_a2/ /mnt/storage fuse …
jldugger
  • 14,342
  • 20
  • 77
  • 129
12
votes
1 answer

How to use systemd-firstboot.service?

I'm making an image of Debian Jessie. On boot the system has no /etc/machine-id file. This causes some problems with the journald that doesn't start. I've found that in the systemd repo: # This file is part of systemd. # # systemd is free…
Velkan
  • 344
  • 3
  • 19
12
votes
2 answers

Bootrec /FIXBOOT vs Bootrec /FIXMBR

According to Microsoft here is what Bootrec /FIXBOOT does: "This option writes a new boot sector to the system partition by using a boot sector that's compatible with Windows Vista or Windows 7" And this is what Bootrec /FIXMBR does: "This option…
red888
  • 4,183
  • 18
  • 64
  • 111
12
votes
2 answers

How to remove old kernels on CentOS 6 (to free up boot partition)?

How does one determine which kernels to remove in order to free up some space on /boot partition. Here is a scenario (some background info). 1. Parititon info (in case it helps) # df -h Filesystem Size Used Avail Use% Mounted on ... /dev/sda1 …
Shef
  • 284
  • 1
  • 3
  • 10
11
votes
1 answer

Increase disk detection timeout at boot with Linux/Systemd

I have a machine with a lot of disks, and an extra SAS controller in HBA mode. This seems to cause Linux to think for at least 8-10 seconds once in initramfs before the disks actually appear. The timeout for disk detection is 10 seconds. This…
Alex
  • 389
  • 9
  • 23
11
votes
2 answers

Dual boot from USB flash drive?

Is it possible to dual boot from a USB flash drive? Also is it possible to boot the operating system from an ISO image (like the Ubuntu Live CD)? How would you go about doing this and what software would be needed?
Tim Wardle
  • 383
  • 1
  • 5
  • 9
11
votes
2 answers

IBM Server takes a long time to boot past UEFI to OS

I have a pair of IBM System x3620 servers. These servers do fine once they finally reach the point where the operating system takes over, but it takes them forever to get past the new-fangled UEFI boot system... a good five minutes or so; maybe…
Joel Coel
  • 12,932
  • 14
  • 62
  • 100
10
votes
1 answer

What is the start order of services in Windows server

I have a Windows Service which is working fine in most of the servers. But in one server, I see that it starts before the network services are started. This is causing the services to hang and as a result OS is not booting up. It also gets stuck.…
AnOldSoul
  • 409
  • 1
  • 4
  • 8
10
votes
3 answers

Can PXE boot of Hyper-V VMs be disabled?

Hyper-V virtual machines have the ability to PXE boot. Obviously, PXE boot raises some security concerns. The problem is, unlike a typical physical machine's firmware, there isn't an obvious way to disable PXE boot altogether. Hyper-V manager…
alx9r
  • 1,643
  • 3
  • 17
  • 38
1
2
3
72 73