/boot - What do you do?

Hello,
Installing Arch on a friends laptop soon. I have always just followed the Wiki on partitioning, but my question is this: What type of file type do you use on /boot? Is there an advantage of using ext4 or ext3 over the default ext2? I understand ext3 and ext4 use journaling, but why is ext2 still default?
Thanks.
-Ghosty

Maybe this is a tiny bit offtopic, but I can't see the use of having a /boot partition for most users. If something terrible happens to /, I can't see how keeping the kernel imaga and other boot files safe can help me. If I were at all able to boot, I would probably boot into a useless system anyway. Using a usb/cdrom rescue disk is usually the best way when something goes terribly wrong (which it doen't for you, I'm sure of course).
I'm not saying that having a separate /boot partition makes a lot of sense for systems totally different from mine, of course, but I can't think of why.
Last edited by filoktetes (2009-09-01 22:22:57)

Similar Messages

  • My MacBook pro won't recognize hard drive I put in it. It boots only to a white screen unless I boot to my recovery USB. If I do that then I can select my USB and my external time machine drive in the disk utility, so no problems there. But what do you

    My MacBook pro won't recognize hard drive I put in it. It boots only to a white screen unless I boot to my recovery USB. If I do that then I can select my USB and my external time machine drive in the disk utility, so no problems there. But what do you think it is? It won't recognize any hard drive I put in the machine, so might it be the sata cable?

    Boot the Recvoery USB, use Disk Utility to select the internal drive makers namea and size on the left.
    Now select erase and select the midde option and click erase, it will take a bit to complete but it's best for the drive.
    Now select Partiton tab, click the big box and Options: GUID and then Format: OS X Extended journaled and click apply.
    Quit and you should be able to install OS X now with your Apple ID and password.
    see
    http://osxdaily.com/2011/08/08/lion-recovery-disk-assistant-tool-makes-external- lion-boot-recovery-drives/

  • What do you do when your iPhone 5 fails to boot?

    What do you do when your iPhone 5 fails to boot?

    Have you tried restarting?
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for phone to restart (no data will be lost).

  • What does "You do not have sufficient access privileges" mean?

    Hello Gurus!
    I am wondering what does "You do not have sufficient access privileges" mean? I have a G$ with 2 internal hard drives. One has OSX 10.3.9 loaded on it and the other has OSX 10.4.7 loaded on it. When I boot up in 10.4.7 and try to access (open or copy) anything in the the desktop, documents, library, movies, music or pictures folders in my user folder on the 10.3.9 disk, it tells me that "I do not have sufficient access privileges"! This is a single user machine and it automatically logs in as me... the administrator. I tried to look at Apple's technical documents regarding permissions and privileges, but it is very confusing with all of it's terminal commands and lingo. Does anyone know an easy (and hopefully GUI) way around this problem?
    Thanks Much,
    Mark

    If you have a different system on each HD then you do not have a single user machine. The user on one system/boot volume is not the same user as the one on the other, even if they ahve the same name and password. If you boot from the 10.3 volume, you can select your user folder, go to File-Get Info, and change the access for others to read and write and click on the apply to enclosed items button. You should then be able to boot from the other system and move stuff around as you see fit. Of course, this is not a terribly secure state to leave your system in, as anyone who can gain access to your Mac can get at everything on your 10.3 home folder.
    If you try this route, I'd suggest doing it only long enough to move everything to one home folder and then revert the access privs to the way they were.

  • What do you think of my Bash Script? What about the error checking?

    Well what do you think of this Bash script
    It works
    I gave it some problems (i.e. unpluged the ethernet, messed up the URL's, uninstaled some programs...) to see if would report errors and stop or just keep going... But it did
    I just kind of thought up a way to do some error checking with the commands that I know.....
    What is a better way to do error checking?
    What do you think I should add/Do to this script?
    #!/bin/bash
    # Shell script to make a USB Tumb Drive for Flashing BIOS on a Lenovo Ideapad Y510.
    # This script needs to be owned and run as ROOT with the "sudo command"
    # i.e. sudo usbbiosflasher
    # If you have anyideas send me a PM on ubuntufourms.org my user name is HunterThomson
    # Name/Rename this script usbbiosflasher and save it to the ~/home directory.
    # Then run the command- chown root:root usbbiosflasher
    # Then run the command- chmod 755 usbbiosflasher
    # Then copy the script to the directory /usr/bin.
    # Run this comand to do that- sudo cp ~/usbbiosflasher /usr/bin
    # You also must have the program "mbr" installed
    # You can install the mbr program by running this comand in the shell on Ubuntu
    # sudo apt-get install mbr
    # In Arch Linux you have to get it from Aur
    # First you will need to know a few things...
    # You will also need to know the Mount Point i.e. /media/disk and the /dev path i.e. /dev/sdb1.
    # You can find these by using the df -T comand.
    # Run df -T in the shell. Then plug in the USB Thumb Drive and run the df -T comand agin.
    # The new listing is the USB Thumb Dirve.
    # Also check to make sure the File System tipe is vFAT or FAT16 or FAT32.
    # If it is not use gparted to format it to FAT32.
    # I am farly certen that all USB Thumb drives come formated with FAT file system out of the BOX.
    # You may want to fromat it anyway just to make sure.
    echo "Interactive Shell Script to Make a USB Thumb Drive \for Flashing BIOS On a Lenovo Ideapad Y510"
    echo ""
    echo "You will need to have the program mbr installed"
    echo "If you are on Ubuntu Linux you can retreve it form the repositories"
    echo "If you are on Arch Linux you will need to get it from the Aur repository"
    echo "Open anuther shell and \do that now..."
    echo ""
    verify="n"
    while [ "$verify" != y ]
    do
    printf "Do you have mbr installed... yes or no?"
    read AN1
    echo ""
    printf "You answered... $AN1 I have installed mbr. Is this correct... y or n?"
    read verify
    done
    echo ""
    if [ "$AN1" == "no" ]
    then
    echo "Install mbr now. Then run this script agin"
    exit
    else
    echo "contunuing script"
    fi
    echo ""
    # The next comand will make a directory to put needed files into. Note this file and everything init will be owned by root.
    mkdir ~/usbbiosfiles && check1="yes"
    if [ "$check1" = "yes" ]
    then
    echo "Made directory usbbiosfiles... OK"
    else
    echo "Could not \make directory usbbiosfiles"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    exit
    fi
    # The next two comands will get the FreeDOS file and the .ROM file.
    cd ~/usbbiosfiles && checka="yes"
    if [ "$checka" = "yes" ]
    then
    echo "Changing to the usbbiosfiles directory... OK"
    else
    echo "Could not Change to the usbbiosfiles directory"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    wget "http://www.fdos.org/bootdisks/autogen/FDOEM.144.gz" && check2="yes"
    if [ "$check2" = "yes" ]
    then
    echo "Download of FreeDOS... OK"
    else
    echo "Could not Download FreeDOS"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    wget "http://ubuntuforums.org/attachment.php?attachmentid=78460&d=1216648756" && check3="yes"
    if [ "$check3" = "yes" ]
    then
    echo "Download of the BIOS.ROM \file... OK"
    else
    echo "Could not Downlad the BIOS.ROM \file"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    # The next comand will name the .ROM file to the right name.
    mv ~/usbbiosfiles/attachment.php?attachmentid=78460\&d=1216648756 ~/usbbiosfiles/06CN29WW.bios.update.tar.bz2 && check4="yes"
    if [ "$check4" = "yes" ]
    then
    echo "Renameing of the BIOS.ROM \file... OK"
    else
    echo "Could not rename the BIOS.ROM \file"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    echo ""
    # The next two comands set the variables. DEVX for the path i.e. /dev/xxx and MOUNTX for the mount point i.e. /media/xxx
    verify="n"
    while [ "$verify" != y ]
    do
    echo "You will need to know the Mount Point and the dev Path. You will also need to \make sure the File System \type is vFAT, FAT16 or FAT32."
    echo ""
    echo "With the USB Thumb Drive unpluged, Open another shell and run the comand df -T Then plug \in the USB Thumb Drive and run the comand df -T one \more time. The new device listed is the USB Thumb Drive. Note the Mount Point and The dev Path and the File system Type i.e. vFAT... If the File System \type is not vFAT, FAT16 or FAT32 you will need to fromat it with gparted. You may want to format the USB Thumb Drive anyway just to \make sure. In any \case delete all files and directorys on the USB drive before you go any ferther with this program."
    echo ""
    printf "Enter the dev path the USB Thumb Drive is at?"
    read DEVX
    echo ""
    echo "Are you sure $DEVX is the dev path of the USB Thumb Drive... y or n?"
    read verify
    done
    echo ""
    verify="n"
    while [ "$verify" != y ]
    do
    printf "What is the Mount Point of the USB Thumb Drive?"
    read MOUNTX
    echo ""
    echo "Are you sure $MOUNTX is the Mount Point of the USB Drive... y or n?"
    read verify
    done
    echo ""
    install-mbr --enable A1 --partition 1 --force --timeout 0 $DEVX && check5="yes"
    if [ "$check5" = "yes" ]
    then
    echo "Installing MBR on USB Thumb Dirve... OK"
    else
    echo "Could not install MBR on USB Thumb Drive"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    tar xjf ~/usbbiosfiles/*.tar.bz2 && check7="yes"
    if [ "$check7" = "yes" ]
    then
    echo "Unpacking BIOS.ROM file... OK"
    else
    echo "Could not unpack BIOS.ROM file"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    gunzip ~/usbbiosfiles/FDOEM.144.gz && check8="yes"
    if [ "$check8" = "yes" ]
    then
    echo "Unpacking FreeDOS files... OK"
    else
    echo "Could not unpack FreeDOS files"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    mkdir ~/usbbiosfiles/fdoem144 && check9="yes"
    if [ "$check9" = "yes" ]
    then
    echo "Made directory fdoem144 in direcoty usbbiosfiles... OK"
    echo ""
    echo "Going to \sleep \for 5secs"
    else
    echo "Could not make directory fdoem144 in usbbiosfiles directory"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    modprobe loop && sleep 5 && check0="yes"
    if [ "$check0" = "yes" ]
    then
    echo "Modprobeing loop... OK"
    else
    echo "Could not \modprobe loop"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    mount -o loop ~/usbbiosfiles/FDOEM.144 ~/usbbiosfiles/fdoem144 && check10="yes"
    if [ "$check10" = "yes" ]
    then
    echo "Mounting FreeDOS on the fdoem144 directory... OK"
    else
    echo "Could not \mount FreeDOS on the fdoem144 directory"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    cp ~/usbbiosfiles/fdoem144/* $MOUNTX && check11="yes"
    if [ "$check11" = "yes" ]
    then
    echo "Copying FreeDOS files to $MOUNTX... OK"
    else
    echo "Could not copy FreeDOS files to $MOUNTX"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    cp ~/usbbiosfiles/*.ROM $MOUNTX && check12="yes"
    if [ "$check12" = "yes" ]
    then
    echo "Copying BIOS.ROM files to $MOUNTX... OK"
    else
    echo "Could not copy BIOS.ROM files to $MOUNTX"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    sync && check13="yes"
    if [ "$check13" = "yes" ]
    then
    echo "Runing the syncing command... OK"
    else
    echo "Could not run the syncing command"
    echo "look above \for \info"
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this scrip agin"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    rm -r ~/usbbiosfiles
    exit
    fi
    umount ~/usbbiosfiles/fdoem144 && check14="yes"
    if [ "$check14" = "yes" ]
    then
    echo "Unmounting of FreeDOS... OK"
    else
    echo "Could not unmount FreeDOS"
    echo "Look above for errors or problems reported and fix the problem"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this script agin"
    rm -r ~/usbbiosfiles
    exit
    fi
    verify="n"
    while [ "$verify" != y ]
    do
    printf "Do you see any errors... yes or no?"
    read AN2
    echo ""
    printf "You answered... $AN2 to errors. Is this correct... y or n?"
    read verify
    done
    echo ""
    if [ "$AN2" == "yes" ]
    then
    echo "User Repoted... Error"
    echo "Look above for errors or problems reported and fix the problem"
    echo ""
    echo "removeing directory usbbiosfiles..."
    echo ""
    echo "Reformat the USB Stick to FAT32 with gparted"
    echo "Fix the problem and run this script agin"
    rm -r ~/usbbiosfiles
    exit
    else
    echo "Success"
    echo "I did a lot of error checking too and didnt find anything"
    echo ""
    echo "Go get a pen and paper to write down these instructions"
    printf "Then hit the Enter to continue"
    read WAIT
    echo ""
    echo "Now leave the USB Thumb Drive pluged into your computer and Reboot. When the Lenovo Logo POST screen appears hit F2 to enter the CMOS setup utility. Go over to BOOT tab and go down to HardDrive \(Not Boot Order) \then \select the USB Thumb Drive as the 1st hard drve. Then F10 and yes to save changes. Your compter will reboot agin. Then when the Lenovo Logo POST Screen appers on reboot hit F4 to enter the BIOS FLASHING program. The USB Thumb Drive will be seen as the C drive \in the list on the Left, Select it. Then \select the .ROM \file \in the list on the Right and start the BIOS FLASH. \(NOTE Your hart may stop beating... This is normal) Pray to any God you know of and your computer should restart just like normal. Hit F2 and the BIOS will now stay it is 06CN29WW. You will need to \set the boot order to the way you like it and other things \if you need to because they have been changed to the default."
    fi
    echo ""
    echo "End of script"
    Last edited by hunterthomson (2008-08-10 11:17:47)

    Personally.....  (this is just how I would have written it - if it works, then it's good enough for me though )
    I would change this whole block:
    verify="n"
    while [ "$verify" != y ]
    do
    printf "Do you have mbr installed... yes or no?"
    read AN1
    echo ""
    printf "You answered... $AN1 I have installed mbr. Is this correct... y or n?"
    read verify
    done
    echo ""
    if [ "$AN1" == "no" ]
    then
    echo "Install mbr now. Then run this script agin"
    exit
    else
    echo "contunuing script"
    fi
    To this much shorter code:
    MBR='/usr/bin/install-mbr' # Or where ever you expect it to be
    if [ ! -x $MBR ] ; then
    echo "mbr doesn't appear to be installed."
    echo "If it is installed, check it's location, make sure it's executable and then make sure the MBR variable in this script is correct"
    exit 1
    fi
    I wouldn't have used the checkXX variables for each stage:
    mkdir ~/usbbiosfiles
    if [ $? != 0 ] ; then
    #failed
    echo "Could not \make directory usbbiosfiles"
    echo "look above \for \info"
    echo "Fix the problem and run this scrip agin"
    exit 1
    else
    echo "Made directory usbbiosfiles... OK"
    fi
    There is an issue with the way you do your verifications - the user can never get out unless they answer 'y' or hit CTRL+C. Something like this gives them options:
    verify="n"
    while [ "$verify" != "y" && "$verify" != "n" ]; do
    echo "You need to answer 'y'es or 'n'o"
    read verify
    echo $verify | tr "[:upper:]" "[:lower:]" # This converts the answer to lowercase so replies entered in upper case will still work
    done
    if [ $verify != 'y' ] ; then
    exit 1
    fi
    One last thing I try to do in scripts... Declare all your binaries as variables at the start of the program, then execute the binary program by using the variable. For example:
    # Binaries
    TAR='/bin/tar'
    CP='/bin/cp'
    CHMOD='/bin/chmod'
    # Execute tar and chmod the created file
    $TAR cvzf /tmp/tarfile.tar.gz /etc/*.conf
    $CHMOD 400 /etc/*.conf
    This way, it's easy to change the path in future without having to hunt through the script if the paths change, and it also ensures you're calling the programs using the full paths to make sure you're not executing some strange variant or alias that someone has setup. If I use `chmod` 30 times in a script, and the path changes in the future or on a different system (`chmod` is a bad example cause it's highly unlikely to change, but you know what I mean), then all you need to do is update the variable at the start of the script, and it all works again without having to script-hunt and change it 30 times.

  • Still in a quandary about hardware specs. What do you think?

    I need to build a new system as editing machine for CS4. Everything is more or less clear as to what I need, there are only two issues remaining:
    1. How much RAM to install, and
    2. Disk setup.
    As always there is the balance between performance and costs. Since this is not "an unlimited means available" type of machine, you will not see much esoteric components, like SSD raids or nVidia Quadro CX card. It is a dual E5472 Harpertown system (8 core), running Vista 64 Business.
    1. How much RAM would be a good balance in price/performance? 8 or 16 GB? We are talking about Kingston Value Ram DDR2-6400 ECC FBDIMM, either 4 x 2 GB ( 420) or 4 x 4 GB ( 650), with the possibility to double memory in the future. If you do not make a habit of continuously switching between PP, AE, EN, PS etc. and are mainly using only 1 application at the time, I wonder if there is a noticeable performance gain to justify the additional cost. The choice is obvious if the total cost of the machine would not be stretching available means. So what do you think?
    2. Main storage is 8 x WD Caviar Black 1 TB disks in raid50 for media, renders, scratch etc. But what about the boot disk? Either a 300 GB WD Velociraptor ( 240), or 4 x WD Scorpio (7200 RPM) 160 GB in raid10 ( 250), using on-board ESB2 chipset.
    While we are at it, does it make sense to add 4 x WD Scorpio 250 GB in Raid5 (on an Areca ARC controller with free ports) only for pagefile, projects and temporary export. Final export will be transferred over the network to a burning machine for DVD's. Backups of projects is to external USB disks and on a separate machine over VPN.
    The case has room for 8 hot swappable 3.5" disks and 8 hot swappable 2.5" laptop disks plus another disk and a DVD/BR burner internally. There are still 4 external eSATA ports available for future expansion. Foreseen video card is ATI 4870 512MB. Network is currently a 1 Gb connection, but can be enhanced to 2 Gb with 2 NIC's.
    Look forward to your reactions.

    Bill,
    The case is the
    Supermicro SC743TQ-865SQ
    and the storage bay for the 2.5" disks is the
    Addonics AE4RCS25NSA (2.5 Disk Array 4SA)
    Thanks for your remark about the difficulty of troubleshooting boot arrays. That might be an advantage for the Velociraptor.
    Dag, no. I don't make the mistake of visiting Amsterdam, unless it is absolutely necessary, like visiting the IBC, let alone visiting those bars. I came to realize that Vista has grown up a bit with SP1 and with full support for 64 it now makes a bit more sense than XP64. It does imply a couple of days tweaking Vista (= removing 'features') to make it work decently, but after that is accomplished I will make a slip streamed DVD version for future installs, so that is a one time investment. With recent enhancements in Nullsoft that is easily accomplished, including all intermediate patches and 'Patch Tuesday' versions.

  • I have a 2009 Macbook Pro with 1T hdd 8GB Ram and ran Maverick without problem...Yosemite installation has me completely frozen, nothing works but the spinning ball...I had to force shutdown last night, and haven't turned it on again...what do you ad

    I have a 2009 Macbook Pro with 1T hdd 8GB Ram and ran Maverick without problem...Yosemite installation has me completely frozen, nothing works but the spinning ball...I had to force shutdown last night, and haven't turned it on again...what do you advise?  During installation emptied cache, etc. Backed up using time machine, fortunately.

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Yosemite: Reboot from the Recovery HD. Select Reinstall OS X from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    5. Reinstall Yosemite from Scratch:
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    How to Clean Install OS X Yosemite
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • I have lost my cd's and screen became gray i can not boot what should i do?

    Hi all
    i have lost my cd's and screen became gray i can not boot what should i do?
    i have tried to reset Vram
    tried to run safe boot
    but nothing happends
    i have a macbook pro core 2 duo 2GB ram 160 gb hard disk

    Use the computer your on now to download and burn a ISO of PartedMagic to a cd.
    In Windows 7 you can right click on the downloaded ISO and click burn to disk, other Windows versions use the free ImgBurn software.
    In OS X you can burn the ISO using Disk Utility.
    Hook up a external drive to the target Mac.
    Stick the PartedMagic disk into the Mac and reboot holding option and c keys (I forget which one works)
    Use the first option (default) to load PartedMagic into memory (watch out the disk will eject!)
    Once in PartedMagic there is a Mount Drive icon on the right, doubleclick it twice to open two windows (three total) you can now transfer your files after mounting the disks/partitions using the two open file windows.
    Unmount the drives before using the "Start" like menu in the lower left corner to quit PartedMagic.
    If your Mac works with all this then your in good shape, you just have a hosed operating system and a $29 Snow Leopard install disk (c boot off of it) and a Disk Utility Erase (with Zero Erase preferred) and a reinstall of OSX Snow leopard will do the trick.
    If your computer boots off the PartedMagic cd, but you can't find/access the internal drive, then your boot drive is dead and you need to replace it or have someone replace it for you.
    If your computer doesn't boot off the PartedMagic cd, then it's likely a serious hardware issue.

  • I accidentally deleted my iPhoto when i empty my trash? i think 1year ago.i want it back but i heard that its difficult...my 2nd option is i'll buy iPhoto from apps. what do you think guys? thank you and god bless!

    i accendentaly deleted my iphoto when i empty my trash. i think 1 year ago. i want it back but they say its difficult. now i think i'll buy iphoto to apps. what do you think guys??? ty and god bless!

    A bunch of totally different questions
    iPhoto is an application and it is in your applications folder - is it there? It must be in teh Applications folder on your boot drive - it can not be on an external drive
    The photos are kept in the iPhoto library (by default and highly recommended) - is that what you deleted? It can be anyplace by by default it is in your pictrues folder
    Time Machine is a backup program that backuse your your Mac - you do NOT directly access its backup files but you use the Time Machine application to restore files - see http://support.apple.com/kb/HT1427?viewlocale=en_US&locale=en_US for details
    Your post is not at all clear as to what you have or what you want to do
    If in fact you do have a copy of the photos on an external hard drive as you say you thikyou do them you launch iPhoto and import them to iPhoto (file menu import  --  or drag them to the iPhoto icon in the Dock)
    If you have a time machine backup of your iPhoto library and you want to use that then you launch TM and go to the time you wna tto restore from, select the iPhoto library and click restore
    If the above does not cover what you have and what you want please post back with exact details of what you have and what you want to do
    LN

  • Is there a good GUI tool on linux for backups? What do YOU use?

    Hi all,
    I feel Linux lacks a good and simple graphical tool to do desktop backups for regular users. I'm thinking of writing one myself (probably a front-end to a good command line tool), but before I get started, I want to make sure I'm not reinventing the wheel.
    So:
    - Is there a good graphical tool available already? It should be: simple (minimalist interface, sane defaults), fast and incremental.
    - What do YOU currently use for your desktop backups?
    EDIT: rsync alone is not great, because a good backup solution keeps multiple snapshots. Imagine you deleted a file by accident 15 days ago, and realize only today: rsync won't save you.
    EDIT2 : I have tried backintime, I think it's a step in the right direction, but it's not that great. Maybe I should improve on it instead of starting something new, though.
    EDIT3 : Has anyone tried PyBackPack (http://andrewprice.me.uk/projects/pybackpack/) ? I'm trying it at the moment and it seems to be getting it right. I'd like to hear some success stories before getting my hopes to high
    Last edited by lardon (2010-05-11 13:33:55)

    It doesn't snapshot -- I occasionally back-up my back-ups and don't need that -- but it does its job well.
    #!/bin/bash
    ### System Backup ##############
    # Version 0.5 by Scott Garrett #
    # Wintervenom [(at)] gmail.com #
    backup_label="demonpit"
    exclude="/dev/shm/rsync-excludes.rc"
    excludes=(
    'tmp/*' # Temp files.
    'tmp/.*' # Hidden temp files.
    '.mozilla/firefox/*/Cache' # Firefox caches...
    'cookies.sqlite' # Mozilla-based cookies.
    'formhistory.sqlite' # Mozilla-based form history.
    '.thumbnails' # Thumbnail cache.
    '.recently-used.xbel' # Recent-open history.
    '.ccache' # Compiler caches
    'sessionstore.js' # Firefox session-saves.
    '.gvfs' # GNOME virtual filesystem.
    '.local/share/Trash' # XDG trash.
    '.local/share/user-places*' # Recent-open history.
    '.purple/logs' # Pidgin/Finch logs.
    '.cache/Thunar/thumbnailers.cache' # Thumbnailer cache.
    '.cache/chromium' # Chrome cache.
    '*~' # Backup/temp files.
    out () {
    echo ">> $*"
    stat_done () {
    echo ">> ...done."
    stat_fail () {
    echo ">> ...failed!"
    if [ $UID != '0' ]; then
    echo "Must be executed as root user."
    exit 1
    fi
    out "Mouting backup device ('$backup_label')..."
    backup_dev=`readlink -f "/dev/disk/by-label/$backup_label"`
    if mount | grep -qF "$backup_dev on"; then
    backup_root=`mount | grep -F "$backup_dev on" | cut -d' ' -f3`
    echo " - This device seems to already be mounted at '$backup_root'."
    echo ' Do you want to use this, instead (y/N)?'
    echo -n ' << '
    read -n1 confirm
    echo
    [ "$confirm" != 'y' ] && exit 1
    else
    backup_root="/mnt/$backup_label"
    mkdir -p "$backup_root"
    if ! mount -o noatime,user "$backup_dev" "$backup_root"; then
    echo ' - Failed to mount device.'
    exit 1
    fi
    echo ' - Device mounted successfully.'
    fi
    out "Backing up system..."
    echo > /tmp/rsync-excludes.rc
    for file in ${excludes[@]}; do
    echo "$file" >> "$exclude"
    done
    rsync -axl -h --progress --delete --delete-excluded --exclude-from="$exclude" /{home,usr,opt,var,*bin,lib*,etc,boot,root,srv} "$backup_root/$HOSTNAME"
    mkdir -p "$backup_root/$HOSTNAME/"{dev,sys,proc,tmp,mnt,media}
    mkdir -p "$backup_root/$HOSTNAME/var/"{tmp,lock}
    chmod 1777 "$backup_root/$HOSTNAME/tmp" "$backup_root/$HOSTNAME/var/"{tmp,lock}
    stat_done
    out "Backing up package list..."
    pacman -Qqe | grep -v "$(pacman -Qmq)" > "$backup_root/$HOSTNAME/pacman.list"
    pacman -Qmq > "$backup_root/$HOSTNAME/aur.list"
    stat_done
    out "Unmouting backup partition..."
    if umount "$backup_dev"; then
    rmdir "$backup_root/$HOSTNAME"
    rmdir "$backup_root"
    else
    echo ' - Could not unmount.';
    fi

  • HT204370 what do you do when A preordered movie wont download and says it has already downloaded?

    what do you do when a preordered movie says you cant reorder it when you never got it?

    Try manual install, as outlined in the link below.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • What does "You can't open the application "Setup QuarkXPress6.1" because power PC applications are no longer supported" mean?  I am trying to install an old version of Quark on my 2010 Macbook pro.

    What does "You can't open the application "Setup QuarkXPress6.1" because power PC applications are no longer supported" mean?  I am trying to install an old version of Quark on my 2010 Macbook pro.

    jennyba wrote:
    What does "You can't open the application "Setup QuarkXPress6.1" because power PC applications are no longer supported" mean?  I am trying to install an old version of Quark on my 2010 Macbook pro.
    As has been mentioned, the software in Mac OS X that supported the running of PPC applications rather than current Intel applications on Intel computers such as your MBP was last seen in Snow Leopard. However, since I believe your MBP originally came with Snow Leopard, you may be able to boot from the DVD's that came with the computer and install it on an external HD and try to install Quark on that.
    I think a better solution would be to buy Snow Leopard Server from Apple by phone (800-692-7753 and be specific about wanting part # MC588Z/A), installing it as a virtual machine in software like VMware Fusion, and then installing Quark 6 in that. You'll still need a license number to authorize the Quark installation.

  • Random kernel panics on iPhone 4 GSM: what would you do?

    Hello all,
    I'm posting here in hopes that someone could help shed some light on the matter before I give up and send my phone in for repair, provided it will be repaired/replaced given how random this issue is.
    I've had an iPhone 4 since November 2010, a GSM unit as I'm in Europe. Jailbroke it on a dull day just to see if I'd have any use for that, restored it to stock firmware (using the backup I had created before applying the jb) about 24 hours later. No trace of jb on it at all nowadays, basically. The phone and the system are as vanilla as they can be. The only customization, so to speak, is the provisioning profiles in my name as I'm an iOS developer.
    Ever since March, the phone will sometimes randomly reboot. There is no pattern whatsoever: I may be fiddling with it, I may be keeping it in my pocket, it may be charging, it may be placidly sitting on a table undisturbed. Out of the blue, the Apple logo will show up and the thing will reboot, and won't ask for the PIN either. I hadn't thought much of it as it was very rare, but lately it's become more apparent and I decided to look for some logs.
    To my horror, I found that ~/Library/Logs/CrashReporter/MobileDevice/Jolliphone/Panics on my Mac was way overpopulated. The weirdest thing is that all the logs look virtually the same, although they all end abruptly in different points (which suggests that they were so brutal that there was no "time" to write the whole thing down.)
    Here is an example:
    Incident Identifier: [...]
    CrashReporter Key:   [...]
    Hardware Model:      iPhone3,1
    Date/Time:       2011-05-28 10:20:51.833 +0200
    OS Version:      iPhone OS 4.3.3 (8J2)
    panic(cpu 0 caller 0x8007f3e5): "buf_brelse: bad buffer = 0xd0705fc8\n"@/SourceCache/xnu/xnu-1735.46/bsd/vfs/vfs_bio.c:2348
    Debugger message: panic
    OS version: 8J2
    Kernel version: Darwin Kernel Version 11.0.0: Wed Mar 30 18:51:10 PDT 2011; root:xnu-1735.46~10/RELEASE_ARM_S5L8930X
    iBoot version: iBoot-1072.61
    secure boot?: YES
    Paniclog version: 1
    Epoch Time:        sec       usec
      Boot    : 0x4de0afb5 0x00000000
      Sleep   : 0x00000000 0x00000000
      Wake    : 0x00000000 0x00000000
      Calendar: 0x4de0b02c 0x0007b411
    Task 0x812e7c60: 10957 pages, 100 threads: pid 0: kernel_task
    Task 0x812e7a50: 187 pages, 3 threads: pid 1: launchd
    Task 0x812e7210: 152 pages, 2 threads: pid 13: usbethernetshari
    Task 0x812e7000: 134 pages, 4 threads: pid 14: syslogd
    Task 0x839be840: 543 pages, 2 threads: pid 17: lockdownd
    Task 0x839be420: 1068 pages, 23 threads: pid 19: mediaserverd
    Task 0x839be210: 383 pages, 3 threads: pid 20: mediaremoted
    Task 0x839be000: 342 pages, 3 threads: pid 21: mDNSResponder
    Task 0x83ad2c60: 1593 pages, 12 threads: pid 22: locationd
    Task 0x83ad2a50: 588 pages, 4 threads: pid 23: imagent
    Task 0x83ad2840: 586 pages, 1 threads: pid 24: fairplayd.N90
    Task 0x83ad2630: 764 pages, 15 threads: pid 25: configd
    Task 0x83ad2420: 407 pages, 4 threads: pid 26: awd_ice3
    Task 0x83ad2210: 411 pages, 3 threads: pid 27: apsd
    Task 0x83ad2000: 225 pages, 2 threads: pid 28: accessoryd
    Task 0x83b8ac60: 6689 pages, 18 threads: pid 29: SpringBoard
              thread 0xc0a780d0
                        kernel backtrace: d2663ac8
                          lr: 0x8006de75  fp: 0xd2663af4
                          lr: 0x8006e085  fp: 0xd2663b14
                          lr: 0x8006e19f  fp: 0xd2663b1c
                          lr: 0x80015fed  fp: 0xd2663b34
                          lr: 0x8007f3e5  fp: 0xd2663b74
                          lr: 0x8007fec5  fp: 0xd2663b8c
                          lr: 0x8007fedf  fp: 0xd2663b94
                          lr: 0x800a256f  fp: 0xd2663bd0
                          lr: 0x80132735  fp: 0xd2663bd8
                          lr: 0x80132cd3  fp: 0xd2663c00
                          lr: 0x80158d45  fp: 0xd2663c10
                          lr: 0x80156dab  fp: 0xd2663ce0
                          lr: 0x8013393f  fp: 0xd2663d08
                          lr: 0x8013399f  fp: 0xd2663d18
    They are all like that. The only thing that's different is the OS system, which ranges from 4.3 to 4.3.3, and the location that generated the panic:
    panic(cpu 0 caller 0x8007f3e5): "buf_brelse: bad buffer = 0xd0704640\n"@/SourceCache/xnu/xnu-1735.46/bsd/vfs/vfs_bio.c:2348
    panic(cpu 0 caller 0x8007f3e5): "buf_brelse: bad buffer = 0xd070aa98\n"@/SourceCache/xnu/xnu-1735.46/bsd/vfs/vfs_bio.c:2348
    panic(cpu 0 caller 0x8007f3e5): "buf_brelse: bad buffer = 0xd06fdf88\n"@/SourceCache/xnu/xnu-1735.46/bsd/vfs/vfs_bio.c:2348
    …and so on. The caller is always 0x8007f3e5, and the buffer location is always in 0x0d6…–0x0d7… range. This is what leads me to think that it may be some memory problem.
    As I said there is absolutely no pattern in this. Sometimes it will stay a month without panicking – after a few panics on April 1st, it happened again on May 2nd – yet in other occasions it will panic 4 times within 8 minutes as it happened yesterday morning.
    Lately it's been happening more often when I charge it using the wall adapter, but then again it's fairly inconsistent: I have kept it connected since last evening on purpose, and it hasn't panicked once.
    I have tried restoring it as a new phone, just to make sure that it wasn't a software problem, and the very same thing happened as soon as I connected to my father's iPad 2 adapter.
    If you have read so far, I want to thank you very much for your patience. I'll get to the point: what should I do?
    I spent 35 minutes on the phone with AppleCare this morning and was about to give the green light to have it picked up, but the woman told me that I couldn't provide the logs to tech support, and that they'd run some tests on their own and, if they could reproduce the problem, I would get a refurbished phone in place of this one, otherwise they'd send the same unit back. Considering that it's impossible to reproduce it on purpose, I'm afraid that I will just end up being phoneless for two weeks (with the added issue of finding a way to stick this micro-sim into a phone that takes regular-sized sims), and ultimately be sent back the faulty phone.
    I told the woman I'd consider going to the Apple Store in Rome, so I could at least speak with a human person and expose the problem in more detail. I do have a repair ID and apparently I can just book a slot at the genius bar and have them access the repair ID data.
    The problem is that I live 200 km from Rome, and it would take the better part of a day and it would be more money spent on this issue to get there and back. And I wouldn't even be certain that they'd replace it: even if they agree to replace it, what if they're out of stock on 32 GB units, for instance?
    So here is the dilemma: I have a phone that feels very unstable given the 18 (eighteen) panics I've had in the last three days, and I'm facing either wasting time and money to go to an Apple Store, or being without the phone for the better part of two weeks, again without any certainty.
    Going to my carrier (Vodafone) is pointless: they referred me to Apple; at most they will ship it for me, but at that point I'd rather do it myself.
    As for the local Apple Premium Reseller, they are an authorized support center for Macs, but they don't offer any support for iPhones at all.
    What would you do?
    Thanks.

    DaVBMan wrote:
    Not saying you are complaining, I know it isn't what one likes, but just the way it is and quite normal.
    You can buy a used one from somewhere and just continue on your same contract (if same type of phone, eg: You didn't have original one before and go buy a used 3G now..then you need to change plans). But if you had 3G before and buy a used 3G now, you can activate it and your contract shouldn't restart.
    A used one you buy shouldn't have a SIM card in it but even if it does, you don't want to use it. You need to go to AT&T store and request a new SIM. They will give you one set for your account and you just go home and activate using same account (thus no contract changing). If you try to use another SIM without getting one from AT&T it could mess with your contract so best to deal with them first to get one coded for you. There is nothing wrong with buying a used iPhone and saying you want to put it on your existing account. You can do that with any phone. You already have the data plan etc required so they don't care.
    That was useful info, and I'm not complaining (well, I am, but it does no good, so it's a rhetorical complaint)...
    What I'm really looking for is opinions about what would be the most sensible/cost effective way to go right now, given the available options.
    Thanks,
    Lorraine

  • Flashing file folder on boot, what does it mean?

    flashing file folder on boot, what does it mean?

    That folder with the question mark icon means that the MacBook can't find the boot directory. That can either mean it can't find the hard drive or the Operating System data on the hard drive is somehow corrupted.
    Put your install DVD into the optical drive (CD/DVD drive) and reboot. Be sure to either use the disc that came with your Mac, or, if you installed a later Mac OS X version from disc, use the newer disc. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option Key until the Install Disk shows up) until the apple shows up. That will force your MacBook to boot from the install DVD in the optical drive.
    Or if you are running 10.7 Lion, boot from the recovery partition (Command +R on boot) and use Disk Utility to repair your OS 10.7 partition.
    When it does start up, you'll see a panel asking you to choose your language. Choose your language and press the Return key on your keyboard once. It will then present you with an Installation window. Completely ignore this window and click on Utilities in the top menu and scroll down to Disk Utility and click it. When it comes up is your Hard Drive in the list on the left?
    If it is, then click on the Mac OS partition of your hard drive in the left hand list. Then select the First Aid Tab and run Repair Disk. The Repair Disk button won't be available until you've clicked on the Mac OS partition on your hard drive. If that repairs any problems run it again until the green OK appears and then run Repair Permissions. After repairing use Startup Disk from the same menu to choose your hard drive for restarting from your hard drive.
    If your hard drive isn’t recognized in Disk Utility then your hard drive is probably dead.

  • What is the main benefit of  buying an ipad ? what can you actually do in 16, 32 0r 64 gb when you have 510 gb laptop with you ?

    What is the main benefit of  buying an ipad ? what can you actually do in 16, 32 0r 64 gb when you have 510 gb laptop with you ?

    For me? the advantage of an ipad over a laptop....instant on, instant off, thin and portable. Check your e-mail and put it down, not wait 5 minutes to boot, check your mail, shut it down.
    Is it as fully functional as a laptop? no. Not meant to be. What it lacks in functionality it makes up for in portability.
    Is a necessity? no. But quite handy.

Maybe you are looking for

  • Anyone having issues with playback on an external monitor in the new CC 2014?

    So Premiere has updated its little self on my mac and now won't work with my external monitor via HDMI or Apple TV. Works absolutely fine the rest of the time but as soon as I try and get external playback to work it crashes. Is anyone else having th

  • ITunes quits when I "Add file to library"

    TSSIA. When I choose "Add file to library" to import either a song or a video, iTunes just shuts down. This is probably posted somewhere, but couldn't find it. Anybody have any advice?

  • Get locals and globals using API

    Hi, I am making in LV an editor for TS. User should be able to change the value of file globals and locals variables. Using TS API, is possible to get all the file globals and locals variables without knowing the name that those variable have in TS?

  • Lightning docks and what cases works with them!

    Being racking my brain for couple weeks now and trying to find info and get hope from people on various mac forums but to no avail, so thought I would ask on here I currently have an old 30 pin connector dock with the lightning adaptor on it so I can

  • EMAIL Declined option

    Hi Experts, After Identifying and confirming the customer in IC CRM 2007, when customer is not wishing to give his E-mail id, i should able to disable the field by check mark E-mail declined.what are the option available for this particular requireme