[FIXED] Compiz runs only with emerald and crashes with metacity

Hey,
I currently try to use a metacity theme and have compiz enabled but apparently that's something compiz doesn't really like.
One think i noticed in fusion-icon is that the entire metacity option under: "Select Window Devorator" is just not there.. (or was that always the case?)
Oke, things i have done so far:
- Search this forum (obviously) nothing found with a solution
- Searched the wiki (same results)
- in gconf-editor /desktop/gnome/session/required_components/windowmanager set to compiz (like said in the Compiz wiki page on archlinux.org
- disabled metacity as compositing manager (tried with enabled as well but the same results)
- right now i have the compiz bash script from ubuntu (tweaked a little) and that starts up compiz just fine but not with metacity
And incase you want the script:
#!/bin/sh
# Compiz Manager wrapper script
# Copyright (c) 2007 Kristian Lyngstøl <[email protected]>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# Contributions by: Treviño (3v1n0) <[email protected]>, Ubuntu Packages
# Much of this code is based on Beryl code, also licensed under the GPL.
# This script will detect what options we need to pass to compiz to get it
# started, and start a default plugin and possibly window decorator.
COMPIZ_BIN_PATH="/usr/bin/" # For window decorators and compiz
PLUGIN_PATH="/usr/lib/compiz/"
GLXINFO="/usr/bin/glxinfo"
KWIN="/usr/bin/kwin"
METACITY="/usr/bin/metacity"
XFWM="/usr/bin/xfwm"
COMPIZ_NAME="compiz" # Final name for compiz (compiz.real)
# For Xgl LD_PRELOAD
LIBGL_NVIDIA="/usr/lib/nvidia/libGL.so.1.2.xlibmesa"
LIBGL_FGLRX="/usr/lib/fglrx/libGL.so.1.2.xlibmesa"
# Minimum amount of memory (in kilo bytes) that nVidia cards need
# to be allowed to start
# Set to 262144 to require 256MB
NVIDIA_MEMORY="65536" # 64MB
NVIDIA_SETTINGS="nvidia-settings" # Assume it's in the path by default
# For detecting what driver is in use, the + is for one or more /'s
XORG_DRIVER_PATH="/usr/lib/xorg/modules/drivers/+"
FALLBACKWM="xterm"
if [ x"$KDE_FULL_SESSION" = x"true" ]; then
FALLBACKWM="${KWIN}";
elif [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ]; then
FALLBACKWM="${METACITY}"
elif xprop -root _DT_SAVE_MODE | grep ' = \"xfce4\"$' >/dev/null 2>&1; then
FALLBACKWM="${XFWM}"
fi
FALLBACKWM_OPTIONS="--replace $@"
# Driver whitelist
WHITELIST="nvidia intel ati radeon i810 fglrx"
# blacklist based on the pci ids
# See http://wiki.compiz-fusion.org/Hardware/Blacklist for details
#T=" 1002:5954 1002:5854 1002:5955" # ati rs480
#T="$T 1002:4153" # ATI Rv350
#T="$T 8086:2982 8086:2992 8086:29a2 8086:2a02 8086:2a12" # intel 965
T="$T 8086:2a02 " # Intel GM965
T="$T 8086:3577 8086:2562 " # Intel 830MG, 845G (LP: #259385)
BLACKLIST_PCIIDS="$T"
unset T
COMPIZ_OPTIONS="--ignore-desktop-hints --replace"
COMPIZ_PLUGINS="core"
ENV=""
# Use emerald by default if it exist
USE_EMERALD="yes"
# No indirect by default
INDIRECT="no"
# Default X.org log if xset q doesn't reveal it
XORG_DEFAULT_LOG="/var/log/Xorg.0.log"
# Set to yes to enable verbose
VERBOSE="yes"
# Echos the arguments if verbose
verbose()
if [ "x$VERBOSE" = "xyes" ]; then
printf "$*"
fi
# abort script and run fallback windowmanager
abort_with_fallback_wm()
if [ "x$SKIP_CHECKS" = "xyes" ]; then
verbose "SKIP_CHECKS is yes, so continuing despite problems.\n"
return 0;
fi
if [ "x$CM_DRY" = "xyes" ]; then
verbose "Dry run failed: Problems detected with 3D support.'n"
exit 1;
fi
verbose "aborting and using fallback: $FALLBACKWM \n"
if [ -x $FALLBACKWM ]; then
exec $FALLBACKWM $FALLBACKWM_OPTIONS
else
printf "no $FALLBACKWM found, exiting\n"
exit 1
fi
# Check if we run with the Software Rasterizer, this happens e.g.
# when a second screen session is opened via f-u-a on intel
check_software_rasterizer()
verbose "Checking for Software Rasterizer: "
if glxinfo 2> /dev/null | egrep -q '^OpenGL renderer string: Software Rasterizer' ; then
verbose "present. \n";
return 0;
else
verbose "Not present. \n"
return 1;
fi
# Check for non power of two texture support
check_npot_texture()
verbose "Checking for non power of two support: "
if glxinfo 2> /dev/null | egrep -q '(GL_ARB_texture_non_power_of_two|GL_NV_texture_rectangle|GL_EXT_texture_rectangle|GL_ARB_texture_rectangle)' ; then
verbose "present. \n";
return 0;
else
verbose "Not present. \n"
return 1;
fi
# Check for presence of FBConfig
check_fbconfig()
verbose "Checking for FBConfig: "
if [ "$INDIRECT" = "yes" ]; then
$GLXINFO -i | grep -q GLX.*fbconfig
FB=$?
else
$GLXINFO | grep -q GLX.*fbconfig
FB=$?
fi
if [ $FB = "0" ]; then
unset FB
verbose "present. \n"
return 0;
else
unset FB
verbose "not present. \n"
return 1;
fi
# Check for TFP
check_tfp()
verbose "Checking for texture_from_pixmap: "
if [ $($GLXINFO 2>/dev/null | grep -c GLX_EXT_texture_from_pixmap) -gt 2 ] ; then
verbose "present. \n"
return 0;
else
verbose "not present. \n"
if [ "$INDIRECT" = "yes" ]; then
unset LIBGL_ALWAYS_INDIRECT
INDIRECT="no"
return 1;
else
verbose "Trying again with indirect rendering:\n";
INDIRECT="yes"
export LIBGL_ALWAYS_INDIRECT=1
check_tfp;
return $?
fi
fi
# Check wether the composite extension is present
check_composite()
verbose "Checking for Composite extension: "
if xdpyinfo -queryExtensions | grep -q Composite ; then
verbose "present. \n";
return 0;
else
verbose "not present. \n";
return 1;
fi
# Detects if Xgl is running
check_xgl()
verbose "Checking for Xgl: "
if xvinfo | grep -q Xgl ; then
verbose "present. \n"
return 0;
else
verbose "not present. \n"
return 1;
fi
# Check if the nVidia card has enough video ram to make sense
check_nvidia_memory()
if [ ! -x "$NVIDIA_SETTINGS" ]; then
return 0
fi
MEM=$(${NVIDIA_SETTINGS} -q VideoRam | egrep Attribute\ \'VideoRam\'\ .*: | cut -d: -f3 | sed 's/[^0-9]//g')
if [ $MEM -lt $NVIDIA_MEMORY ]; then
verbose "Less than ${NVIDIA_MEMORY}kb of memory and nVidia";
return 1;
fi
return 0;
# Check for existence if NV-GLX
check_nvidia()
if [ ! -z $NVIDIA_INTERNAL_TEST ]; then
return $NVIDIA_INTERNAL_TEST;
fi
verbose "Checking for nVidia: "
if xdpyinfo | grep -q NV-GLX ; then
verbose "present. \n"
NVIDIA_INTERNAL_TEST=0
return 0;
else
verbose "not present. \n"
NVIDIA_INTERNAL_TEST=1
return 1;
fi
# Check if the max texture size is large enough compared to the resolution
check_texture_size()
# Check how many screens we've got and iterate over them
N=$(xdpyinfo | grep -i "number of screens" | sed 's/.*[^0-9]//g')
for i in $(seq 1 $N); do
verbose "Checking screen $i"
TEXTURE_LIMIT=$(glxinfo -l | grep GL_MAX_TEXTURE_SIZE | sed -n "$i s/^.*=[^0-9]//g p")
RESOLUTION=$(xdpyinfo | grep -i dimensions: | sed -n -e "$i s/^ *dimensions: *\([0-9]*x[0-9]*\) pixels.*/\1/ p")
VRES=$(echo $RESOLUTION | sed 's/.*x//')
HRES=$(echo $RESOLUTION | sed 's/x.*//')
verbose "Comparing resolution ($RESOLUTION) to maximum 3D texture size ($TEXTURE_LIMIT): ";
if [ $VRES -gt $TEXTURE_LIMIT ] || [ $HRES -gt $TEXTURE_LIMIT ]; then
verbose "Failed.\n"
return 1;
fi
verbose "Passed.\n"
done
return 0
# check driver whitelist
running_under_whitelisted_driver()
LOG=$(xset q|grep "Log file"|awk '{print $3}')
if [ "$LOG" = "" ]; then
verbose "xset q doesn't reveal the location of the log file. Using fallback $XORG_DEFAULT_LOG \n"
LOG=$XORG_DEFAULT_LOG;
fi
if [ -z "$LOG" ];then
verbose "AIEEEEH, no Log file found \n"
verbose "$(xset q) \n"
return 0
fi
for DRV in ${WHITELIST}; do
if egrep -q "Loading ${XORG_DRIVER_PATH}${DRV}_drv\.so" $LOG &&
! egrep -q "Unloading ${XORG_DRIVER_PATH}${DRV}_drv\.so" $LOG;
then
return 0
fi
done
verbose "No whitelisted driver found\n"
return 1
# check pciid blacklist
have_blacklisted_pciid()
OUTPUT=$(lspci -n)
for ID in ${BLACKLIST_PCIIDS}; do
if echo "$OUTPUT" | egrep -q "$ID"; then
verbose "Blacklisted PCIID '$ID' found \n"
return 0
fi
done
OUTPUT=$(lspci -vn | grep -i VGA)
verbose "Detected PCI ID for VGA: $OUTPUT\n"
return 1
build_env()
if check_nvidia; then
ENV="__GL_YIELD=NOTHING "
fi
if [ "$INDIRECT" = "yes" ]; then
ENV="$ENV LIBGL_ALWAYS_INDIRECT=1 "
fi
if check_xgl; then
if [ -f ${LIBGL_NVIDIA} ]; then
ENV="$ENV LD_PRELOAD=${LIBGL_NVIDIA}"
verbose "Enabling Xgl with nVidia drivers...\n"
fi
if [ -f ${LIBGL_FGLRX} ]; then
ENV="$ENV LD_PRELOAD=${LIBGL_FGLRX}"
verbose "Enabling Xgl with fglrx ATi drivers...\n"
fi
fi
ENV="$ENV FROM_WRAPPER=yes"
if [ -n "$ENV" ]; then
export $ENV
fi
build_args()
if [ "x$INDIRECT" = "xyes" ]; then
COMPIZ_OPTIONS="$COMPIZ_OPTIONS --indirect-rendering "
fi
if [ ! -z "$DESKTOP_AUTOSTART_ID" ]; then
COMPIZ_OPTIONS="$COMPIZ_OPTIONS --sm-client-id $DESKTOP_AUTOSTART_ID"
fi
if check_nvidia; then
if [ "x$INDIRECT" != "xyes" ]; then
COMPIZ_OPTIONS="$COMPIZ_OPTIONS --loose-binding"
fi
fi
# Execution begins here.
# Read configuration from XDG paths
if [ -z "$XDG_CONFIG_DIRS" ]; then
test -f /etc/xdg/compiz/compiz-manager && . /etc/xdg/compiz/compiz-manager
for f in /etc/xdg/compiz/compiz-manager.d/*; do
test -e $f && . $f
done
else
OLD_IFS=$IFS
IFS=:
for CONFIG_DIR in $XDG_CONFIG_DIRS
do
test -f $CONFIG_DIR/compiz/compiz-manager && . $CONFIG_DIR/compiz/compiz-manager
for f in $CONFIG_DIRS/compiz/compiz-manager.d/*; do
test -e $f && . $f
done
done
IFS=$OLD_IFS
unset OLD_IFS
fi
if [ -z "$XDG_CONFIG_HOME" ]; then
test -f $HOME/.config/compiz/compiz-manager && . $HOME/.config/compiz/compiz-manager
else
test -f $XDG_CONFIG_HOME/compiz/compiz-manager && . $XDG_CONFIG_HOME/compiz/compiz-manager
fi
# Don't use compiz when running the failsafe session
if [ "x$GNOME_DESKTOP_SESSION_ID" = "xFailsafe" ]; then
abort_with_fallback_wm
fi
if [ "x$LIBGL_ALWAYS_INDIRECT" = "x1" ]; then
INDIRECT="yes";
fi
# if we run under Xgl, we can skip some tests here
if ! check_xgl; then
# if vesa or vga are in use, do not even try glxinfo (LP#119341)
if ! running_under_whitelisted_driver || have_blacklisted_pciid; then
abort_with_fallback_wm
fi
# check if we have the required bits to run compiz and if not,
# fallback
if ! check_tfp || ! check_npot_texture || ! check_composite || ! check_texture_size; then
abort_with_fallback_wm
fi
# check if we run with software rasterizer and if so, bail out
if check_software_rasterizer; then
verbose "Software rasterizer detected, aborting"
abort_with_fallback_wm
fi
if check_nvidia && ! check_nvidia_memory; then
abort_with_fallback_wm
fi
if ! check_fbconfig; then
abort_with_fallback_wm
fi
fi
# load the ccp plugin if present and fallback to plain gconf if not
if [ -f ${PLUGIN_PATH}libccp.so ]; then
COMPIZ_PLUGINS="$COMPIZ_PLUGINS ccp"
elif [ -f ${PLUGIN_PATH}libgconf.so ]; then
COMPIZ_PLUGINS="$COMPIZ_PLUGINS glib gconf"
fi
# enable gnomecompat if we run under gnome
if [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ] && [ ! -e ~/.compiz-gnomecompat ]; then
verbose "running under gnome seesion, checking for gnomecompat\n"
if ! gconftool -g /apps/compiz/general/allscreens/options/active_plugins|grep -q gnomecompat; then
verbose "adding missing gnomecompat\n"
V=$(gconftool -g /apps/compiz/general/allscreens/options/active_plugins|sed s/mousepoll,/mousepoll,gnomecompat,/)
if ! echo $V|grep -q gnomecompat; then
verbose "can not add gnomecompat, reseting\n"
gconftool --unset /apps/compiz/general/allscreens/options/active_plugins
else
gconftool -s /apps/compiz/general/allscreens/options/active_plugins --type list --list-type=string $V
fi
touch ~/.compiz-gnomecompat
fi
fi
# get environment
build_env
build_args
if [ "x$CM_DRY" = "xyes" ]; then
verbose "Dry run finished: everything should work with regards to Compiz and 3D.\n"
verbose "Execute: ${COMPIZ_BIN_PATH}${COMPIZ_NAME} $COMPIZ_OPTIONS "$@" $COMPIZ_PLUGINS \n"
exit 0;
fi
${COMPIZ_BIN_PATH}${COMPIZ_NAME} $COMPIZ_OPTIONS "$@" $COMPIZ_PLUGINS || exec $FALLBACKWM $FALLBACKWM_OPTIONS
That's it so far.
So again what i try to do is running compiz with metacity decorations.
I hope someone can help me here,
Mark.
Last edited by markg85 (2009-06-28 00:26:04)

whoops wrote:
Wait, what, I thought metacity isn't as window decorator, it is a window manager, right? I don't really get what you're trying to do... maybe install compiz-decorator-gtk and use it instead of emerald?
edit: aaah, yes, I think you're missing compiz-decorator-gtk, try that, look at fusion icon "window decorator" option again.
Strange.. i was under the impression that pacman -S compiz-fusion would install GTK and QT decorators... guess not.
This issue is fixed now. Running metacity decorations now WITH compiz.

Similar Messages

  • Qosmio F10-105 runs only with 600 MHz

    hello
    my f10-105 run only @600 Mhz! in the bios and in the power options i have select fullpower.
    the bios vers. is 1.20
    has anyone an idea?
    thx

    Hi
    Usually after motherboard replacement it can happen that notebook runs just at 600 MHz. In this case you must contact service partner. The microcode must be written again. If the Service partner doesnt do this the machine runs at a fixed speed of 600MHz.

  • Satellite L20-101: I think 667Mhz module runs only with 266 Mhz

    Hello,
    I have purchased 2x 1024MB DDR2-RAM for my L20-101.
    First I tried 533MHz but the notebook didn't work with them, so I bought the
    667 MHz version.
    CPU-Z says that the FSB:DRAM-ratio is 1:2 so both are actually running with just 266 MHz.
    I've updated the BIOS with the latest version from the Toshiba-homepage, but nothing changed.
    So finally my questions:
    1. Maybe CPU-Z is wrong (I don't think so...), are there any other good programms to check the memory parameters?
    2. If the values shown in the programm are correct: Where can I change the value for the ratio? Is there any possibility to see more than the few settings in BIOS or is it a jumper setting?
    Thanks for your help

    Hi
    First of all its important to mention that the Satellite L20-101 supports an FSB of 533 MHz.
    So the DDR2-400/533 256MB (PA3389U-1M25) and DDR2-400/533 512MB (PA3412U-1M51) memory modules should work and are 100% compatible!
    If you will use the 667Mhz module, it will run only at 533Mhz because of the limitation of front side bus.
    Furthermore I think you have misunderstood something.
    These are DD2 modules and therefore the CPU-Z recognizes the modules speed as 266 MHz (2x266 = 532Mhz)
    So everything seems to be ok!
    PS; You can also use the other tool called Everest home edition. Its a freeware and very useful to run a system and hardware diagnosis
    Greetings

  • Does UCCX 8.5.1 Historical Reporting Client run only with admin rights?

    I installed UCCX 8.5.1 Historical Reporting Client on a Windows Vista machine. When I try to open it as a regular user, it gives me an error message "Unexpected error: Quitting". I can only open it when I log into the machine as administrator. Does anyone know this is the normal behaviour? If so, then every supervisor of my contact center will need to have admin rights in the computer?

    hi,
    The Historical Reports client uses Windows's secondary logon service.  It uses this to run
    the software with the CiscoHistRptUsr when the agent or supervisor is logged into the PC
    with their own account.  This is the service that gives you the Run As option when you
    right click on executables. Check to see if they have this ability on the PC, and make
    sure the "Secondary Logon" service shows as Started in the Windows services (Run -->
    Services.msc)"
    So, on one of the PCs with the issue, look for Secondary Login: Start >Settings >
    Control Panel > Administrative Tools > Services. Scroll down to Secondary Logon and
    verify that this service is started.
    Also, if the service is running, please look for the application, right click on it and
    select "Run as Administrator"
    Hope that helps!
    Thanks,
    Karthik

  • My mc mini run only under windows and don't recognize the keyboard

    After installing boot amp and windows 7 the Mac mini run always under window 7, don't recognize the wireless keyboard. Normally I have to push the power button and alt to return on the Mac interface but now it's impossible. Do you have any idea how I could run the Mac interface from window ?

    Read the Boot Camp Directions, it is all explained in there.

  • Run only application

    Hi all,
    I have 2 question about application installation procedure (via 2.1.0.00.38):
    1. in the export-to-file process i specify in the 'build status override' field a value (run only ot build and run). why do i have to specify this kind of value in the import process too (in 'build status' field)?
    2. I installed an application in run-only status. now, it disappeared from the application repository. how do i regain access to the application (lets say...in order to delete the application)?
    regards
    Liron

    Liron,
    1. You have the option on export to create a file with a run-only status so that it will be run-only after it's installed somewhere else, unless the person installing it overrides that. It's also possible to use SQL*Plus to install applications, so then the run-only or run-and-build status would be taken from the setting in the file with no opportunity for override.
    2. Import it again from your exported file, set it to run-and-build and then delete it.
    Scott

  • PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver

    PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver is just fine.  Any help out there?

    rb
    Your video card driver may be fine for something, but just not compatible with Premiere Elements 13/13.1.
    For those with the display card error, the answers include
    a. assure your video card/graphics card driver version is up to date according to the web site of the manufacturer of the card -
    if necessary consider a driver roll back.
    b. determine in Device Manager/Display Adapters if the computer is using 2 cards instead of 1
    c. delete the BadDrivers.txt file
    the rationale for that deletion is found in post 10 of the following older post...principle applies to 13 as well as 9.
    Re: Premiere Elements 9 Tryout Serious Display Problem
    Have you looked for computer ATI card settings that might be more compatible with Premiere Elements 13/13.1?
    When is the program crashing - just opening a new project or rather crashing if editing a particular video format at the Timeline level?
    ATR

  • The screen on my ipod touch is white all over and black in the upper right hand corner only with color dots and lines run to the left hand side but stop in the middle. how do i fix it?

    right now it is the middle of april and i bought the ipod at the beging of Agust the year befor so it still has not been a year. currently it is thursday and the screen changed to the white and black corner on the monday earlier in the week (so 4 days ago). i had just broken up with my gril friend and we were fighting. in anger i through my ipod at the wall. i was aiming for my pillow on my bed so it would hit something soft but i missed and it hit the hard concrete wall in my room. when i looked at my ipod it had turn itself off and when turn on the screen was white with a little black in one corner. i have tryed to restart it by holding down the power and home button till it restarted but the screen only got brighter and then eventually went back the the brightness it was before and turn off. i can still turn the screen on but cant unlock. i know it is still working cause my alram still goes off in the morning. the ipod is a 4th generation ipod touch 16 GB memory and is black. can this be fixed at home on my own or do i have to take it in to apple. can apple even fix it or is my ipod past the point of repair. any advice would be nice. thanks in advance.

    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                                                              
    Apple will exchange your iPod for a refurbished one for $99 fr a 16 GB 4G. They do not fix yours.
      Apple - iPod Repair price

  • I have a 3rd generation iPad running iOS7.0.2, and since updating to iOS7, it will not mirror to an AppleTV.  The devices will connect, but the video monitors show only a blank screen.  The AppleTV's work fine with various other iOS & OSX devices. Ideas?

    I have three AppleTV's where I work.  I have two at home.  I have an iPhone 4S running iOS7.0.2 which mirrors smoothly via AirPlay.  I have a 2011 MacBook Pro and a 2011 iMac, both running Mountain Lion, both of which mirror smoothly through AirPlay.  I have a 3rd generation iPad running iOS7.0.2, and since updating to iOS7, it will not mirror.  The iPad will connect to the AppleTV, but the TV's and projectors only show a black screen when connected: the iPad screen looks as it should, except that the transitions become jumpy when connected via AirPlay.  This is true on both networks: at home and at work.  Another gentleman using the network where I work has the most recent iPad, also running iOS7.0.2, and he is having the same problem.  I have tried to "Reset All Settings."  I have tried to "Restore."  Does anyone have any suggestions?  Has anyone else experience difficulty mirroring the iPad through AirPlay since the release of iOS7.0.2?

    No problems exists with the router (on either network described above) or the multiple AppleTV's which are able to mirror multiple other OSX &amp; iOS devices seamlessly. The problem is strictly with the iPad and iOS7.
    The following information was helpful:
    Big Apple fan
    Re: AirPlay with AirServer connectivity problem
    Oct 14, 2013 9:43 AM (in response to ceb2652)
    This is an iOS 7 AirPlay mirroring bug...
    To make matters worse, the iPad automatically drops its mirroring session 45 seconds after it auto-locks.
    3-4 mirroring sessions is all it takes for the iPad mirroring to freeze up.
    After this happens, mirroring to an Apple TV only projects a blank screen.
    Once the mirroring is hung, the only way to fix it is to restart the iPad.
    Apple please fix this iOS 7 issue!

  • MacBook freezing and crashing/running slow, problem with external hard drive

    I've been having some issues for the past couple months with my laptop randomly freezing, usually when I have a lot happening. I've ended up having to hard-restart it several times because it will just hang and I can't get into the menu at all to force quit things.  In the past couple days, it's now started crashing completely, although restarting okay. This last time, though, it crashed while I was trying to empty the trash and since then it's been crazy slow and not very responsive.I tried running disk utility and ccleaner, and although they repaired some stuff they didn't fix the problem.
    I think iTunes might be the issue. I was trying to move my music library when this last thing started. I have it all on an external hard drive, and I was trying to move it from one folder to another. I tried repairing the external hard drive with disk utility to see if that was the issue, but now my files have all vanished and the external appears blank.
    I also recently installed BootCamp, if that makes a difference.
    I'm mostly just really unsure what to do. I don't want to do anything to the external because I need to recover the stuff that was on it, but I also need my laptop to be usable.

    Thanks for the response. I tried booting in recovery mode and running disk utility again and that seemed to help. It's still hanging when I plug in the external hard drive but otherwise seems to be working okay. My main issue now is the invisible files. I tried booting in Windows, planning to install Recuva to try and get the files back. However, they show up fine there. This is a relief but I'm not totally sure what is happening. I'm guessing the disk has somehow mounted incorrectly on the mac portion but I'm not sure how to fix that. I'm about to restart on the other partition and see what's going on there.

  • How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something"sign... it just doesn't start the system....

    How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something" sign... it just doesn't start the system....
    Please help
    Marcelo

    If there is no loading bar, it's usually a problem with a third party kext file in OS X itself.
    You can press the power button down to force a hardware shutdown, then reboot holding the shift key down on a wired or built in keyboard, this will disable them and you go around and update your third party software.
    Gray, Blue or White screen at boot, w/spinner/progress bar
    Also take this time to backup your users files off the machine if possible.
    Most commonly used backup methods
    Sometime that won't work and you need to do more
    ..Step by Step to fix your Mac

  • Photoshop CS6 keeps crashing. I am using a brand new IMAC, I have 16GB RAM recently updated as it was running slow with 8GB and lots of hardrive space. When it crashes, i lose all my presents and it changes my preferences, it also fails to save or produce

    Photoshop CS6 keeps crashing. I am using a brand new IMAC, I have 16GB RAM recently updated as it was running slow with 8GB and lots of hardrive space. When it crashes, i lose all my presents and it changes my preferences, it also fails to save or produce a recovered file despite settings asking it to do so every 5 mins now. When i try to report the problem, it says it has found an issue and gives me a link to a solution....but wont let me click on the link.... PLEASE HELP! It's killing my productivity.

    If the crash started right after you added RAM, it could be a bad Ram dimm. You can try this - change the amount of RAM in Photoshop to 4G, this should stop Photoshop from using the higher ram. If it doesn't crash, it's probably the ram. Or run a diagnostic app. You don't say when it crashes, what you're doing when it crashes - it there a pattern? Did it ever work on this computer? Did it work on your previous computer? Without a lot of data, it could be related to the new computer... What OS version? Did you recently update it? Have you updated Photoshop to the most recent update?
    Do you have any plug-ins loaded? Try restarting Photoshop, and immediately press & hold the shfit key to turn off plug-ins.

  • I just got the iPhone 5 and noticed that the message alerts will only alert once . I have it set up as 3 times and its not working . Please help. I'm running 6.0.2 and I really starting to get ****** off with apple products

    I just got the iPhone 5 and noticed that the message alerts will only alert once . I have it set up as 3 times and its not working . Please help. I'm running 6.0.2 and I really starting to get ****** off with apple products

    Instead of getting annoyed, read the User's Guide and try basic troubleshooting.

  • Firefox crashes or runs but with splotches missing color, how do i fix it?

    when I start firefox my desktop starts flashing on and off and when it returns there are splotches missing color. firefox then either crashes or runs but with the colors muted and images distorted.

    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • The demand of my application is that i can not replace for loop with a while loop.because i need fixed number of iterations and as far as i know fixed iterations could be only with possible with the for loop.

    the demand of my application is that i can not replace for loop with a while loop.because i need fixed number of iterations and as far as i know fixed iterations could be only with possible with the for loop.
    your recommended second option that i could add true/false case.
    this true/false case must be inside the for loop or outside the for loop?if this case is inside the for
    loop, how can i send stop command from outer while
    loop?
    more over do you have any example for this please?
    thanks"

    You can execute a fixed number of iterations using a while loop by comparing the iteration count to the number of iterations you want and wiring the output of that comparison (e.g. Less Than or Equal To) to the continue (or stop) terminal of your while loop. Which comparison you use depends on personal preference, where you wire the desired count and the interation count, and whether you're using the while loop as Continue if True or Stop if True.
    Ben gave you step-by-step instructions in response to your previous question. Look here for Ben's response.
    Ben's response looks pretty good and detailed to me. It certa
    inly deserved better than a 1-star rating.

Maybe you are looking for