Autohibernate with pm-utils and laptop-mode

Hi all,
I know this is a frequent problem but I cannot find any solution around the web.
I am using pm-utils and am able to suspend to disk and ram properly.
Now I want to hibernate automatically based on battery condition of my laptop.
I have installed acpi and laptop-mode-tool,  and both seem to work correctly, my battery status appear on conky, and every other events based on laptop-mode run smoothly.
I even wrote an /etc/laptop-mode/auto-hibernate.conf according to this post https://bbs.archlinux.org/viewtopic.php?id=50702.
But the problem is still there, the laptop doesn't autohibernate on low battery.
If anyone has managed to autohibernate based on low battery, I will glad to know his/her solution,
regards
Last edited by capnion (2012-01-25 10:38:18)

even if im not using the tools you pasted. this is what ive done (since my battery hardware is a bit shaky, i had to add some cornercases, which lead to me creating a new script).
some bits have been taken from the web (notify-send function for example).
see if it works for you. of course, input will be appreciated too!.
#!/bin/bash
# power management script for my crappy laptop
#BAT_FILE='/proc/acpi/battery/BAT0/state'
BAT_BASE='/sys/class/power_supply/BAT0/'
BAT_FILE='/sys/class/power_supply/BAT0/voltage_now'
PDIR="/run/"
LCK_FILE=${PDIR}`basename $0`.pid
SAFE_STATE='5000000'
MIN_STATE='10000000'
MAX_STATE='12500000'
THRESHOLD='10500000'
HIB_SECS=60
notify() {
# Usage: notify "title" "description" [options to pass to send-notify"
title="$1"
body="$2"
shift 2
opts="$*"
# Send messages to users listed by the 'users' command, but only once
# Maybe sh has a better way of doing set operations, but this works:
SENT=""
for USER in $(users); do
case $SENT in
"$USER") ;;
*" $USER") ;;
"$USER "*) ;;
*" $USER "*) ;;
# use 'su USER' to send the message
*) SENT="$SENT $USER";DISPLAY=:0 su $USER -c "notify-send $opts \"$title\" \"$body\"" ;;
esac
done
# test if we are root.
if [ $EUID != 0 ]; then
sudo "$0" "$@"
exit $?
fi
#test if we are running already
echo "LCK_FILE=$LCK_FILE"
if [ -f "${LCK_FILE}" ]; then
MYPID=`head -n 1 "${LCK_FILE}"`
TEST_RUNNING=`ps -p ${MYPID}|grep ${MYPID}`
if [ -z "${TEST_RUNNING}" ]; then
#the process is not running
echo $$ > "$LCK_FILE"
else
echo "`basename $0` is already running [${MYPID}]"
exit 0
fi
else
echo $$ > "$LCK_FILE"
fi
if [ -a "$BAT_BASE" ]; then
PRESENT=$(cat ${BAT_BASE}/present)
if [ $PRESENT == '0' ]; then
echo "Battery not present!"
rm "${LCK_FILE}"
exit 0
else
CURR_STATE=$(cat ${BAT_BASE}/voltage_now)
CHAR_STATE=$(cat ${BAT_BASE}/status)
fi
else
echo "Something wrong, file missing!"
rm "${LCK_FILE}"
exit 1
fi
if [ $CURR_STATE -lt $SAFE_STATE ]; then
echo "buggy batt, ignored result: $CURR_STATE"
rm "${LCK_FILE}"
exit 0
fi
if [ $CURR_STATE -lt $THRESHOLD ]; then
if [ $CHAR_STATE != "Charging" ]; then
echo "battery level low, hibernating in $HIB_SECS seconds"
notify "BATTERY STATUS" "battery level low, hibernating in $HIB_SECS seconds. Connect to AC to cancel"
sleep $HIB_SECS
CHAR_STATE=$(cat ${BAT_BASE}/status)
if [ $CHAR_STATE != "Charging" ]; then
/usr/sbin/pm-hibernate
# notify "BATTERY STATUS" "Comming out of hibernate!!"
rm "${LCK_FILE}"
exit 0
fi
notify "BATTERY STATUS" "Charger plugged. hibernate disabled"
fi
else
echo "battery state: $CHAR_STATE"
echo "battery level: $CURR_STATE"
# notify "battery level:" "$CURR_STATE"
fi
rm "${LCK_FILE}"
it is run by root every minute. it warns through notify-send one minute prior to hibernating, and aborts if the laptop was plugged within that minute.
some variables should be tweaked for your battery
EDIT: fixed a bug when testing if battery was being charged/discharged. added test for root.
Last edited by eldragon (2012-01-25 14:33:40)

Similar Messages

  • I need to repair a Macbook Pro with disk utility using target mode to another my iMac. Can I use ethernet cable or must it be firewire?

    I need to repair a Macbook Pro with Disk Utility using target mode connected to my iMac. Can I use ethernet cable to connect them or must it be firewire?

    Firewire

  • My email won't open-it tries and then cuts out.  This is occurring with my desktop and laptop.  How do it fix this?

    my email won't open-it tries and then cuts out.  This is occurring with my desktop and laptop.  How do it fix this?

    Have you tried the usual tune-up practices -
    Repair permissions, etc.?

  • I deleted my Boot Camp partition with Disk Utility and now I cannot reclaim the freespace?

    I deleted my Boot Camp partition with Disk Utility and now I cannot reclaim the freespace?
    And when I try to add a partition to the free space, and try to apply I do this:
    I press apply and it does its thing for like a second, I switch tabs and I get this:
    No matter how many times I reboot it doesn't work. Please help

    diskutil list:
    diskutil mergePartitions:

  • Slow boot with systemd due to NetworkManager and laptop-mode-tools

    ernestas ~ $ systemd-analyze blame
    25787ms NetworkManager.service
      3440ms laptop-mode-tools.service
      1792ms systemd-logind.service
      1573ms systemd-modules-load.service
      1519ms home.mount
      1305ms polkit.service
       977ms systemd-udevd.service
       903ms systemd-sysctl.servic
    What could be the underlying problem? How do I solve it?

    Okay. I no longer use laptop-mode-tools, but NetworkManager still seems to be slow:
    ernestas ~ $ systemd-analyze blame
      3592ms NetworkManager.service
      3013ms systemd-logind.service
       869ms dev-sda7.swap
       762ms home.mount
       666ms systemd-modules-load.service
       546ms systemd-udev-trigger.service
       523ms systemd-udevd.service
       500ms dev-hugepages.mount
       479ms sys-kernel-debug.mount
    Last edited by ernetas (2012-11-03 16:01:44)

  • TuxonIce and laptop-mode?

    I've got the tuxonice-patched kernel running on my laptop. Been using it without any problem for hibernate and restart. Just today, my system was running slowly and it turned out my processor was stuck in powersave mode (0.8 GHz on a 2.4GHz machine), so since I was in a rush, I did `echo performance > /sys/devices/system/cpu/cpu0/scaling_governer` (excuse any typos).
    Thing is, I believe this happened because I hibernated while in powersave (not plugged in) and started my laptop plugged in. Does anyone know whether this is how its supposed to behave, and what I can do so that laptop-mode sets the governers properly however I hibernate and start up. Probably some services I need to restart?

    cant help you there as i dont use it, but heres the relevant part in pm-utils:
    #!/bin/sh
    # 99laptop-mode: Re-apply laptop mode tools settings
    if [ -f /etc/pm/sleep.d/99laptop-mode ]; then
    continue
    else
    case "$1" in
    hibernate|suspend)
    # Stopping is not required.
    thaw|resume)
    # Make laptop mode tools forcibly re-apply the hardware settings
    # that laptop mode tools applies.
    if [ -e /usr/sbin/laptop_mode ] ; then
    /usr/sbin/laptop_mode auto force
    fi
    *) exit $NA
    esac
    fi
    have you tried troubleshooting with pm-utils?

  • [SOLVED] Systemd and laptop-mode-tools frequency scaling

    Hi all.
    After a long time with no arch updates (november 2011) for various reasons, I decided to reinstall Arch from point 0 on my Clevo laptop.
    I was pleased to see nothing went bad, all is now set like I want. I installed systemd yesterday. All very straightforward for me, I only have a problem with CPU frequency scaling plus some minor glitches.
    Before systemd, everything went fine. Ondemand governor, set up like I wanted.
    Now when on AC the system uses ondemand, but when on battery it uses the conservative governor. What's more, it does not go over 1.6GHz (2.54GHz max).
    Here are some infos about it:
    [adriano@M735T ~] cpupower frequency-info
    analyzing CPU 0:
    driver: acpi-cpufreq
    CPUs which run at the same hardware frequency: 0 1
    CPUs which need to have their frequency coordinated by software: 0
    maximum transition latency: 10.0 us.
    hardware limits: 800 MHz - 2.53 GHz
    available frequency steps: 2.53 GHz, 2.53 GHz, 1.60 GHz, 800 MHz
    available cpufreq governors: ondemand, performance
    current policy: frequency should be within 800 MHz and 1.60 GHz.
    The governor "ondemand" may decide which speed to use
    within this range.
    current CPU frequency is 1.60 GHz.
    boost state support:
    Supported: yes
    Active: yes
    [yes this is all come out of the cpupower command, no mention of CPU 1. Is this normal?]
    Of course LMT is set up correctly
    CONTROL_CPU_FREQUENCY="1"
    BATT_CPU_MAXFREQ=fastest
    BATT_CPU_MINFREQ=slowest
    BATT_CPU_GOVERNOR=ondemand
    BATT_CPU_IGNORE_NICE_LOAD=1
    LM_AC_CPU_MAXFREQ=fastest
    LM_AC_CPU_MINFREQ=slowest
    LM_AC_CPU_GOVERNOR=ondemand
    LM_AC_CPU_IGNORE_NICE_LOAD=1
    NOLM_AC_CPU_MAXFREQ=fastest
    NOLM_AC_CPU_MINFREQ=slowest
    NOLM_AC_CPU_GOVERNOR=ondemand
    NOLM_AC_CPU_IGNORE_NICE_LOAD=0
    [adriano@M735T ~] sudo systemctl status laptop-mode-tools.service
    laptop-mode-tools.service - Laptop Power Saving Tools
    Loaded: loaded (/usr/lib/systemd/system/laptop-mode-tools.service; enabled)
    Active: active (exited) since Sun, 02 Sep 2012 17:03:45 +0200; 4h 34min ago
    Main PID: 367 (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/laptop-mode-tools.service
    Sep 02 17:03:43 M735T laptop_mode[367]: /usr/sbin/laptop_mode: line 198: /dev/fd/1: No such device or address
    Sep 02 17:03:44 M735T laptop_mode[367]: /usr/sbin/laptop_mode: line 198: /dev/fd/1: No such device or address
    Sep 02 17:03:44 M735T laptop_mode[367]: /usr/sbin/laptop_mode: line 198: /dev/fd/1: No such device or address
    I wonder why LMT status is "exited"
    OK bin that, I just now see something is wrong. I said it used conservative, but I'm on battery and it now says ondemand (still 1.6GHz max). However it seems it does so casually.
    ACPI:
    [adriano@M735T ~] acpi
    Battery 0: Discharging, 53%, rate information unavailable
    This may be (?) or may not be linked with nother problem I have: when unplugging the AC the KDE battery monitor does not update. It says AC is plugged and it will not activate power saving features (screen dimming, suspend...)
    Note that this battery monitor problem occurred even before systemd, so it should not be linked to the above problem. However I'm not 100% sure the above problems did not occur before installing systemd since I only had the system up and running for a comple of days. I seem to recall I checked and it worked fine.
    Any idea why all this happens?
    Last edited by OdinEidolon (2012-11-20 08:56:31)

    Ok rebooted and this is the output of the pm-powersave log file:
    (AC IN, no battery)
    (pastebin)
    http://pastebin.com/Kf2Lx7UQ
    If I grep cpupower:
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower true:
    Setting cpupower frequency governor to conservative...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower true: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    Running hook /usr/lib/pm-utils/power.d/cpupower false:
    Setting cpupower frequency governor to ondemand...Setting cpu: 0
    /usr/lib/pm-utils/power.d/cpupower false: success.
    right now:
    1) cpupower reports ondemand and 2.54GHz (right)
    2) acpi -bi reports nothing as it should (battery is disconnected)
    3) acpi -a reports AC in as it should
    4) all KDE stuff works OK
    Now I plug the battery in:
    1) cpupower reports ondemand and 2.54GHz (right)
    2) acpi -bi reports nothing, which is wrong
    3) acpi -a reports AC in as it should
    4) KDE battery monitor reports no battery in, as signaled by acpi
    5) if performing acpi_listen ,it reports nothing interesting
    Now I unplug AC:
    Absolutely nothing changes (not even in the log file) but:
    1) cpupower reports ondemand and 1.6GHz (wrong)
    2) acpi -bi reports nothing, which is wrong
    3) acpi -a reports no AC as it should
    4) KDE battery monitor reports no battery in, as signaled by acpi,  but it also reports AC is inserted

  • Xfce4-power-manager and laptop-mode-tools + backlight problems.

    Cross posted from here: https://bbs.archlinux.org/viewtopic.php?id=127992
    I don't know which forum it belongs to, so maybe a mod can close the one in the wrong forum.
    Out of curiosity, do these two tools conflict with each other? There seems to be some features that do the same thing, ie harddrive spin down time, but I'm not sure if these two will try to kill each other trying to configure the same power settings. If they do conflict, how could I go about disabling the conflicting parts (on either)? laptop-mode-tools claims it needs acpid "for ACPI support", however, acpid seems to be grabbing the standby event and throwing the laptop in standby despite the standby button bound to do nothing in xfce-power-manager. If I take out acpid, does that mean laptop-mode will no longer detect acpi events such as connecting/disconnecting AC power and thus not change modes when its plugged in?
    Another problem I've had after installing xfce4-power-manager is that when I use the brightness hotkeys the backlight gets stuck and starts flashing, locking up the system until I force shutdown. However, I can use the brightness plugin without trouble at all. What's causing the power manager to screw up setting the brightness since it clearly seems to work otherwise.

    It is easier to close this one and move the other thread over here. Just continue there.
    BTW better use the Report button when you want to have a thread of yours moved to another forum. That way it is guaranteed a mod will see this in time. And you never need to cross post.

  • Cant restore my macbook with Disk utility and my .dmg image

    My macbook would not boot anymore. Stuck on gray screen with apple logo, spinning wheel and a loading bar for a while after shutting off.
    I was able to get to Disk Utility in the recovery mode and, after a while, was able to make an image of my filesin an attempt to back them up.
    The .dmg was put on an external and i checked it on my imac, i could open the .dmg file and browse all my files from my macbook, so those are safe!
    After that i tried to wipe the SSD of my macbook and put the image back but that didn't work, also some resource is busy errors.
    After trying this a few times without succes i figured i'd try to do a clean install. This worked.
    My macbook air is working again but if Iuse Disk Utility in the recovery now and try and restore my image (.dmg file) it gives me Restore Failure; An error (-16) occured (resource busy) as well. I also tried to copy the dmg onto my macbook and run disc utility when booted into OSX. I open up the back up .dmg with Disk utility, then i go to my macbooks partition (Macontiosh HD) and use that as a destination and drag the mounted image as the source as shown on the image below. Am I doing something wrong here?
    Doing this i get an error as well: (-119,930,878) Resource busy as you can see.
    What can i do to get my image back on my macbook? Any 3rd party software?
    I considered just transferring the files after opening the .dmg file but this works only for documents and not for programs and settings of the default apps.
    I've looked all over the Internet and it seems more people have had this error but then with making the image, they also suggest unmounting the destination disk before trying to restore but my destination is Macintosh HD, i cant really unmount that can i?
    Thanks in advance!

    To make a clone, in the future you need to use a program like superduper or carbon copy cloner.
    Either program makes an identical clone while preserving certain system files and marking/indicating to OS X that the clone is bootable.
    Using Disk Utility to make a DMG was a good idea, but this will not yield a bootable image.
    If Disk Utility could do a 1:1 copy of everything, then people would be using it to rip/duplicate DVDs.
    But Disk Utility does not (it leaves out certain invisible/system files), hence it cannot duplicate/clone a hard drive or DVD.

  • Solved: kernel spams log with "link down" on laptop mode

    Hi,
    Today I installed laptop-mode-tools and started the daemon. Power consumption really is lower, so I rather keep it running.
    Everything is fine when on AC but when unplugging it from the power the kernel starts spamming the syslog:
    2011-05-16T22:43:06.137119+02:00 localhost kernel: [11472.137548] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:07.140457+02:00 localhost kernel: [11473.140969] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:08.143784+02:00 localhost kernel: [11474.144418] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:09.147118+02:00 localhost kernel: [11475.147850] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:10.150459+02:00 localhost kernel: [11476.151266] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:11.153784+02:00 localhost kernel: [11477.154701] Trying 10/HALF
    2011-05-16T22:43:11.153804+02:00 localhost kernel: [11477.154709] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:12.157117+02:00 localhost kernel: [11478.158138] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:13.160457+02:00 localhost kernel: [11479.161564] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:14.163784+02:00 localhost kernel: [11480.164996] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:15.167117+02:00 localhost kernel: [11481.168435] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:16.170459+02:00 localhost kernel: [11482.171860] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:17.173784+02:00 localhost kernel: [11483.175293] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:18.177117+02:00 localhost kernel: [11484.178730] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:19.180479+02:00 localhost kernel: [11485.182191] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:20.183783+02:00 localhost kernel: [11486.185587] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:21.187116+02:00 localhost kernel: [11487.189031] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:22.190459+02:00 localhost kernel: [11488.192443] Trying 10/HALF
    2011-05-16T22:43:22.190479+02:00 localhost kernel: [11488.192450] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:23.193783+02:00 localhost kernel: [11489.195886] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:24.197116+02:00 localhost kernel: [11490.199319] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:25.200478+02:00 localhost kernel: [11491.202781] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:26.203783+02:00 localhost kernel: [11492.206177] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:27.207115+02:00 localhost kernel: [11493.209621] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:28.210458+02:00 localhost kernel: [11494.213036] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:29.213782+02:00 localhost kernel: [11495.216478] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:30.217115+02:00 localhost kernel: [11496.219906] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:31.220456+02:00 localhost kernel: [11497.223332] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:32.223782+02:00 localhost kernel: [11498.226773] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:33.227116+02:00 localhost kernel: [11499.230206] Trying 10/HALF
    2011-05-16T22:43:33.227136+02:00 localhost kernel: [11499.230213] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:34.230457+02:00 localhost kernel: [11500.233631] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:35.233781+02:00 localhost kernel: [11501.237064] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:36.237115+02:00 localhost kernel: [11502.240499] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:37.240487+02:00 localhost kernel: [11503.243952] tg3 0000:03:00.0: eth0: Link is down
    Yes, it is rsyslog instead of syslog-ng because I use systemd. But I don't think systemd should interfere with laptop-mode-tools. I also laptop-mode-tools through the rc-script since I didn't see a systemd service file but I don't see any chance of being the cause there either.
    When I plug it in again laptop mode tools goes into AC mode and the stream of "Link is down"-messages stops.
    Unloading the tg3 module also helps stopping that messages but that is obviously not a solution since I don't want to manually load the module every time I want to use a lan cable.
    Is this "Trying 10/HALF" the cause? Is this 10 mbit with half duplex and somehow the card doesn't like this?
    edit: Yes, the throttling is the problem.
    In /etc/laptop-mode/conf.d/ethernet.conf I set BATT_THROTTLE_ETHERNET=0 and the problem is gone.
    Last edited by Cdh (2011-05-17 07:26:59)

    Hi,
    Today I installed laptop-mode-tools and started the daemon. Power consumption really is lower, so I rather keep it running.
    Everything is fine when on AC but when unplugging it from the power the kernel starts spamming the syslog:
    2011-05-16T22:43:06.137119+02:00 localhost kernel: [11472.137548] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:07.140457+02:00 localhost kernel: [11473.140969] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:08.143784+02:00 localhost kernel: [11474.144418] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:09.147118+02:00 localhost kernel: [11475.147850] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:10.150459+02:00 localhost kernel: [11476.151266] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:11.153784+02:00 localhost kernel: [11477.154701] Trying 10/HALF
    2011-05-16T22:43:11.153804+02:00 localhost kernel: [11477.154709] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:12.157117+02:00 localhost kernel: [11478.158138] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:13.160457+02:00 localhost kernel: [11479.161564] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:14.163784+02:00 localhost kernel: [11480.164996] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:15.167117+02:00 localhost kernel: [11481.168435] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:16.170459+02:00 localhost kernel: [11482.171860] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:17.173784+02:00 localhost kernel: [11483.175293] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:18.177117+02:00 localhost kernel: [11484.178730] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:19.180479+02:00 localhost kernel: [11485.182191] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:20.183783+02:00 localhost kernel: [11486.185587] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:21.187116+02:00 localhost kernel: [11487.189031] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:22.190459+02:00 localhost kernel: [11488.192443] Trying 10/HALF
    2011-05-16T22:43:22.190479+02:00 localhost kernel: [11488.192450] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:23.193783+02:00 localhost kernel: [11489.195886] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:24.197116+02:00 localhost kernel: [11490.199319] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:25.200478+02:00 localhost kernel: [11491.202781] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:26.203783+02:00 localhost kernel: [11492.206177] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:27.207115+02:00 localhost kernel: [11493.209621] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:28.210458+02:00 localhost kernel: [11494.213036] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:29.213782+02:00 localhost kernel: [11495.216478] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:30.217115+02:00 localhost kernel: [11496.219906] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:31.220456+02:00 localhost kernel: [11497.223332] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:32.223782+02:00 localhost kernel: [11498.226773] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:33.227116+02:00 localhost kernel: [11499.230206] Trying 10/HALF
    2011-05-16T22:43:33.227136+02:00 localhost kernel: [11499.230213] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:34.230457+02:00 localhost kernel: [11500.233631] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:35.233781+02:00 localhost kernel: [11501.237064] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:36.237115+02:00 localhost kernel: [11502.240499] tg3 0000:03:00.0: eth0: Link is down
    2011-05-16T22:43:37.240487+02:00 localhost kernel: [11503.243952] tg3 0000:03:00.0: eth0: Link is down
    Yes, it is rsyslog instead of syslog-ng because I use systemd. But I don't think systemd should interfere with laptop-mode-tools. I also laptop-mode-tools through the rc-script since I didn't see a systemd service file but I don't see any chance of being the cause there either.
    When I plug it in again laptop mode tools goes into AC mode and the stream of "Link is down"-messages stops.
    Unloading the tg3 module also helps stopping that messages but that is obviously not a solution since I don't want to manually load the module every time I want to use a lan cable.
    Is this "Trying 10/HALF" the cause? Is this 10 mbit with half duplex and somehow the card doesn't like this?
    edit: Yes, the throttling is the problem.
    In /etc/laptop-mode/conf.d/ethernet.conf I set BATT_THROTTLE_ETHERNET=0 and the problem is gone.
    Last edited by Cdh (2011-05-17 07:26:59)

  • How do I setup a wireless file sharing network with a desktop and laptop?

    Here are the specs.
    Desktop, 1 Ethernet, hooked to Wireless router and is my main computer. XP Professional
    Router, Wireless Linksys WRT54GL
    Laptop, Wireless card and Ethernet. XP Home
    Both the Desktop and Laptop can use the internet. The internet can be accessed by both computers. I have tried everything from creating a network via windows, messed with that for a couple days, tried programs and messed with them for a few hours.
    I can sometimes see the other computer, when I deleted the programs I had to redo it, and so on. I made the folders I wanted shared, through the share menu when you right click on them, and they show up on the other computer, but I can't access them. It says I don't have access rights and to contact the administrator, but IM the administrator.
    So, what do I do?

    Disable all firewall on both the computers ....
    Try to ping one computer to another ... see if it works ....
    Also you can try this link ..... useful for enabling the sharing of files in a network ...

  • Issue with the fan and laptop gets heated up

    Hi 
    can someone help me with the issue, my laptop gets heated up and after sometime it makes sound and it shuts down after half an hour of use. when i went to service center they said fan needs to b replaced. when i checked it online there are many fans which one should i choose the product no is B3J80PA and the model is pavilion g6-2005AX. AND PLEASE TEL ME WHICH fan suites and the cost of it.

    Hello.
    Where do you plan to buy replacement fan? Maybe I can look it up for you.

  • Reader X integration with Windows Explorer and protected mode

    Hello all.
    I'm having some problems with Adobe Reader X under Windows 7 and it seems that I need to disable protected mode. I disabled it by unchecking the related option in edit-preferences, also I created the registry key for the local user (bProtectedMode = 0).
    After doing that, the protected mode seems to be disables when I open pdf documents with Reader X, but it's still enabled when previewing documents thumbnails in windows explorer. The issue is that when I open a folder containing pdf files and left click or right click them, two AcroRd32.exe processes spawn and it seems to me that it's a protected mode behaviour (broker process + sandboxed renderer process).
    I'd like to know if it's possible to fully disable protected mode so that it remains disabled even when I'm navigating directories with Windows Explorer and documents are previewed. My current Adobe Reader version is 10.1.3.
    Thank you very much.

    Hi Fernando,
    Here's a statement that hopefully helps or at least solves your mystery:
    While Protected Mode can be disabled for PDFs viewed with the product, Adobe continues to protect you when 3rd party software invokes a Reader process; that is, Protected Mode sandboxing cannot be disabled for shell extensions. For example, when you use Windows Explorer to preview a PDF in the Preview Pane, it starts a Reader process to display the preview. In such cases, Task Manager shows that two AcroRd32.exe processes spawn and that the operation is occurring with Protected Mode enabled.
    Ben

  • Problem with Disk Utility and with ITunes and with Classic

    Greetings. I have had problems with ITunes recently; when I try to open it, it gives me the error message: "The ITunes Music Library file is locked, on a locked disk, or you do not have write permission for this file."
    When I looked at the ITunes discussion section, people had two ideas for other people who had the same problem:
    (1) Make sure that the library of music files is write-enabled (which it is) and not locked (it isn't) and
    (2) Go to Disk Utility and repair the disk.
    Since (1) is not a problem, I am trying (2). However, when I open Disk Utility, it just stays on the window, stating "Gathering disk information..." and proceeds no further.
    Perhaps related to these problems, when I try to start up Classic, the window opens, but it gets stuck at the very beginning (stating "Classic starting up using System Folder ...") and proceeds no further.
    Can anyone help me with these multiple problems? Thanks in advance.

    amandel
    The problems you report are different than those relating to the iTunes receipts/DU conflict. Trashing those receipts as suggested is necessary to get DU to repair permissions, but, as I understand it, you couldn't get DU to recognise your drives. And I've seen no posts relating to iTunes 6 and Classic.
    I've had the problem you describe before (at least vis-a-vis DU). In principle DU's "Repair Disk" function would fix it, but of course if the disk's don't mount in DU then you can't fix them:)
    Therefore fsck is a good solution, or trying DU from the Installer Disk (don't start to install, just let the first installer window appear, go to the menu and choose "Open Disk Utility") and repairing. Then reboot and repair permissions, preferably with DU running from your hard drive.
    Maybe you're more of a "don't touch what's still running" kind of person, but it sounds to me like the systems a bit wobbly and needs some tender loving care. You could try a clean up using a program like OnyX as well - it won't do any harm.
    Robert
    G4 PB   Mac OS X (10.3.9)  

  • Can't erase Macintosh HD with disk utility in recovery mode

    Hello Apple users,
    Two days ago, my MacBook pro was suddenly forced to turn off and after restarting my MacBook it did not turn on anymore. Every time after the *boing* an apple sign with a status bar appears and if this bar is at 1/4 the macbook turns off again and the whole process starts again.
    Luckily i was able to acces recovery mode and surprisingly my hard drive seems to be OK, so i was able make a backup of my most important files. I thought te best option for now would be erasing my macintosh hd and install osx yosemite as a new macbook.
    But here is the problem: when I try to erase my Mac hd, i get this message (not sure if this is te correct translation from the dutch message) "not able to erase, disk can not be unmounted". I searched google for solutions and I found some topics saying that this isnt possible, because it is also the startup drive.
    Are hou guys familiar with this problem and are there any solutions?The recovery drive wasn't available, so the recovery runs via the 'internet recovery'.
    Thanks in advance

    Disk Unmount Using Terminal
    Disk Unmount Using Terminal (2)

Maybe you are looking for

  • Error while saving FYV : Gaps in financial year variant periods

    Hello Experts, We are getting an error while saving  a new FYV as: Gaps in financial year variant periods XY Message no. FGV556 Diagnosis The period specification has gaps. The periods must be sequentially numbered without any gaps. System Response O

  • ClickPad versus TrackPad - On HP ENVY 17, Can we downgrade to Synaptics TrackPad???

    I have an HP Envy 3000 17 inch, ENVY 17t-3200 CTO. It has the Synaptics ClickPad, so that there are not separate buttons for the mouse right/left clicks.  Our family is finding it much more difficult to use My daughter and son have the HP DV7-b32usb,

  • Export sales  pricing procure-

    Hello Gurus Goodafternoon every body, We have one requirement  for export sales: for this industry   no excise duty  is there  but  they will pay customs  duty  ,   how to configure in  export pricing procedure ( for this industry all other taxes are

  • How to clear player and load new movie?

    Windows Vista, Quicktime 7.2 When watching a movie in Quicktime, I want to be able to click another movie and have Quicktime clear the existing movie, and load and play the new one. At present, another player is automatically opened. I have unchecked

  • K8MM-V Support for Mobile Semprons

    Has anyone tried the mobile semprons on this board? Will it work ?