Jump to content

jaclaz

Member
  • Posts

    21,294
  • Joined

  • Last visited

  • Days Won

    53
  • Donations

    0.00 USD 
  • Country

    Italy

Everything posted by jaclaz

  1. My guess is that since (with several tricks/tweaks) EVEN Win 98 can be run on the EEEpc: http://www.msfn.org/board/index.php?showtopic=122401 making 2K running on it shouldn't be much complex . The only problem appears to be the webcam on some models: http://forum.eeeuser.com/viewtopic.php?id=46656 The 70x's have a working solutions, whilst the 90x's seem like not. jaclaz
  2. Yep. I can assure you that that particular option wasn't EVER there, even if I didn't test each and every release of the tool. You see, a USB stick is either a "HD-like" device (with MBR and hidden sectors) or a "superfloppy" or "partition-like" device. (there is an exception which is constituted by the rare CD-ROM emulating sticks and by U3 devices - which however are seen as two separate LUN's, first one "CD-like" and second one "HD-like" or "superfloppy-like", of which in any case, the tool can only image the second). Filesystems used on them are "HD-like" filesystems, i.e. commonly FAT16, FAT32 and NTFS in the "Windows" world and in some cases EXT2/3 FS in the "Linux" world. A .iso is actually an image of a "CD-like" device, in most cases using either CDFS or UDFS. A tool that would accept as input a "HD-like" or "superfloppy" device and produce as output a .ISO would NOT be an imaging tool, but rather a "filesystem/device conversion" tool. Even to this there would be a partial exception, i.e. the "HD emulation" format of the El-Torito ISO9660 (and later modifications) CD standard. But there would be not much sense for an imaging/cloning program to store the image in a "converted" format that needs to be "back converted" at the time of restoring/duplicating it. Sure it does , as well as several other apps, listed in the given thread: http://www.msfn.org/board/index.php?showtopic=100299&hl= (and a few others possibly NOT listed there), like: http://www.boot-land.net/forums/index.php?showtopic=4711 http://www.boot-land.net/forums/index.php?showtopic=7783 http://www.boot-land.net/forums/index.php?showtopic=7786 The whole point I was trying to make was that it is a possibility, not necessarily, "the best", and DEFINITELY NOT: as it simply DOES NOT do that. jaclaz
  3. If I may , it should be "as 'out of control' as your others, referenced above, AND your others, of which just a few are referenced below:" http://www.p2pforum.it/forum/showthread.php?t=386368 http://forum.html.it/forum/showthread.php?...hreadid=1339895 http://forum.html.it/forum/showthread.php?...hreadid=1340071 http://www.appdeploy.com/messageboards/tm.asp?m=49253 http://www.megalab.it/forum/programmazione...ute-t54232.html http://www.sysadmin.it/Forum/tabid/57/afv/...IT/Default.aspx http://www.sysadmin.it/Forum/tabid/57/afv/...IT/Default.aspx http://www.ilsoftware.it/forum/viewtopic.p...=33&t=76032 http://forum.html.it/forum/showthread.php?...hreadid=1338022 http://www.appdeploy.com/messageboards/tm.asp?m=49374 jaclaz
  4. There is NO sense in using the percentage as an indicator of the need of defragmenting (within limits). It depends also (and with more relevance) to the frequency with which a file is accessed. Let's make an example: you install a system from scratch, fragmentation will be at it's lowest possible level then you ADD applications or data, fragmentation of the ADDED application or data will be anyway 0 (zero) BUT any pre-existing file updated/replaced (and enlarged) during the process will become fragmented, including the Registry then, in the course of normal usage of the PC, you DELETE some files then, in the course of normal usage of the PC, you CREATE new files then, in the course of normal usage of the PC, you ADD informations to existing files It is rather obvious that if you have a rather large and heavy fragmented data file, say an AutoCAD drawing, which you access once every few weeks in order to print a copy of it, the influence of it's fragmentation will be totally negligible, same goes for a .avi or .wmv file that you watch once or two in a lifetime. But when you have a frequently accessed file, like the Registry (which is often fragmented), if you use a "dynamic" swap file placed in the SAME partition you have your system, in case of major updates from MS when system files are updated, the impact of fragmentation can be of relevance. Besides sysinternals contig.exe a file-based (as opposed to disk-based) defragmentation utility exists: http://wincontig.mdtzone.it/en/index.htm that can help in analyzing (and solve ) "partial" defragmentation problems through a nice, easy GUI. jaclaz
  5. Sure . See if reading "between the lines" of these: http://www.911cd.net/forums//index.php?showtopic=19663 http://www.boot-land.net/forums/index.php?...ic=8233&hl= is enough to get you started. It might be advisable to start a new thread for this specific topic (and post here a reference to it). jaclaz
  6. Seems to me like a "ground" problem of some kind (or transmission speed set in Hyperterminal) . jaclaz
  7. This entry is however "wrong" (though working ): once you map a drive to something else, you need to map --hook in order for the re-mapping to be "fully" effective: title load NTLDR of Windows XP on (hd1) fallback 1 map (hd0) (hd1) map (hd1) (hd0) map --hook root (hd0,0) chainloader /ntldr savedefault --wait=2 See this: http://www.boot-land.net/forums/index.php?...c=2568&st=7 jaclaz
  8. It must be VERY WELL hidden. Can you explain where it is found? Sure, never said that it wasn't, though I personally find (for the GUI version) the requirement of .Net unconvenient. jaclaz
  9. Has anyone ever experienced finding a machine rebooted (and all running programs closed) with a nice message by Windows Update that a reboot was needed? jaclaz
  10. And what if your BIOS does not have this feature? However I was replying to 1chaoticadult : jaclaz
  11. And it outputs a .ISO? jaclaz
  12. Malicious board member FAQ: Q:How can you tell if other people actually clicked on a given link? A:You post a wrong one and see if any protest arises! Sorry , clearly I made a 1 too short character copy before pasting. jaclaz
  13. Let's do baby steps then. Open a command prompt. Type in it DIR C:\*.avi /B /S and press ENTER This will make a list of all .avi files in C:\ Now type: FOR /F %? IN ('DIR C:\*.avi /B /S') DO SET Filename=%? and press ENTER This will make a list of all .avi files in C:\ and for each item in the list will set the variable Filename to the actual found filename. Now, assuming you have a .avi file named myfile type: FOR /F %? IN ('DIR C:\*myfile.avi /B /S') DO SET Filename=%? and press ENTER This will make a list of all files named myfile.avi files in C:\ and for each item in the list will set the variable Filename to the actual found filename. You just add some error control and an input interface and you are done: @ECHO OFF ::FINDFILE.CMD small batch file by jaclaz to find a given file SETLOCAL ENABLEEXTENSIONS SETLOCAL ENABLEDELAYEDEXPANSION SET wanted= IF %1.==. ( SET /P wanted=Please input a filename, and press ENTER: ) ELSE ( SET wanted=%* ) CALL :splitinput "%wanted%" IF NOT DEFINED wantedname GOTO :EOF FOR /F %%? IN ('DIR C:\*%wantedname%%wantedext% /B /S') DO ( SET fullfilename="%%?" ECHO File %wantedname% was found with extension %wantedext% in: ECHO !fullfilename! PAUSE &GOTO :EOF ) ECHO File NOT found!&PAUSE GOTO :EOF :splitinput IF %1.=="". GOTO :EOF SET wantedname="%~n1" SET wantedext=%~x1 IF NOT DEFINED wantedext SET /P wantedext=Input extension and press ENTER or just press ENTER for [.avi] IF NOT DEFINED wantedext SET wantedext=.avi IF NOT %wantedext:~0,1%.==.. SET wantedext=.%wantedext% GOTO :EOF Please note that in case of several copies of the same file "myfile.avi" OR with a number of filenames like: "this_is_myfile.avi" "23myfile.avi" "anothermyfile.avi" etc. The batch will output ONLY first matching occurrence (to avoid continue scanning drive once occurrence is found). jaclaz
  14. FYI, XPlite works with a different approach from nlite. Basically you install a FULL system, and later remove what you don't want: http://www.litepc.com/xplite_manual/ http://www.litepc.com/xplite_manual/index....?quickstart.htm @iceflier Read this: http://www.msfn.org/board/index.php?showtopic=11946 and this: http://www.msfn.org/board/index.php?showtopic=124220 jaclaz
  15. @beats YEP. But try timing how much it takes using dir in a batch FOR loop and compare it with the mentioned command line app. jaclaz
  16. Yep. But not on all motherboards/BIOSes, some simply do not give any USB support if the "boot from USB" is not selected in BIOS. One could also try the BOOT.INI "signature" Syntax, I seem to remember that it worked on some motherboards, at the time of the initial tests with Dietmar. jaclaz
  17. Any reason for not wanting to use a command line application? Are ALL the drives/partitions formatted as NTFS? If yes, looky here: http://ndff.hotbox.ru/en/ I am not sure to have understood what you mean, can you post a more detailed description of WHAT you would like to do (as oppposed ot HOW you think it should be done) ? jaclaz
  18. Not actually "dangerous", simply not appropriate to your actual hardware. Get the PID & VID of the stick, use Chipgenius: http://www.boot-land.net/forums/index.php?...c=4661&st=0 See if you can find anything for it here: http://flashboot.ru/index.php?name=iflash (Russian , but still easier than Chinese ) If you cannot find anything, post PID & VID and any relevant info Chipgenius finds and I'll try and help you in finding the appropriate Manufacturer's Tool. jaclaz
  19. Read here: http://www.msfn.org/board/index.php?showtopic=134639&hl= More alternatives: http://www.msfn.org/board/index.php?showtopic=100299&hl= jaclaz
  20. Yes, but it WON'T work. The ONLY KNOWN alternatives have been listed: The above (IF it works on your particular motherboard) is a "generic" solution, the following: Will ONLY work for a given NT based OS ("full" XP or PE). jaclaz
  21. Re-reading the OP post, it seems like all is needed is to avoid the shifting of letters? That would be solved by assigning the d:\ letter statically with Disk Management to the second disk/partition. jaclaz
  22. NO. NO. But it doesn't matter, since also the BIOS USB support is disabled unless you choose in BIOS to boot from USB. Since it's NO, null question! You missed the alternative question: You add to it an entry loading grldr of grub4dos. From grub4dos you load an image containing PLoP. PLoP has it's own USB stack that will hopefully allow booting from the stick. See on boot-land: http://www.boot-land.net/forums/ http://www.boot-land.net/forums/index.php?showforum=66 Search for posts with keyword "PLoP". A couple ones: http://www.boot-land.net/forums/index.php?showtopic=6330 http://www.boot-land.net/forums/index.php?showtopic=6371 Alternatively, and IF the usb stick you want to boot contains a XP or PE of some kind, you may want to try the "XP Kansas City Shuffle" or "Fake Signature Method", search for them on 911CD and boot-land. jaclaz
  23. YEP. here: http://www.msfn.org/board/index.php?showtopic=90495 2K, not XP, but there should be not much difference. Possibly you would need to stop a couple of services, like VSS or similar things if doing it from a "live" system. Doing the changes "offline" would be probably more advised. jaclaz
  24. Because you wrote the following: Which I read (actually as it is written) that you took as the reason why it should boot, the example that previously more than one keys were succesfully formatted and booted with linux. This is totally not relevant, as I am trying to explain to you. The SAME stick IMPROPERLY partitioned/fomatted may work on one motherboard and not on another. The SAME motherboard may work with one IMPROPERLY partitioned/formatted stick and NOT with another stick. It is quite difficult to create a "PROPERLY" in the sense of "bootable on ANY motherboard" partitioned/formatted stick. I am also sure that you can boot from a properly partitioned/formatted USB key, ilko_t and myself are trying to tell you that in some cases: the partitioning/formatting performed by the HP tool can be NOT working that due to these problems a number of different procedures/programs have been developed that you should TRY using one of the given recent bettered methods/utilities, to which links were given You are of course perfectly FREE to avoid following the advise given and remain convinced that you need to format the stick as FAT. YES. http://homepages.tesco.net/J.deBoynePollar...no-answers.html jaclaz
  25. Have you tried enlarging it? See this example by Mdgx on how a boot.ini can be http://www.msfn.org/board/index.php?showto...129604&st=8 "enlarged" by adding lines of text BEFORE first section. BTW, WHICH version are you using? Get LATEST here: http://nufans.net/grub4dos/ Absolutely NOT relevant to the problem you are experiencing, but you can use relative paths: title Windows XP SP3 - Phase 2 root (hd1,0) dd if=/boot.ini of=/boot.ini bs=1 skip=22 count=1 seek=69 chainloader +1 jaclaz
×
×
  • Create New...