xboxrulz
Nov 12 2007, 09:16 PM
| | I think he means booting the system from a drive full of compressed ISOs. I don't think that is possible since I don't think LILO or GRUB can decompress ISO to RAMDISC without having the ISO decompressed in the first place.
xboxrulz |
Reply
kgd2006
Nov 13 2007, 10:41 PM
I think what you meant you want to do is ripping an image from a cd on to your hard drive correct? Well that is what I understand from reading your topic post. But if I understood your question correctly their are many programs that you can use to rip a cd on to your hard drive in which you can use as backup of your current CD just in case your CD somehow becomes unreadable. Certain programs that I use is winISO, cloneCD, and even NERO I believe are the best tools to use if you are looking to rip an image from a CD to your hard drive. All the programs I believe needs to be purchased to experience the programs features full functionalities. I also would suggest that you make sure the ripped copies of your CD is a good rip because I ran into issues where the ripped images can become corrupted in certain instances. Also I believe that there are also programs out their that can run the images from your computer, which acts as a drive on its own. I can remember the software name on the top of my head but it allows you to run the image without burning it on to a disc. Hopefully, you will find what I mentioned is useful and good luck with whatever you are doing...
Reply
xboxrulz
Nov 14 2007, 03:35 AM
Don't want to be rude but, this is the most complex computer question since no one actually know what this guy is trying to ask, it's like sherades. xboxrulz
Reply
polarysekt
Dec 5 2007, 06:41 AM
My only question here is... why would you worry about the Windows aspect... in other words... I've yet to see a LiveCD distribution of Windows in any form as of yet... but there's always exceptions to what I've seen I guess... Basically... If you want Windows 95, 98, Me, 2k, XP, and Vista.... that's only about 6 cd's anyways... but most cd's i've found would just run the standard installation environment... Of course you can use GRUB to bootfrom=/sda1/*.iso ... but i believe you need to reference the kernel as well... as far as windows is concerned... I have no idea how to segregate the kernel... But in all reality... I see very few reasons to need to boot various versions of windows... Usually they are built upon one another and at least somewhat backwards compatible... however... unless you have some sort of tool to make a snapshot of a windows installation into an .iso... i barely see how this would help... For real, you may as well just install a few versions of windows onto your hard drive... though I think you have to do it in ascending order from versions... like 95 then 98 then Me then 2k then XP then Vista... although I doubt you'll be able to use NTFS unless you can make several partitions... I would probably just put XP and Vista onto the hard drive... for ordinary booting... then if you really want something else... like linux, set up your floppy with grub and bootfrom the .iso's on your disk... Additionally, I believe you need to point to the kernel as well... which is part of where I lose track of the Windows portion.... like i said... --=-=-=-= apart from that, I would agree with previous posts that you might just have to use VMWare to boot from images... which I would say would be ripped from cd's or at least saved from a complete setup and installation... which is where you'd be stuck again with windows to just one computer... hell, I can't even switch out hardware without windows blue screening me... I usually have to do the old "REMOVE, boot, shutdown, REPLACE, boot" just to swap out various PCI cards... unless I stick them in a previously empty slot... but if you do find something more helpful... please keep us all updated... : ) good luck
Reply
iGuest
Mar 4 2008, 06:46 AM
He wants to write an ISO file to a hard disk, thus making the hard disk appear to be the ISO, not a hard disk with an ISO file in the root. This works. A mac can write an image of its install disk to a hard drive with disk utility and it will boot up no problem just like the dvd was in the drive, but faster. It won't do non-apple formats, however. I have been looking for the same thing. I'm sure there is a Linux program out there, but I am admittedly a novice. Does anyone know how to do this? Whether it boots or not is fine right now. -reply by Dave
Reply
mastercomputers
Mar 5 2008, 12:53 PM
I would recommend using a Live Linux CD of some sort so we have the necessary tools to do what is required. You want to setup GRUB on the hard drive to "pretend to boot off a CD", remember it's only faking Grub but we know it'll be using the Hard Drive. You need to create partitions, usually each size should be 700MB but if you want to save space or allow for more partitions, create them at the same size as the ISO files but allow for 1-8MB extra (unless you know how to exactly tell how many bytes you'll specifically need, but remember partitions are hard to be completely accurate down to the bytes. These partitions will be formatted as CD file system. We then use our CD Writing software to write these ISOs to those partitions, configure a grub menu so we have the ability to chose which CD we want to boot from, and that's why we fake grub to think it's booting from a CD because our file system suggests it's a CD we're using anyways. Maybe I need to show a step-by-step on this, but it'll take me a while to write it up as I don't have time to do a lot here. However, if you have ISO files, you could just boot from them, just the ability to mount an ISO at boot and using grub to boot from them should have been enough, but I guess that's another method I probably have to show as well. Cheers, MC
Reply
rockershive
Mar 6 2008, 01:17 AM
hey i haven't tried burning an ISO onto a hard drive (call it mount, not burn). You can use Virtual Drives applications to mount ISO on a hard drive, it should be bootable if the ISO file you are mounting a bootable one. These apps can create temporary virtual drives (e.g. partition, CD/DVD drive) where you can place ISO files to be used on specific tasks.
Reply
iGuest
May 26 2008, 04:06 PM
I have the same question
Burn Iso To Hd?
It is not too hard to understand: the whole idea is to "burn" (lacking a better term) an iso to an HD or HD partition so that that partition has the same files and boot sector as the iso. -reply by Rodrigo Rollan
Reply
iGuest
Jul 7 2008, 02:16 PM
I know what u mean
Burn Iso To Hd?
This is a rough guide to 'burn' an iso to a disk, it is a pretty advanced guide and the paths such as /dev/hda1 and (hd0,0) will have to be substituted with what is relivant to your system. Maybe the other users can refine this guide and make it easier to use for beginners, I could even make an interactive script if I could find the time. Make an ext3 partition that can hold the iso, I did 1 gb just to be safe Example: #fdisk /dev/hda ...Make partition -Mount the image and the hd #mkdir hd && mount /dev/hda1 hd #mkdir iso && mount -o loop image.Iso iso -Copy all the files across #cp iso/* hd/* -are -Install grub files (yours may be in a different place) #cd hd #mkdir boot && cd boot && mkdir grub && cd grub #cp /usr/lib/grub/i386*/* ./ -Use your favourite editor to put a file named 'menu.Lst' in that directory containing: " Timeout 30 Default 0 Title Boot From ISO File Root (hd0,0) Kernel /isolinux/vmlinuz0 root=/dev/hda1 Initrd /isolinux/initrd.Gz " -Setup grub #cd ../../.. && umount hd #grub Grub> root (hd0,0) Grub> setup (hd0,0) Grub> quit -Reboot and it should work -reply by LeavingEntropia
Reply
iGuest
Aug 14 2008, 03:52 AM
burn_iso2HD
Burn Iso To Hd?
Replying to iGuestFunny I stumbled across this Tonight I was rebuilding an older pc my cd/dvd drive went out, for whatever reason...Curiosity...Laziness..I figured if I could extract my iso file (on disk)to an external drive(on disk) and make it bootable I would be able to keep going , I know there is another million ways to keep going but I'm stubborn and wanted to see if I could make the external hd bootable with my choice if iso downloaded via the net basically I want to do exactly what you (iguest ) and (bakr_2k5)suggested. I used the same search terms as bakr_2k5 original post "burn iso to hd" for lack of a better search and got this forum Thanks for the ideas guys! ill try to post back and let you know what I find out... Oh and for you guys that didn't understand the question he asked at first ...Try to open your minds...Don't be so negative -reply by burn_iso2HD
Reply
Recent Queries:--
write iso to external hdd - 3.46 hr back. (1)
-
write an iso to hard disk - 4.49 hr back. (1)
-
convert iso linux for use on hd - 6.35 hr back. (1)
-
"iso to hdd" - 6.46 hr back. (1)
-
write iso to harddisk - 13.79 hr back. (1)
-
iso to harddisk - 16.73 hr back. (1)
-
iso to hdd - 17.75 hr back. (1)
-
write iso to harddrive - 4.40 hr back. (2)
-
write iso to hdd - 23.26 hr back. (1)
-
how to burn an iso to a hard drive - 23.34 hr back. (1)
-
iso to hd partition - 30.77 hr back. (1)
-
how to burn iso on hard drive - 33.40 hr back. (1)
-
copy iso to hardisk - 42.54 hr back. (1)
-
mount iso to hard drive - 44.30 hr back. (1)
Similar Topics
Keywords : burn, iso, hd, found, net, explaining
- When Does Human Life Begin?
Where is our humanity to be found? (4)
What Will Happen If I Rebooted My Pc 60 Times Consecutively?
Burn your Hardware (20) Have you tried this at home or in your Office? Have you tried rebooting your system at least
60 times over and over again just right after Power on, Self-Test without loading the OS. I have
tried this at home! and guess what a 'development' my PC achieved! I want you to try it
first, and share it to me and to the forum. Let's compare what you've observed. ....
Looking For The Perfect Cms...
Haven't found one yet. (9) Well as some of you may know, I've been playing around with Joomla for a while. I've also
gotten really good at it! Now though, I'm finding Joomla isn't up to it in the way of
features. You have to get a component or plugin for almost everything. Seeing as Joomla 1.5 (which
is what I'm using) isn't all that old, there aren't enough extensions for it and like
none for what I want. Also, most people make them under the Creative Commons license for 1.5, and I
don't want stupid little ads all over my site. With the old version (1.0.13 I thin....
A Lot Of Infomation About Cod4 Found On The Internet
(0) here is information about cod 4 that i found on the internet QUOTE Call of Duty 4: Modern
Warfare is a first-person shooter developed by Infinity Ward and published by Activision for
Windows, Xbox 360, and PlayStation 3. It will be the eighth installment in the Call of Duty video
game series (including expansions), the first not to be set during World War II, and the first to be
rated "M" for Mature by the ESRB. It was announced on April 25, 2007 , and will be released
worldwide on November 5, 2007. Contents * 1 Story o 1.1 Setting o 1.2 P....
Folder Of Frontpage?
Found A Folder (8) I got microsoft xp pro about 2 months ago and installed it then 3 days ago i noticed a folder called
microsoft fronpage even though i never installed it. it contained one folder called version3.0 which
contained a folder called bin which contained nothing. Can anybody explain this to me. N.B. I also
looked at my mates computer and it had it also and he never installed frontpage /ohmy.gif"
style="vertical-align:middle" emoid=":o" border="0" alt="ohmy.gif" />....
Burn Fat X 3
Lose fat from thighs/buttocks (0) Before I go rambling on, here is the article (I watched it on the news numerous times before):
QUOTE A REVOLUTION in weight loss is about to hit Australia after scientists devised a workout
that burns three times the amount of fat. They found their specific brand of interval training
prompts the body to click into a metabolic response that allows more fat to be burned under the skin
and within the muscles. Researchers at the University of NSW and the Garvan Institute studied 45
overweight women over 15 weeks, putting them through a 20 minute cycling regime in w....
Help Spliting A String Into 3 Variables In C++
I have searched on the net but havent found much help (2) Hi there im new around here ^^, my original language is spanish so sorry for any wrong word i
use,... Im working on some features for my program to load a Favorite games list from a text file
but the problem I have is not parsing the file, is processing a string and spliting it into 3
variables, then I will use them to insert as items in a List View control, I just dont know what is
wrong in the following code... CODE
//------------------------------------------------------------ TCHAR* pszRomname =
NULL; TCHAR* pszTitle= NULL; TCHAR* p....
Major Flaw Found In .ani File Through All Major Ms Operating Systems
(2) I have been keeping regulars updates on trap about this and I thought the members of astahost should
know about this as well. http://www.trap17.com/forums/index.php?sho...mp;#entry316934 It is
recommend that you read al lthe post I made about this topic since the new articles theses posts are
comign from seem to be getting worse about this security risk. This flaw has been found from
Windows 98 up to vista.....
Check Out This Interesting Information I Found.
Science research. (0) QUOTE Bone, Knee, Hip and Joint Advances "Recommended. The information in this program, as well
as the entire series, is up-to-date and of interest to both general audiences and to medical
specialists." -EMR Online "Osteoporosis" - a new diagnostic device screens for signs of weakening of
the bones; "See Through Bones" - a new x-ray machine which offers doctors extremely accurate details
of bones; "Dem Bones" - lasers can now be used to stimulate bone growth; "Thinking Knee" - a new
artificial knee is computerized, meaning amputees will find walking easier; "Artifici....
New Game - Urban Rivals
I found it yesterday! (7) Hello everyone I found a new online game yesterday and I think its really good. Its similar to
Magic The Gathering. You play with a deck of cards and try outwit your opponent. You can also
'train' your cards to make them more powerfull and give them special powers. Its different
to magic in one major way though! There's a random number used when calculating the winner. So
although you might think your card will win, there is the chance it will still loose. As I said its
a great game so if you enjoyed Magic then you should definatley try it out. http://www....
Found Some Good Blogs With Tons Of Ebooks
(2) http://www.mzworld.com Http://www.mzworld.com/ebooks List of Free E-books OS Programming
Programs etc http://www.cec.uchile.cl/~lindsey/tutorial.htm O'Reilly online
http://www.oreilly.com/openbook/ http://sysadmin.oreilly.com/ Computer books and manuals
http://www.hoganbooks.com/freebook/webbooks.html http://www.informit.com/itlibrary/
http://www.fore.com/support/manuals/home/home.htm
http://www.adobe.com/products/acrobat/webbuy/freebooks.html The Network Book
http://www.cs.columbia.edu/netbook/ Some #bookwarez.efnet.irc links http://www.e....
Burn Ban - The Road To G-d
US Ban on Flag Burning Leads to Ridiculous Extremes (0) The prroposed ban on flag burning are controversial just on the basis of Free Speech Rights and the
constitutional underpinnings of the US, but there are pragmatic reasons to oppose it as well. One
such reason is that there is no clear limit to such a ban and it can lead to ridiculous measures.
Many people oppose the proposed ban just on the basis of Free Speech ("I do not agree with what you
say, but I will defend to the death your right to say it."). As a soldier stated in a recent Time
Magazine article, some of those opponents literally put their lives on the line in....
Cd Burner Can't Burn Anymore After Installing Vmware
(4) Hi, one of my friends is having problems with the VMware Workstation program (using version 5.5).
After installing it he couldn't burn any CDs from Windows (outside VMware) anymore. I checked
all the settings and it looks ok. Don't have any burning software installed in that computer
except the default burning feature in Windows XP Home. What is disabling him from burning CDs? This
is what I did. I selected a file to burn. Then clicked on write these files to CD. Clicked Next.
Then it says "Insert a writable disc to continue". This is a good CDRW that I just era....
Photoshop Text Effect
A photoshop text effect i found and thought was kool (1) Ok, well the other day i was making a video *dont ask why* and for the intro i wanted some pretty
cool font, and font effects and so i experamented with Photoshop for a while until i came up with
somthing i liked and i liked what i came up with so i think imma share it with people /biggrin.gif"
style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> QUOTE First off i used
the font Angryblue Available for download Here for PC's and Here For Mac's Now lets
start off by getting a new or existing image, for existing image just open an exi....
Message On Log-in Saying Site Not Found?
www.taalkzforum.com? (1) Just letting the Mods and Admins know that there is a (bothersome) message that tells me this dot
com can not be found each time I log-in. I don't know (or need to know) what it means, but
maybe someone else should know that it is happening.....
I Found Out Google Page Creator
About Google Page Creator (8) Here is what they wrote on their signup page check it out http://pages.google.com/ QUOTE
About Google Page Creator Want to create an online photo tour of your vacation to Bali? An overview
of the South American precipitation cycle for your science class? A shrine to your pet ferret?
Now's your chance. We're testing a new product that makes creating your own web pages as
easy as creating a document in a word processor. Google Page Creator is a free tool that lets you
create web pages right in your browser and publish them to the web with one click. There....
Reformatted System, Now Audio Drivers Are Not Found!
(4) Ok i recently reinstalled xp on my computer and the audio drivers worked before I redid it now they
do not. There's a big yellow question mark next to Audio drivers on the control panel. Any
suggestions...its a laptop without any documentation or anything so I have no idea what any of the
specs on it are......Any help would be greatly appreciated. Thank you!....
Burn Dvd Over 16x Speed Rate
The impossible became possible (5) Its seems that Plextor has passed over the fisic limit of speed DVD burning rate. The Manufecters
had an agreement about maximum speed to DVD burning that was 16x ( 21MB/s]. This limitation existed
because wasn't possible increase the speed over the 11.000 rpm without damage fisicly the DVD.
But Plextor announced a new DVD+- RW - PX-760A that attchive the 25MB/s what is equal to 18x speed.
Plextor says that this speed can be used by +/- R certificated DVD 16x in the market. Also will be
able to burn DVD+R Dual Layer ( 8,5 GB) to 10x. SOmeday we will have IN....
Scientists Believe They've Found Cure For Aids
(18) Hold your horses folks - this might be one of the ultimate scientific breakthroughs in recent times.
All the so called "cures" for AIDS so far have been nothing but retroviral agents (cocktails of
several expensive drugs) - that only served to inhibit the AIDS virus. None were able to purge them
from your body for good. They could only limit the activity of the virus allowing you to lead a
normal (almost) life till the end. But with this new report in the Salt Lake Tribune, it seems Paul
D. Savage of Brigham Young University has invented a compound that actually HUNTS D....
How Is Life After Death Possible?
Where can the spirit be found? (3) Many people believe in some kind of existence after death. In this thread, let's question
whether this makes any sense, and ask exactly what is meant. What is it that continues to exist
after death? If death is survived by a spirit or whatever you want to call it, then what is it made
out of? Where can it be found and how does it connect to everthing else we know about ourselves? How
do we know? Now that I have asked the quetions, I will put forward my answers to these questions
for you to consider as well. I will call the existence after death the spirit. And ....
Dragonball(not Tenkaichi Budokai)
i found it on the net... (3) While i was surfin on the net...i saw another dragonball game..i think its for the arcade or other
game console..i dunno wut console its for though /tongue.gif' border='0'
style='vertical-align:middle' alt='tongue.gif' /> ther is a website of it...there's about 3
movies/trailers of it....looks cool though..hope its available on PS2 Console /laugh.gif'
border='0' style='vertical-align:middle' alt='laugh.gif' /> anyway here's the link
http://www.banpresto.co.jp/machine/spdbz/image/051005.html ....
Googling Passwords
Your passwords can be found from google (3) I found this one while surfing hope you people liked this QUOTE Googling Up Passwords
Google is in many ways the most useful tool available to the bad guys, and the most dangerous Web
site on the Internet for many, many thousands of individuals and organizations. Let's talk
about the stuff that people are serving without realizing it. Security pros have known about this
problem for years, but most computers users still have no idea that they may be revealing far more
to the world than they would want. In fact, it wouldn't be far from the truth to....
Update Your Firefox!
Another flaw has been found in Firefox (8) Another flaw has been found in Firefox browser. This exploit affects Unix/Linix systems, not
Windows. And the latest version 1.07 contains a fix. You guys, who are using older version in
Unix/Linix systems, should update your firefox as soone as possible. It shows that firefox is just
not saft enough. It has good track record just simply because it wasn't used enough. Firefox
browser is as vulnerable as any other popular browser on the market.....
Neem: A Natural Treatment That Works?
Neem trees - what scientists have found (12) One of my friends just sent me a link about the neem tree, which is the source of many cures and
treatments in India (where he's from). We started talking about dental problems, which is one of
the things that neem trees can treat, when he started telling me about the other things that
scientists are discovering. Would you believe, for example, that extracts from this tree can be up
to 100 percent effective as birth control? Or that it repels athlete's foot, psoriases, herpes,
etc.? Yeah - I wouldn't believe it either if it weren't for the fact that sci....
Worm Found In Zen Neeons?
(4) I do not wish to copy the whole article so I'll post the link and summarize it here:
http://www.pcmag.com/article2/0,1895,1854769,00.asp PC magazine has reported that Creative's
Zen Neeon released from a company factory in late July contained a Windows Worm. The name is
W32.Wullik.B Although this worm itself is not exactly harmful, it is proven that worms and viruses
can now be transfered and hacked through company mainframes. This a serious problem because it could
pose a threat to future developments. More hackers would try to modify the worm or create thei....
Some Facts I Found
These are some facts I found (13) These are some facts I found. I've published them on a different site before, but I'm the
rightsholder so I'll post them here too (little old, jan 8th 2005): ~Bored aren't you~
*Montserrat's coastline is 40 km *1KB contains 1024bytes, not 1000bytes *The Isle Of Man has 1
FM radio station *The world's largest tricycle's front wheel has a diameter of 4.67 m (15.3
ft) and the back wheels measured 2.23 m (7.3 ft) across. The trike had an overall height of 7.13 m
(23 ft 4 in). *Bill Curtis of Clacton-on-Sea, Essex, England, is acknowledged as t....
"you Found That On Google"
(6) It's unbelivable, but no one have ever posted this =>
http://johnny.ihackstuff.com/security/prem...BH2004FINAL.htm It's the best from the best among
the best of google tutorials. it's even better than searchlores! You must see it, you must read
it !!! Heh, I'm pretty astonished that this wasn't posted... ps: the best section is about
getting free www shells /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> I
wish all of you good time reading.....
Vulnerability Was Found In All Major Browsers
Spoofing Flaw affect IE, Firefox, Safari (20) According eWeek.com, a new vulnerability was found in all the major Web browsers ( IE, Firefox,
Safari). This Spoofing Flaw can be exploited by malicious hackers to trick surfers into disclosing
confidential information. QUOTE "The problem is that JavaScript dialog boxes do not display or
include their origin, which allows a new window to open a prompt dialog box, which appears to be
from a trusted site," Here is the place for you to test your broswer whether vulnerable or not.
http://secunia.com/multiple_browsers_dialo...erability_test/ source: http://www.e....
Windows Xp: Why Does It Add Those Thumbs.db Files?
Burn the .db! (20) Hey! I primarily use a Windows XP SP2 when I'm building my website. And, I have to transfer the
updates from my personal PC to another PC. But, whenever I do, all the directories that have
pictures in them have a bloody file labelled "Thumbs.db." I know what it is, but how do I get rid of
them and keep them gone? Thanks! Chris....
Headless Bodies Found At Mysterious Mexico Pyramid
pretty freaky stuff (12) Headless Bodies Found at Mysterious Mexico Pyramid By Brian Winter MEXICO CITY (Reuters) - The
discovery of a tomb filled with decapitated bodies suggests Mexico's 2,000 year-old "Pyramid of
the Moon" may have been the site of horrifically gory sacrifices, archeologists said on Thursday.
The tomb at Teotihuacan, the first major city built in the Americas, whose origins are one of
history's great mysteries, also held the bound carcasses of eagles, dogs and other animals. "It
is hard to believe that the ritual consisted of clean, symbolic performances -- it ....
Looking for burn, iso, hd, found, net, explaining
|
*SIMILAR VIDEOS*
Searching Video's for burn, iso, hd, found, net, explaining
|
advertisement
|
|