How to make a triage drive of my own

i noticed what apple stores use for triage drives. a firewire drive that powers off the port like a USB drive. And when it loads it has 10.4 and 10.5 and utilities and such. I would like to have my own, instead of lugging all the dvds around. Any suggestions? do i just make images of 10.4 and 10.5? I want it for my own machine. Anybody got some clues how to make one?
Thanks a bunch guys

I have a 360 GB portable external drive (I got mine from Small Dog Electronics). I partitioned it so that there was a partition large enough to hold the OS and all of my recovery/troubleshooting software (TechTools, DiskWarrior, etc...). I think my 10.4 partition was about 5-7 GB, but I used 15 for 10.5. I left the rest of the hard drive as portable storage (movies, music, photos and so on), but if you really wanted to, you could do separate partitions for different versions of the system (10.4, 10.5 and so on).
Simply attach the external drive to your computer, boot from the OS install disk, and install to the external disk. Now boot from that external, and install your utilities. Make sure you run any updates to the utilities while booted from that drive.
Message was edited by: kworley

Similar Messages

  • HT203909 Why can't you provide specific instructions here about how to make the USB drive bootable?  The article referenced is not dedicated to Bootcamp--too long, too many options.  How do you make it bootable?

    Why can't you provide specific instructions here in HT203909 (Boot Camp: Creating an ISO image from a Windows installation DVD) about how to make the USB drive bootable?  The article referenced for partitioning the drive is not dedicated to Bootcamp--too long, too many options.  How do you make it bootable?

    If your BC Assistant shows the option to create a USB Installer, it automatically is marked as bootable. There is no need to have manual intervention to make a bootable USB. Once the process is manually modified, it is supported by the person modifying it.
    You have two or three options (depending on your Mac Model).
    1. Create USB... - Use a USB2 flash drive, which is erased and formatted. If your Mac supports ISOs then BCA will prompt for the Media. Any Mac which does not have a built-in Optical drive will support an ISO. There are specific Mac models which support both, DVD and USB based installation.
    2. Download Software from Apple servers...
    3. Install Windows...
    Are any additional instructions really necessary?

  • How to make Automatically Device driver installation in Win 7/WIn 8 when using RNDIS in Windows Compact

    We are developing a precision instrument that measures Temperature, Pressure and humidity used in the pharmaceutical industry.
    The Instrument is based on Windows Embedded Compact (7.0)
    WE establish a TCP communication vi a USB connection. This is done by the RNDIS Driver.
    When we connect the instrument to a PC we have to do the following in Windows:
    http://developer.toradex.com/knowledge-base/how-to-install-microsoft-rndis-driver-for-windows-7
    The INF that is used is then C:\Windows\inf\rndiscmp.inf
    We want this to be executed automatically
    The way it is automated is by setting the correct entry’s in the registration database on the Instruments. In Windows CE registration database.
    On
    http://www.usb.org/developers/defined_class we think we must set Base Class = EFh, SubClass = 04h and Protocol = 01h.
    But how is this done in the registry on the device?
    Who can help me :-)

    Hi Mads,
    changes in "rndisfn.h" in public folder have no influance on your project, because those files are not built at all. Visual Studio will use this one anyway (which is already built): C:\WINCE700\public\common\oak\target\armv7\retail\rndisfn.dll
    To make use of Microsoft public code, you have to clone this code - that is copy selected source files to BSP folder and adjust DIRS files to include new data in the compilation process.
    To clone RNDIS component, copy rndis folder from C:\WINCE700\public\common\oak\drivers\UsbFn\class
    to C:\WINCE700\platform\YOUR_BSP\Src\COMMON\USBFN.
    Edit source file C:\WINCE700\platform\YOUR_BSP\Src\COMMON\USBFN\rndis\rndisfn\sources:
    DOSYSGEN=1
    TARGETDEFNAME=RNDISFN
    TARGETNAME=RNDISFN
    TARGETTYPE=DYNLINK
    DLLENTRY=_DllEntryCRTStartup
    SOURCES= \
    rndisfn.cpp \
    TARGETLIBS= \
    $(_COMMONSDKROOT)\lib\$(_CPUINDPATH)\ndis.lib \
    $(_COMMONOAKROOT)\lib\$(_CPUINDPATH)\ceddk.lib \
    $(_SYSGENSDKROOT)\lib\$(_CPUINDPATH)\coredll.lib
    SOURCELIBS=\
    $(SG_OUTPUT_ROOT)\platform\$(_TGTPLAT)\lib\$(_CPUINDPATH)\rndismini2.lib \
    $(_PUBLICROOT)\common\oak\lib\$(_CPUINDPATH)\ufnclientlib.lib
    Finally, edit C:\WINCE700\platform\YOUR_BSP\Src\COMMON\USBFN\dirs to include your new component (folder) in the build process:
    DIRS=\
    RNDISKITL \
    RNDIS \
    System will build now new rndisfn.dll, which will replace the original one in the public directory. I hope I didn't forget anything...

  • How to make hard hard drive turn off?

    How do i turn off hard drives when they are not mounted?

    The program you're looking for is hdparm. Check the man page & read the section on the -S option. Do not set the timeout too low or your drive may die sooner than expected. A hard drive can only spin up/down so many times.

  • How to make MySQL JDBC Driver case-insensitive

    Hi,
    I'm porting a jdbc application from oracle to mysql. One of the problem is that oracle's column names are case insensitive, whereas CODE in mySql is different from code (see example posted below).
    I know that I can change the source code to use always the same case. But is there a way to make the mysql jdbc driver case-insensitive ?
    import java.sql.*;
    /* getString(String) is case sensitive for org.gjt.mm.mysql.Driver driver */
    mysql> describe currency;
    +-----------------+----------------+------+-----+----------------+-------+
    | Field           | Type           | Null | Key | Default        | Extra |
    +-----------------+----------------+------+-----+----------------+-------+
    | code            | char(3)        |      | PRI |                |       |
    | name            | varchar(40)    |      | UNI |                |       |
    | shortCode       | char(2)        | YES  | MUL | NULL           |       |
    | exchangeRate    | decimal(19,12) |      |     | 0.000000000000 |       |
    | changed         | decimal(1,0)   |      |     | 0              |       |
    | markedFlag      | decimal(1,0)   |      |     | 0              |       |
    | updateTimestamp | timestamp(14)  | YES  |     | NULL           |       |
    +-----------------+----------------+------+-----+----------------+-------+
    7 rows in set (0.00 sec)
    getObject(1)=EUR
    Trying code
    getObject("code")=EUR
    Trying Code
    java.sql.SQLException: Column 'Code' not found.
         at org.gjt.mm.mysql.ResultSet.findColumn(ResultSet.java:1213)
         at org.gjt.mm.mysql.ResultSet.getObject(ResultSet.java:1188)
         at mySqlDemo.main(mySqlDemo.java:61)
    getObject(1)=USD
    Trying code
    getObject("code")=USD
    Trying Code
    java.sql.SQLException: Column 'Code' not found.
         at org.gjt.mm.mysql.ResultSet.findColumn(ResultSet.java:1213)
         at org.gjt.mm.mysql.ResultSet.getObject(ResultSet.java:1188)
         at mySqlDemo.main(mySqlDemo.java:61)
    public class mySqlDemo {
         public final static void main(String[] args) {
              try {
                   /*== database constants ==*/
                   String DBHOST = "localhost";
                   String DBNAME = "test";
                   String DBUSER = "test";
                   String DBPASS = "";
                   String DBDRIVER = "org.gjt.mm.mysql.Driver";
                   /*== setup database driver and connect ==*/
                   Class.forName(DBDRIVER).newInstance();
                   String conurl = "jdbc:mysql://"+DBHOST+"/"+DBNAME;
                   Connection db = DriverManager.getConnection(conurl,DBUSER,DBPASS);
                   /*== create sql query and execute ==*/
                   //String sql = "select code from currency";
                   String sql = "select Currency.code, Currency.name, Currency.shortCode, Currency.exchangeRate, Currency.changed, Currency.markedFlag, Currency.updateTimestamp from Currency order by code";
                   Statement stmnt = db.createStatement();
                   ResultSet rs = stmnt.executeQuery(sql);
                   /*== display results ==*/
                   while(rs.next()) {
                          System.out.println("getObject(1)=" + rs.getObject(1));
                          // works, because "Currency.code" has been selected
                          System.out.println("Trying code");
                          try {
                                 System.out.println("getObject(\"code\")=" + rs.getObject("code"));
                          } catch(SQLException ex) {
                               ex.printStackTrace();
                         // case sensitive !
                          // does not work, because "Currency.code" has been selected
                          // "code" != "Code"
                          System.out.println("Trying Code");
                          try {
                                 System.out.println("getObject(\"Code\")=" + rs.getObject("Code"));
                          } catch(SQLException ex) {
                               ex.printStackTrace();
              } catch(Throwable t) {
                   t.printStackTrace();
    }

    One of the problem is that oracle's column names are
    case insensitive, whereas CODE in mySql is different from code (see example posted below).I doubt that.
    SQL standards are rather specific that columns names are case insensitive unless quoted identifiers are used. And presumably you are doing that.
    What you are seeing is a difference in drivers not databases.
    I would guess that the only way to change the behaviour is to modify your code. If you uppercase everything it should work. Or you could use positional rather than named column extraction.

  • How to make a raid drive

    I have just bought a Segate 2TB goflex free agent drive with firewire 800. Could I use it as RAID drive ? If so , how could I format as RAID Drive. Please reply at earliest possible.

    RAID over FW800 is slower than what your drive can do.
    If you want RAID, then go SATA only, with controller and native cases.
    My advice, avoid most name brand (WD, LaCie, Seagate) external cases.

  • How to make an instrument driver appear in toolbox

    Hi,
    i created an instrument driver using the create new instrument driver project option.  I have all the VIs in place in the project and have saved the whole thing, library and all into the instr.lib folder and have restarted labview and the VIs are still not showing up under instrument i/o -> instrument drivers option.  could someone please go over the process or just tell me what i might be missing to have these drivers show up in the toolbox!
    Thanks for help,
    brent schenk
    Solved!
    Go to Solution.

    From the Getting Started Menu >> Browse
    From the Create New window >> project >> project from wizard >> Instrument driver project
    select New driver from template
    select the type of instrument you have
    Click next
    **Make sure the project location is correct. I think this is where you are going wrong.**
    It should say something like, C://Program Files/National Instruments/LabVIEW 8.5/instr.llb/yourproject/yourproject.lvproj
    If you have this directory correct, it should show up under the instrument library
    National Instruments
    Applications Engineer

  • 2008 - How to make the SATA drives run full speed with Bootcamp and XP ?

    Has anyone found a way - after all this time - of repairing a 2006 install of Windows XP SP2 - or in someway fixing the rather slow SATA drive problems?
    I have not upgraded to 10.5 - but would if the new Bootcamp somehow (via new drivers??) fixed the problem!
    My machine is now 2 years old ( 2.66 4 core ) and I finally need XP's full speed for a project - but most of the posts I've seen are fro 2006 and expired.
    Help!
    -Glen

    And again, my objective to is get 'full speed' from the SATA drives while running XP.
    -Glen

  • How to make an external drive attach on restart?

    I have just added an external NAS drive to my network. I have two shares configured on the disc (one public and one private) and have mounted both of them on my desktop.
    I dragged each of the network icons from the desktop onto my Lonin Items in the Account section of System Preferences. When I add the icons they are listed in the Login Items with the names of the shares and lists them as Volumes. When I do a restart the icons do not mount automatically and when I look in the Login Items the proper names are still listed but instead of Volumes they are listed as Unknown.
    The account is set up as an administrator and I have added the NAS password to my keychain to take care of authentication. I even fully defined the name and path (smb://device name/share name) in the Connect To Server dialog box and added both paths to my server favorites list.
    I am running 10.4.3 but also want to set up my wife's iBook which is running 10.3.9.
    Any suggestions and/or help would be appreciated.
    Thanks,
    David

    This was solved by creating an AppleScript to handle the mounting on restart.

  • I was able copy the hardrive of my old macbook from "My Passport" onto the desktop on an older iMac. but i dont know how to make my hardrive and user name be the main one since someone had used it in the past and had their info on the comp. please help!

    I recently broke my 2008 macbook. i was able to use an external hardrive to back up my data onto My Passport. I was going to buy a new computer but a friend told me sher had an older version of the iMac. (not sure how old but it doesnt have a camera if that helps) i was able to hook it up and turn it on but i ran into a few problems. 1) the "authentic" user or whatever it says is someone who previously used the computer. i added me as a user but im not sure how to make me the main user. 2) after hooking up My Passport, i was able to drag my files and copy them to the desktop.(i think i did it correctly) now, i dont know how to make my hard drive and applications and iformation the "main " info. The current apps on the iMac are super old versions of iTunes and iPhoto and such. 3) while trying to open the apps from my macbook on the iMac, it said it didnt have the right software to open these apps.
    I am so computer illiterate so someone please help!!! Also, i do not have internet in my new apartment yet so if there is a way to make this happen without using the internet that would be preferred. sorry for the horrible spelling and poorly written paragraph.
    THANK YOU!!

    You are not going to be able to run your old system from the backup on this old computer as the hardware is incompatible.
    You need to get a new computer or a refurbished one.

  • How do I make a hard drive "forget" that it was once a (no longer used) Time Machine drive?

    I'm starting a new thread on this question in the hope that someone new will notice it.
    I've started using a larger hard drive for my TM backups. I want to be able to use the previous drive for other things BUT I also want to keep the oldest TM backup, just in case. In order to do that I want to move all but one day's backup to the trash but of course get the "The operation can’t be completed because backup items can’t be modified." message. I also, of course, can't change the name of the backups.backupdb folder for the same reason. In older OSs it was possible to use a Terminal command to bypass all this but it would seem that it's no longer possible to do this in Mt. Lion.
    Note that the old drive is NOT being used in Time Machine, so that's not the problem.
    Does anyone know how to make Time Machine realize that the drive is now just a drive, not a Time Machine drive? Obviously I know I can just reformat it but then I'll lose ALL the files. I want to keep one day's worth, so reformatting is not the solution. I do know that I can copy everything over to another drive but I don't have another drive large enough to do that, so need to unflag the one set of files as TM backups and trash the others.
    Any help gratefully accepted.

    I think I understand your question, but I'm puzzled at what you are trying to accomplish.
    Let's say you've been using TM for a year, now you start a new backup set on a different device.
    What you seem to want to do is delete all the backups in the old backup set on the old except for the very first backup - ie. the oldest.
    That would mean that you would retain the oldest backup from 1 year ago, and all the new backups from the start of the new set forward. Deleting all the past year's backups except for the very first plus the new backups going forward on the new device. Is that what you want?
    The only way I know of doing this would be to manually delete in TM all the undesired backups -slow and tedious for sure,
    On the other hand, you want to keep the last backup of on the old device then....
    Assuming that you started the new back up set shortly after the last backup on the old device, then the first backup on the new and the last on the old are almost identical for all practical purposes.
    If that's what you want I'm not sure it accomplishes anything useful.
    Can you clarify what you want to achieve/do, so we can help you better.

  • I've bought Lion USB Thumb Drive, how to make a backup of it?

    hi i've bought the Lion USB Thumb Drive because my internet connection is super super slow.
    now, the Lion USB Thumb Drirve arrived is super small and fragile because it's a Mini-B type USB connector, with all the metal exposed.
    So I try to make a backup copy of it onto another USB drive.
    wondering anyone know how to do it?
    all the internet resourse I can find only teach how to make a USB from the downloaded version, but I don't have the downloaded version, so the method taught doesn't work because there is no "InstallESD.dmg" inside it.
    any solution will be greatly appreciated.
    many thanks in advance.

    After you install Lion, use: Lion Recovery Disk Assistant
    It's not the Install Disk, but it has the ability to Install Lion OS X
    You can also try:
    Open up Disk Utility and Click on the "Restore" tab, choose the Apple Lion Install USB as the source and your flash drive as the destination. Hit the Apply button and it may create a bootable USB drive. (the flash drive must be formatted as GUID)

  • How do I make a boot drive for my imac?

    What do I need to make a boot drive for my iMac in case the internal drive fails?  About how much memory is required (I'm running Snow Leopard.)  Or, can I run it off the disk that came with my machine?

    Yes, you can do that - I prefer having an up to date bootable clone of my entire system for emergencies. It's easy to do that: download either CarbonCopyCloner or SuperDuper (I use both), hook up an external hard drive (preferrably Firewire because it is much faster), format it to Mac OS Extended (Journaled) and GUID partition scheme (under Options) - both done in Disk Utility (Applications > Utilities) and then you simply launch either one of the two apps mentioned and let them do their thing (170 GB take about an hour).
    You will wind up with a complete carbon copy/bootable clone of your system.

  • How to make iTunes recognize the music library in my external hard drive after instaIling Yosemite?

    How to make iTunes recognize the music library in my external hard drive after instaIling Yosemite? I tried re-setting the media folder location, but it didn't work. What else should I do?

    The issue is not related to the external drive. iTunes Match has difficulties matching tracks ripped fom CDs because they may differ slightly from the versions on sale in iTunes. You can try the match again. Otherwise do a search of this forum. There are already many discussions on this subject here that may help you.

  • How to make a driver using DLL in LabVIEW?

    I had followed the "Using Exteranal Code in LabVIEW" manual having finished the making dll file, and the lsb file(I attempted that two ways). But when I load the code in LabVIEW, it can't work. I don't know what had happened, I only got a error message like this:"'0x100014f1'commond call memory'0x00000000',this memory can't be written" or other similar error message, if I push the "enter" button, the vi application which I having lunched will crash. If I push the "cancel" button, the debug model will start,and the next message is "Unhandle exception in LabVIEW.exe(MSVCRTD.DLL/LVS95.TMP/COUNTER.DLL(the last one is creat by myself)):0xC0000005:Access Violation", but I wonder what had cause this? My DLL had been made successf
    ully under the VC++6.0, why LabVIEW can't call it fluently? How to make a driver for my own device using LabVIEW? How to correct my error to finished my hole work? Thank you very much. Jacky Wei
    Attachments:
    counter1.rar ‏33 KB

    1. Can you call this DLL from within VC?
    2. What operation system do you use? There may be a problem with calling of win95 dll under NT or win2000 for example.
    3. If you use NT you may not have permissions to work with some ports and memory areas.
    4. Under NT or win200 try to compile the library as a 32-bit dll, and under win95 - as 16-bit one.
    Good luck.
    Oleg Chutko

Maybe you are looking for