Showing posts with label boot. Show all posts
Showing posts with label boot. Show all posts

Trick to Speed Up Windows 7 and Vista Boot Up

Speed Up Windows 7 and Vista Boot Up
There are many ways to decrease booting time and speed up start, such as using third party programs such as Startup Manager to manage programs running automatically. Windows 7 and Windows Vista users running dual-core, quad-core or other multi-core or multi-processors computer can try the following trick to make Windows boots faster.
  • Press Win + R to open “Run” dialog window
  • Type MSConfig into the text box after “Open”.
  • Go to Boot tab.
  • For dual-boot or multi-boot system, make sure that the operating system to make the change is selected.
  • Click on Advanced options button.Speed Up Windows 7 and Vista Boot Up
  • Tick the check box for Number of processors, and then select the maximum number count of CPU core processors value from the drop down list.
  • Click OK twice to exit System Configuration.
  • Restart computer.
Once enabled, Windows operating system will use all available (or selected number of) processor cores to run the boot up algorithms, and this potentially make the startup speedier and faster, with less waiting time on black screen and logon screen. User with single core computer unlikely to find the trick useful though.
Read More..

How to Boot ISO Image without Burning to CD

Boot iso file without burning to CD
There are times when we want to burn the ISO image to a CD/DVD drive to know what the image does and what it contains. But burning the image to a disk needs time and also the big disadvantage of it is that if the image is burned to the disk, the CD-R can not be used again.

If you want to check an ISO file here is how you can do that without burning it to a CD-Rom and needless to mention, the image runs as perfect as is from CD. With this tool you can also take the screenshots, which you can’t if you were actually booting from the CD.

There is a great tool available on internet called MobaLiveCD which can easily run your Live CD directly on Windows and that too for free. MobaLiveCD is a freeware that runs the entire ISO image files in an emulation window as if it were running actually from the CD.

Features of MobaLiveCD:
  • No need to burn CD-Rom again.
  • Can also incorporate this tool in the right click context menu.
  • No installation required, can also run in USB drive.
  • Very easy to use, runs in single click.
  • What you all have to do is just download the tool and click the option that reads “Run the Live CD” and
  • your image will open up in a new window as shown.

Boot iso file without burning to CD
Download MobaLiveCD
Read More..

How to fix Raspberry Pi boot problems

If you have any problems with your SD card messing up or your Pi not booting, this is an attempt at documenting my issues with booting or SD card corruption and how I fixed them.

This can range from problems with rpi-update to changing the /boot/config.txt file to restoring the SD card superblocks from the superblock backup to Oh No my SD card is hosed and I need to recover files. Weve all been there so need to be embarrassed about messing something up. Things mess up a lot.

Boot Problems

First of all, this is a great reference that I use a lot.
Start by figuring out what changed.
  • Did you just change your /boot/config.txt?
  • Did you delete any important files?
  • Did you run rpi-update?
  • Did you add a new device?
  • Did you overclock too much?
  • Do you get a kbd prompt?
  • Did it run some weird commands on the shutdown about "device still open for writing"?
If you just changed your config.txt, you should change it back and then change line by line while rebooting until you see what option is causing the error.

If you deleted any files, restore them.

If you ran rpi-update and it wont reboot, try making your /boot/config.txt the default one. The cma_lwm and cma_hwm options sometimes cause the new firmware to break.
If that doesnt work or you have flashing light errors, restore the old boot files by copying the /boot.bak/ files into /boot/
sudo cp -ap /boot.bak/* /boot/

If you recently overclocked, try reducing it back down. I run 1100 MHz easily but 1200 MHz tends to be unstable for me.

If you get a kbd prompt or error, check your power supply to make sure its supplying enough voltage, then reduce any overclocking or overvolting in your config.txt, then (if the first two dont solve it) replace the boot files like described above.

If you have a kbd prompt that you couldnt fix, you get read/write or I/O errors on shutdown or startup, or 
it cant find the ext4 partition, then you have been a victim of SD card corruption.
Dont worry though. There are still ways to recover your files.

The first thing you should do is make a copy of your SD card image.
Plug the card into another computer with linux and use dd to copy the image. Then you can try to fix the image file without further corrupting the data.
The first thing to try to do is replace your superblock with a backup. To do that click here.
If that doesnt work and all else fails, it is possible to use scalpel and custom recovery configuration to get your files. See here for how to do that.

Consider donating to further my tinkering


Places you can find me
Read More..