Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
7k views

How to start Solr automatically?

At the moment I have to go to /usr/java/apache-solr-1.4.0/example and then java -jar start.jar Any ideas how to get this to start automatically on boot? Im on a shared linux server. Cheers
10
votes
3answers
899 views

What information does BIOS load into RAM?

I know that, on booting, BIOS loads the first sector (512 bytes) of a pre-defined device drive on memory 0x7c00 and then jump to that address. So, memory from 0x7c00 to 0x7dff is occupied. Is there ...
10
votes
8answers
4k views

Linux - files and scripts that execute on boot

If I want to make something run on startup on Linux, where is the preferred place to put things? I would like a description of each script or file that is executed at boot, and that script or file's ...
9
votes
4answers
581 views

Execution without OS

How do you compile a C program in to a valid ELF format(or RAW format) so that it can be executed directly from RAM without any OS? Assume that a bootloader exists which is capable of loading the code ...
7
votes
4answers
342 views

How do I know if a system has powered on?

I am writing a script that powers on a system via network. And then i need to run a few commands on the other host. How do I know whether the system has powered on? My programming language is Perl ...
6
votes
1answer
65 views

Accessing stdin during systemd boot

I have a script which solicits a numeric input from the user while booting the computer. The computer is running Fedora 16. It used work, on Fedora 13, but after the upgrade read INTEGER returns ...
6
votes
3answers
126 views

How does bootstrapping work for gcc?

I was looking up the pypy project (Python in Python), and started pondering the issue of what is running the outer layer of python? Surely, I conjectured, it can't be as the old saying goes "turtles ...
6
votes
3answers
150 views

is there a way to boot code written in a managed language?

The question says it all. Can I compile C# to native code and boot it? I know of Cosmos and Singularity, but I was wondering if there are more recent techniques or tools. Thanks.
6
votes
2answers
554 views

How do I debug a slow rails app boot time?

Our rails app is nice and fast once it is loaded but the startup is brutally slow. Console, passenger etc all take almost 10 seconds to kick in. Seems to be way more than it should be. What tools ...
6
votes
5answers
234 views

How do the visually impared handle boot failures and other low-level environments

I know that screen readers and similar software exists to help the blind and visually impaired to use computers when in Windows or other operating systems. I am curious as to what support is ...
6
votes
7answers
122 views

State of Registers After Bootup

This is a low level question. For a little bit of context, I'm working on a boot loader on an x86 machine. When the BIOS copies the contents of the MBR to 0x7c00 and jumps to that address, is there a ...
5
votes
2answers
433 views

My OS Kernel in D: Some embedded strings don't work

I'm aware that is a rather difficult question to answer, mainly because there's so many things that could be wrong that it's hard to pin things down. But I'll give as much info as I can; hopefully ...
5
votes
6answers
1k views

Best/Easy way to set up a quick booting Linux

Hopefully this still falls within StackOverflow's umbrella! I'm looking to create a quick boot linux laptop for my wife. All it really needs is to be able to do is browse the internet (with flash and ...
5
votes
6answers
477 views

How do I prevent two OSes from clobbering grub files?

I want to install Linux and OpenSolaris on the same hard disk in different partitions. I'm worried because OpenSolaris seems to actively manage the grub data when updating the OS (part of the "boot ...
4
votes
2answers
173 views

Boot/ScreenOn Broadcast Receiver not working

I have a blank HelloWorld Application: package tutorials.TestReceivers; import android.app.Activity; import android.os.Bundle; public class TestReceiversActivity extends Activity { /** Called ...
4
votes
1answer
576 views

How to turn off Windows kernel debugging at boot time?

I have a Vista 32 bit machine which I wanted to enable local kernel debugging on. In WinDbg I selected File/Kernel Debug and selected the Local tab and clicked ok. I got the following message. The ...
4
votes
3answers
557 views

How to detect cold boot versus warm boot on an ARM processor?

I'm looking for a way to determine whether an ARM processor is booting from a cold boot (i.e. initial power-on) versus a warm boot (i.e. reset assertion without actual power loss). Specifically I'm ...
4
votes
4answers
1k views

Flow of Startup code in an embedded system , concept of boot loader?

I am working with an embedded board , but i don't know the flow of the start up code(C/assembly) of the same. Can we discuss the general modules/steps acted upon by the start up action in the case of ...
4
votes
4answers
159 views

Identify a reboot

Is there any "Boot session ID" or (reliable) "Boot timestamp"? For an installation I need to detect that a scheduled reboot took place indeed. I guess I could do a dummy MoveFileEx() with ...
4
votes
5answers
405 views

Arguments to kernel

Is there anything that the kernel need to get from the boot loader.Usually the kernel is capable of bringing up a system from scratch, so why does it require anything from boot-loader? I have seen ...
3
votes
1answer
43 views

Bootstrapping linux

I am trying to boot linux kernel by writing a boot loader myself, but dont know how to load the kernel. All are saying to use int 13h to load sector from hard disk to memory. Which sector should be ...
3
votes
2answers
50 views

How to determine the booting device

again I have a question that is not so easily googlable. Let's assume BIOS has loaded my bootloader from designated device, how do I now find out which device it is so I can load the rest of my os ...
3
votes
1answer
118 views

Boot Android kernel in an emulated environment on-device

I am trying to compile a newer Android kernel on my phone. The problem is it ends up in a boot loop without any means to access error messages. I can compile an older version of the kernel wich runs ...
3
votes
1answer
762 views

Android - How to start an application on the /sdcard after boot

Is there a way how to start and android application after a boot automatically if it is on the /sdcard? Ok, probably by BroadcastReceiver. But which action is the right one? ACTION_BOOT_COMPLETED - ...
3
votes
4answers
234 views

How to ensure android is always powered on?

I have a project requirement which requires android to be always powered on with service running in background. While I can handle service part, as from 2.2 by using START_STICKY, still there is no ...
3
votes
2answers
45 views

Dealing with bugs that only appear right after boot

I dealt with a bug today that only appeared when I ran my program right after booting my computer. The cold start exposed a race condition which triggered the bug. I managed to fix it, but it took a ...
3
votes
2answers
181 views

Is there a way to determine the time taken from power on to Windows starting

I would like to be able to tell how long it takes to get from power on to windows starting. Is there a way of determining this retrospectively (ie once windows has started)? Does the BIOS/CMOS hold a ...
3
votes
1answer
215 views

Theory behind bootloader

I have downloaded few bootloaders from osdev and successfully loaded a kernel. But now I want to learn theory behind bootloader. I want to know why the system boots up and everything behind the ...
3
votes
1answer
295 views

how multicore processors boot?

talking in very low level, how the cores are initialized ?
3
votes
1answer
1k views

Develop a Bootloader In Assembly

I've already done a part of my OS in Assembly, but now I want to build a own bootloader for it too instead of using GRUB. When I was developing my test OS in Assembly I remember that I boot it like ...
3
votes
6answers
463 views

Basic OS boot question

I have some kinda basic question to the boot process of a computer and the part where the bootloader calls the OS. So I know that the BIOS copies the first 512 bytes from a bootable drive into memory ...
3
votes
1answer
393 views

How do I reserve low memory (pre OS)?

Background: I need to reserve an amount of memory below 0xA0000 prior to my operating system starts. To do this I change the 0040:0013 (or 0x413) word which is the amount of low memory available in ...
2
votes
1answer
56 views

booting linux on harvard architecture

I was working on pandaboard, when this problem occurred to me. pandaboard uses OMAP 4430, a harvard based architecture. The board has 1GB memory (DDR2 ram). But a harvard architecture requires two ...
2
votes
5answers
78 views

after bootup,crashing

My application is using a bootup service.In the service i have to get values from a database,but the app is crashing as it tries getting the values... The logcat error is listed below........... ...
2
votes
1answer
125 views

Detect if HTC “Fast boot” is enabled

Some HTC phones have a feature called Fast boot (can be enabled under Preferences -> Power). As I have understood it this works like hibernation. When started again no BOOT_COMPLETEDetc. will be ...
2
votes
2answers
74 views

Reading boot sector of a FAT32 file system

I am writing a program and I need to access some information in the boot sector about the FAT32 file system that I have mounted. Here is what I did, fully commented. int main (void) { unsigned ...
2
votes
1answer
64 views

Android - Intent declaration crashing my app on boot

I have an app with : an activity class that allows the user to set multiple alarms. a service class to manage those alarms in the background. a receiver class to do certain work when the alarm is ...
2
votes
1answer
48 views

Difference between boot0.S and mbr.S in FreeBSD

I'm reading source code of FreeBSD and found that they have 2 files which may be used to create MBR - sys/boot/i386/boot0/boot0.S and sys/boot/i386/mbr/mbr.S. From current my understanding boot0.S is ...
2
votes
1answer
111 views

How to get bootstrapped p-values and bootstrapped t-values and how does the function boot() work?

I would like to get the bootstrapped t-value and the bootstrapped p-value of a lm. I have the following code (basically copied from a paper) which works. # First of all you need the following ...
2
votes
2answers
302 views

Run script with rc.local: script works, but not at boot

I have a node.js script which need to start at boot and run under the www-data user. During development I always started the script with: su www-data -c 'node /var/www/php-jobs/manager.js I saw ...
2
votes
3answers
101 views

Choose activity on Boot

I am making an app in which i want to set my main activity i.e. on boot of phone my app should check that if there is a specific file in sdcard then it should move to another activity. Any help will ...
2
votes
1answer
74 views

What kind of knowledge is required to program a simple safe working boot sector?

I know knowledge of assembly is the very first thing needed (which I have), and I also know that Boot Sector code tells the processor to boot/execute a program (or OS), but what I don't is the HOW of ...
2
votes
1answer
822 views

Server drops to dracut debug shell after upgrading from Fedora 14 to 15

I have just upgraded to Fedora 15 using PreUpgrade. In particular, I did sudo yum update sudo yum install preupgrade sudo preupgrade-cli "Fedora 15 (Lovelock)" When it told me to do so, I have ...
2
votes
2answers
137 views

udev: device connected at boot time

I'm using udev to detect USB drive connection and disconnection on my Ubuntu 10.04 LTS x64 server. Everything works fine when USB devices are connected while the machine is running, but if one is ...
2
votes
3answers
182 views

initrd and booting the Linux kernel

As I understand, initrd is a small image that is loadable in the RAM. It is used to boot a complete kernel with all the loadable modules. As part of the process, we need the vmlinuz kernel image which ...
2
votes
1answer
806 views

What is the booting process for ARM?

As we know, for X86 architecture: After we press the power button, machine starts to execute code at 0xFFFFFFF0, then it starts to execute code in BIOS in order to do hardware initialization. After ...
2
votes
2answers
175 views

Passing Linux boot opts to Init

I would like to pass some parameters to a customized Linux init via the boot options configured in the bootloader at boot. I've written test init's in both Python and C. The Python version is able ...
2
votes
3answers
325 views

Do normal x86 or AMD PCs run startup/BIOS code directly from ROM, or do they copy it first to RAM?

I understand modern computers have modified Harvard architectures. Can the fact that they can read instructions from somewhere other than where they hold data allow them to fetch instructions ...
2
votes
1answer
191 views

Boot a physical machine directly from a virtual image

I have been searching for a way to boot a physical machine from a virtual image (.vhd or .vmdk). I found solutions using the loader that Microsoft provides with windows 7, but that is not of much real ...
2
votes
2answers
393 views

Get python script to run on boot up in mac

How would I get a python script to run everytime the computer boots?

1 2 3 4 5