I cant reboot. Shutdown freezes at sending SIGTERM to processes

I could use some advice. For the past 4 months or so I have not been able to do a full shutdown or reboot. When I run the shutdown -r now or reboot commands the process starts but freezes at Sending SIGTERM to processes. At this point I can switch to diffrent terminals with Ctrl+Alt+F? but I cant type.The only thing I can do is hold my power button down to shut off. I have been searching online  fore awhile and restored my rc.shutdown script to the original backup I have from months ago but I am still having the same issues. Ill attach my local and shutdown scripts
Thanks for taking a look.
rc.local
#!/bin/bash
# /etc/rc.local: Local multi-user startup script.
#/bin/plymouth quit --retain-splash
alsactl -f /var/lib/alsa/asound.state restore
#rm /tmp/.X25-lock
mount LABEL=Backup /home/ahron/Dropbox/Backup
mount LABEL=FatBackup '/home/ahron/Backup Images'
#su ahron -c "vncserver -geometry 800x600 -alwaysshared -localhost -dpi 96 :25"
rc.shutdown
#!/bin/bash
# /etc/rc.shutdown
. /etc/rc.conf
. /etc/rc.d/functions
# avoid staircase effect
stty onlcr
echo " "
printhl "Initiating Shutdown..."
echo " "
run_hook shutdown_start
[[ -x /etc/rc.local.shutdown ]] && /etc/rc.local.shutdown
stop_all_daemons
run_hook shutdown_prekillall
kill_all
run_hook shutdown_postkillall
stat_busy "Saving Random Seed"
RANDOM_SEED=/var/lib/misc/random-seed
install -TDm 0600 <(:) $RANDOM_SEED
POOL_FILE=/proc/sys/kernel/random/poolsize
if [[ -r $POOL_FILE ]]; then
read POOL_SIZE < $POOL_FILE
else
POOL_SIZE=512
fi
dd if=/dev/urandom of=$RANDOM_SEED count=1 bs=$POOL_SIZE &>/dev/null
stat_done
[[ $TIMEZONE ]] &&
status "Saving Time Zone" \
cp --remove-destination "/usr/share/zoneinfo/$TIMEZONE" /etc/localtime
# Write to wtmp file before unmounting
halt -w
status "Deactivating Swap" swapoff -a
# stop monitoring of lvm2 groups before unmounting filesystems
[[ $USELVM = [Yy][Ee][Ss] && -x $(type -P lvm) && -d /sys/block ]] &&
status "Deactivating monitoring of LVM2 groups" \
vgchange --monitor n &>/dev/null
# if we don't have devtmpfs support, /dev is mounted as tmpfs, so don't unmount it
status "Unmounting Filesystems" \
umount -a -r -t nodevtmpfs,notmpfs,nosysfs,noproc,nodevpts -O no_netdev
run_hook shutdown_postumount
# Kill non-root encrypted partition mappings
if [[ -f /etc/crypttab && $CS ]] && grep -q ^[^#] /etc/crypttab; then
stat_busy "Deactivating encrypted volumes:"
# Maybe someone has LVM on an encrypted block device
# executing an extra vgchange is errorless
[[ $USELVM = [Yy][Ee][Ss] ]] && vgchange --sysinit -a n &>/dev/null
do_lock() {
stat_append "${1}.."
if $CS remove "$1" &>/dev/null; then
stat_append "ok "
else
stat_append "failed "
fi
read_crypttab do_lock
stat_done
fi
[[ $USELVM = [Yy][Ee][Ss] && -x $(type -P lvm) && -d /sys/block ]] &&
status "Deactivating LVM2 groups" vgchange --sysinit -a n &>/dev/null
status "Remounting Root Filesystem Read-only" \
lsof /
mount -n -t ext4 --verbose -o remount,ro /dev/sda3 /
reboot -d -f -i
run_hook shutdown_poweroff
# Power off or reboot
printsep
if [[ $RUNLEVEL = 0 ]]; then
printhl "${C_H2}POWER OFF"
poweroff -d -f -h -i
else
printhl "${C_H2}REBOOTING"
# if kexec is installed and a kernel is loaded, use it
[[ -x $(type -P kexec) ]] && kexec -e &>/dev/null
fi
# End of file
# vim: set ts=2 sw=2 noet:
Last edited by ahronzombi (2011-11-12 17:10:43)

So installing the testing initscripts seems to fix the reboot command, but still the most commonly used command shutdown -r now still wont do a full reboot.
/etc/rc.local.shutdown
#!/bin/bash
# /etc/rc.local.shutdown: Local shutdown script.
#killall dropbox
#umount /home/ahron/Dropbox/Backup
#killall Xvnc
#fuser -vm /
/etc/rc.d/functions
NETFS="nfs,nfs4,smbfs,cifs,codafs,ncpfs,shfs,fuse,fuseblk,glusterfs,davfs,fuse.glusterfs"
# Check local filesystems
fsck_all() {
fsck -A -T -C"$FSCK_FD" -a -t "no${NETFS//,/,no},noopts=_netdev" $FORCEFSCK
# Single-user login and/or automatic reboot after fsck (if needed)
fsck_reboot() {
# $1 = exit code returned by fsck
# Ignore conditions 'FS errors corrected' and 'Cancelled by the user'
(( ($1 | 33) == 33 )) && return 0
if (( $1 & 2 )); then
echo
echo "********************** REBOOT REQUIRED *********************"
echo "* *"
echo "* The system will be rebooted automatically in 15 seconds. *"
echo "* *"
echo "************************************************************"
echo
sleep 15
else
echo
echo "***************** FILESYSTEM CHECK FAILED ****************"
echo "* *"
echo "* Please repair manually and reboot. Note that the root *"
echo "* file system is currently mounted read-only. To remount *"
echo "* it read-write type: mount -n -o remount,rw / *"
echo "* When you exit the maintenance shell the system will *"
echo "* reboot automatically. *"
echo "* *"
echo "************************************************************"
echo
sulogin -p
fi
echo "Automatic reboot in progress..."
umount -a
mount -n -o remount,ro /
reboot -f
exit 0
mount_all() {
mount -a -t "nosysfs,no${NETFS//,/,no}" -O no_netdev
umount_all() {
# $1: restrict to fstype
local mounts
while read -r target fstype options; do
# match only targetted fstypes
if [[ $1 && $1 != "$fstype" ]]; then
continue
fi
# don't unmount API filesystems
if [[ $target = /@(proc|sys|run|dev|dev/pts) ]]; then
continue
fi
# avoid networked devices
IFS=, read -ra opts <<< "$options"
if in_array _netdev "${opts[@]}"; then
continue
fi
mounts+=("$target")
done < <(findmnt -runRo TARGET,FSTYPE,OPTIONS / | tac)
umount -r "${mounts[@]}"
remove_leftover() {
stat_busy "Removing Leftover Files"
# handle this separately until we declare the non-symlinks obsoleted
[[ ! -L /var/lock ]] && rm -rf /var/lock/*
if [[ ! -L /var/run && -d /var/run ]]; then
find /var/run/ \! -type d -delete
ln -s /run/daemons /var/run/daemons
fi
/usr/lib/initscripts/arch-tmpfiles --create --remove && stat_done || stat_fail
bootlogd_stop() {
[[ -f /run/bootlogd.pid ]] || return 0
touch /var/log/boot
kill $(< /run/bootlogd.pid)
rm -f /run/bootlogd.pid
sed -i -r -e 's/\^\[\[[0-9]?;?[0-9]?[0-9]?;?[0-9]?[0-9]?[ms]//g' \
-e 's/\^\[(\[1?[0-9][0-9]|%)G//g' -e 's/\^\[\[0;1//g' /var/log/boot
# Custom hooks in initscripts #
# Hooks can be used to include custom code in various places in the rc.* scripts
# Define a hook function in a functions.d file using:
# function_name() {
# add_hook hook_name function_name
# It is allowed to register several hook functions for the same hook
# Is is also allowed to register the same hook function for several hooks
# Currently, the following hooks exist:
# sysinit_start: at the beginning of rc.sysinit
# multi_start: at the beginning of rc.multi
# single_start: at the beginning of rc.single
# shutdown_start: at the beginning of rc.shutdown
# sysinit_end: at the end of rc.sysinit
# multi_end: at the end of rc.multi
# single_end: at the end of rc.single
# sysinit_udevlaunched: after udev has been launched in rc.sysinit
# single_udevlaunched: after udev has been launched in rc.single
# sysinit_udevsettled: after uevents have settled in rc.sysinit
# single_udevsettled: after uevents have settled in rc.single
# sysinit_premount: before local filesystems are mounted, but after root is mounted read-write in rc.sysinit
# sysinit_postmount: after local filesystems are mounted
# shutdown_prekillall: before all processes are being killed in rc.shutdown
# single_prekillall: before all processes are being killed in rc.single
# shutdown_postkillall: after all processes have been killed in rc.shutdown
# single_postkillall: after all processes have been killed in rc.single
# shutdown_postumount: after filesystems are unmounted
# shutdown_poweroff: directly before powering off in rc.shutdown
# Declare add_hook and run_hook as read-only to prevent overwriting them.
# Too bad we cannot do the same thing with hook_funcs
if (( RC_FUNCTIONS_HOOK_FUNCS_DEFINED != 1 )); then
declare -A hook_funcs
add_hook() {
[[ $1 && $2 ]] || return 1
hook_funcs[$1]+=" $2"
run_hook() {
[[ $1 ]] || return 1
local func
for func in ${hook_funcs["$1"]}; do
"${func}"
done
declare -fr add_hook run_hook
declare -r RC_FUNCTIONS_HOOK_FUNCS_DEFINED=1
fi
# Function for setting console font if required
set_consolefont() {
[[ $CONSOLEFONT ]] || return 0
stat_busy "Loading Console Font: $CONSOLEFONT"
#CONSOLEMAP in UTF-8 shouldn't be used
[[ $CONSOLEMAP && ${LOCALE,,} =~ utf ]] && CONSOLEMAP=""
local i
for i in /dev/tty[0-9]*; do
setfont ${CONSOLEMAP:+-m "${CONSOLEMAP}"} \
"$CONSOLEFONT" -C ${i} &>/dev/null
done
if (( $? )); then
stat_fail
elif [[ $CONSOLEMAP ]]; then
cat <<"EOF" >>/etc/profile.d/locale.sh
if [ "$CONSOLE" = "" -a "$TERM" = "linux" -a -t 1 ]; then printf "\033(K"; fi
EOF
stat_done
else
stat_done
fi
if [[ $DAEMON_LOCALE = [yY][eE][sS] ]]; then
LANG=${LOCALE:-C}
if [[ -r /etc/locale.conf ]]; then
parse_envfile /etc/locale.conf "${localevars[@]}"
fi
else
export LANG=C
fi
# set colors
if [[ $USECOLOR = [yY][eE][sS] ]]; then
if tput setaf 0 &>/dev/null; then
C_CLEAR=$(tput sgr0) # clear text
C_MAIN=${C_CLEAR}$(tput bold) # main text
C_OTHER=${C_MAIN}$(tput setaf 4) # prefix & brackets
C_SEPARATOR=${C_MAIN}$(tput setaf 0) # separator
C_BUSY=${C_CLEAR}$(tput setaf 6) # busy
C_FAIL=${C_MAIN}$(tput setaf 1) # failed
C_DONE=${C_MAIN} # completed
C_BKGD=${C_MAIN}$(tput setaf 5) # backgrounded
C_H1=${C_MAIN} # highlight text 1
C_H2=${C_MAIN}$(tput setaf 6) # highlight text 2
else
C_CLEAR="\e[m" # clear text
C_MAIN="\e[;1m" # main text
C_OTHER="\e[1;34m" # prefix & brackets
C_SEPARATOR="\e[1;30m" # separator
C_BUSY="\e[;36m" # busy
C_FAIL="\e[1;31m" # failed
C_DONE=${C_MAIN} # completed
C_BKGD="\e[1;35m" # backgrounded
C_H1=${C_MAIN} # highlight text 1
C_H2="\e[1;36m" # highlight text 2
fi
fi
# prefixes:
PREFIX_REG="::"
PREFIX_HL=" >"
# Source additional functions at the end to allow overrides
for f in /etc/rc.d/functions.d/*; do
[[ -e $f ]] && . "$f"
done
# Exit current shell if user is not root
need_root() {
(( EUID )) && printf 'You need to be root.\n' && exit 1
# Quit script if it's not running by root
# This can be disabled in scripts sourcing functions by setting NEED_ROOT=0
# A local call to need_root can be done to ensure part of script need root privilege
(( ${NEED_ROOT:-0} == 1 )) && need_root
# End of file
# vim: set ts=2 sw=2 noet:

Similar Messages

  • Send email on reboot, shutdown and boot

    Hi, I'm trying to setup my 10.4.11 machine (I have one that runs leopard and one that runs tiger) so that it sends a email on reboot, shutdown and boot. I have attempted to do so by placing a script that sends a email via the terminal mail command in /etc/rc.local for boot, /etc/rc.shutdown.local for shutdown and /etc/rc.reboot.local for reboot. The only problem is that when I reboot the shutdown script is executed instead of the reboot script and rc.local is never executed. My guess is that I need to use a launchd task for the boot email instead of rc.local but I'm not sure what Apple is using instead of rc.reboot.local ...any ideas? Thanks!

    I have solved this problem by assuming that reboot and shutdown both rely on rc.shutdown.local as appears to be the case and thusly changing the title of the email to say that the server is shutting down -or- rebooting (which should become obvious as in the case of it rebooting a booting up email will follow shortly). I then copied rc.local to another location, ensured it had the executable bit set, and used Lingon to execute it on boot since rc.local does not seem to be working. Emails upon sleep and wake (machine set to sleep after one minute when switched to battery and acwake has been set to 1 via pmset so that when power resumes the machine automatically wakes up effectively turning the laptop battery into a UPS) are taken care of via sleepwatcher.

  • Txt message freezes while sending since iso7

    When I go to send a txt message or reply to a message my phone is freezing during the sending process. Not delivering the txt.  I have done the setting-general-reset-Reset Network settings, then it works for a little while, and again it freezes again. I have had to reset 2 times in the last day. I have also had to reset my enite phone to factory setting b/c school sits stopped allowing access.  Once I reset it works again.  HELP!

    I have this question too.  I am using iPhone 5 with iOS7 upgrade on AT&T...it freezes during send of texts (all types, simple text only msgs and pics have same problem).   Dual button reboot fixes for a bit then re-occurs. 

  • Lumia 620 Rebooting and Freezing

    My family have 4 Lumia 620's between us and all of them have been having problems with random reboots and screen freezes since the Lumia Black update.  I have tried resetting them and have verified that all the apps were updated (In all 4 cases "access point" required updating as it never automatically showed an update was needed) but this has not resolved the problem.  
    The reboots sometimes happen when using the phone, for example in IE, and sometimes just when the phone is sitting, not being used. Freezes usually happen on the lock screen, requiring the phone to be rebooted by holding down volume and power.
    On a few occassions, the phones have reset their date and time after a reboot and eventually correct it automatically.
    On a couple of occassions, a reboot sometime during the night has reset the alarms causing them to be missed.
    It seems to only be the Lumiz 620's that have this problem as I have a Lumia 820 and 520 which are not showing the same problem in-spite of being upgraded to Lumia Black.  
    My family are very frustrated with these reboots and freezes and are now considering moving to another platform.  Please help as I would like them all to stick with Windows Phone for when 8.1 is released.

    hi mate, sorry to hear of the problems you have been experiencing. in this case, the only option you have left is to perform a hard reset, and failing that, a visit to your nearest Nokia Care location for inspection of your handsets is mandated.

  • Why cant I sign in and send. My subscription is current

    Why cant I sign in and send. My subscription is current

    Hi Drew,
    Could you please tell me whether you are trying to sign in at "Acrobat.com" or via Adobe Reader.
    What error do you get while signing in?
    Have you tried using a different browser?
    Hope to hear from you.
    Regards,
    Anubha

  • N73 freezes when sending a message

    Hi , my Nokia N73 Phone freezes when sending a message. Other unctions are working fine.
    The phone software is updated with latest version.
    Need help guys!!!
    Cheers
    Sachin

    update you stuff and try code number two, you will lose all phone data but it might help your issue
    *#7780# - Restore factory settings - resets all the settings to the default ( you will not lose any data)
    Make sure you back up your data as you will lose all of it when you perform option 2 or 3 on this list.
    *#7370# - Reformat your phone
    This you perform as a last resort. Nothing else is working. Turn off your phone, hold the following buttons while pressing the power button. (the default code is 12345)
    re-flash - hold the following buttons *, 3 (number button) and talk/green key. turn on the phone and do not release those buttons until you see the Nokia boot up screen.
    If these codes are not working the only thing for you to do is contact your Nokia Care Center/Service.
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • Reset all content and settings to my iPhone, and when it tries to reboot it freezes up during the rebooting process, any suggestions?

    Reset all content and settings to my iPhone, and when it tries to reboot, it freezes up during the rebooting process, any suggestions?

    Read http://support.apple.com/kb/ht1808

  • Reboot/Shutdown Action isn't processing automatically

    I've built a single action bundle that contains the Reboot/Shutdown task. When run, either automatic or via the launcher, it displays my prompt and all is well. If I click yes, the system shuts down and if I click no the system remains up and working fine.
    The kicker, is if I let it count down fully to shutdown on its own, nothing happens. The system remains up without any errors logged in the Event Log nor the zmd-messages.log.
    I've tried removing the prompt and the timer, the automatic shutdown still doesn't kick off on its own.
    We're running 11.3.1 FTF Roll Up 1
    Any suggestions?
    Edit: Apologies, wandered into the wrong forum section.

    Sorry about the mis-post, and thanks so much for the info.
    Originally Posted by CRAIGDWILSON
    This is a known issue. (Bug#894215)
    A Fix to correct accidental reboot confirmations caused this issue.
    An "FTF" is available via an SR.
    It is expected to be fixed in 11.3.2 when it ships.
    On 10/16/2014 12:36 PM, SawBlade wrote:
    >
    > I've built a single action bundle that contains the Reboot/Shutdown
    > task. When run, either automatic or via the launcher, it displays my
    > prompt and all is well. If I click yes, the system shuts down and if I
    > click no the system remains up and working fine.
    >
    > The kicker, is if I let it count down fully to shutdown on its own,
    > nothing happens. The system remains up without any errors logged in the
    > Event Log nor the zmd-messages.log.
    >
    > I've tried removing the prompt and the timer, the automatic shutdown
    > still doesn't kick off on its own.
    >
    > We're running 11.3.1 FTF Roll Up 1
    >
    > Any suggestions?
    >
    > Edit: Apologies, wandered into the wrong forum section.
    >
    >
    Going to Brainshare 2014?
    http://www.brainshare.com
    Use Registration Code "nvlcwilson" for $300 off!
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Technical Support Engineer
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • I don't have a 3G so i use Sms/Mms messaging when i have wifi. My co'iphone users receive my text messages but i cant receive theirs because it sends as an imessage. HELP thanks

    I Don't have a 3G on my iphone 4. So when i dont have a wifi, i send text through SMS/MMS messaging. I can receive and send SMS/MMS messages to non iphone users. I can also send the same messages to my co iphone users but i cant receive theirs because it sends as imessage. someone help me pls. Thnks

    The only way to get around that, since you do not have a data plan, is to completely disable iMessage. While you can turn on the switch for Send As SMS on, which could send your messages as SMS when not connected to Wi-Fi and data is not turned on, it could also find your messages lost in the server and never delivered. Also, anyone sending to you would have to be set up the same way. You can check out this support document for deactivating iMessage. iOS: Deactivating iMessage
    iMessage requires an active data connection for both the sender and receiver to work properly.

  • Two things, One freezing after sending files, two ...

    So yea, the first one i'm sure i'm not the first to wonder why it's doing that for and i did try some of the things that were told to be done like; Renaming skype in the %appdata% and then deleting that other skype folder in that other place but, it just re-freezes after sending anything again anyway, and secondly, for some reason the ads keeps flickering whenever i type something it's not really all that big of a deal on this one but, it's annoying anyway.
    So, in short, why does it keep freezing after sending something and how do i make it stop freezing.
    And on a side note, i'm very terrible with forums so, please don't be hating me if i posted this in the wrong place.

    What version of Windows are you on (XP, Vista, Windows 7, Windows 8 )? Is it 32-bit or 64-bit?
    http://support.microsoft.com/kb/827218
    What is the version of Internet Explorer installed on your computer?
    In Internet Explorer go to Help -> About Internet Explorer.
    P.S. Please, don’t say that you are not using Internet Explorer. This is irrelevant. Skype depends on Internet Explorer.

  • Equium - Black screen and cant reboot with the recovery disc

    I have a black screen and cant reboot with the recovery disc but I seem to be getting nowhere.
    I find it strange I cant ask Toshiba direct about my problem but I have to wait for a kind hearted person to solve my problem or give me a helping hand

    Of course you can ask Toshiba. Toshiba has Authorized service providers worldwide and I hope some of them are in your country too.
    So please visit Toshiba support page under http://eu.computers.toshiba-europe.com > Support & Download > Find an ASP and contact nearest service provider. Just explain the situation and I hope they will help you.
    Back to your problem:
    It is not easy to say why this happen. The whole issue is not described so well and I am missing some important points.
    Maybe you have upgraded RAM and now notebook doesnt start properly. It is also possible that CPU is defective. It can be so many different reasons for this.
    Best thing you can do is to contact service and ask for help. they can run diagnostic tools and find out quickly what the problem is.

  • HELP!! Panther Install disk stalled, turned off powerbook,cant reboot!

    Desperate need of assistance!! Hard drive was giving me nightmares despite clearing everything off (45 gigs spare). Suspected RAM issue or Hard Drive corruption causing everything to run slowly, boot up took 20 minutes, very familiar with the spinning ball. Thought I'd reload Panther 10.3. Got through first disk, restarted, requested second install disk, got through 78% of that then stalled. Turned powerbook off, back on and after the initial grey screen with apple on it got a four bling lines of text suggesting an overlap with OSX9 and reinitiating. Seems to be in a neverending loop, dont know how to stop this. Reboot only brings this up again. Cant eject Install disk 2, cant reboot. Hopefully there is something else I can do as its basically a dead duck at the moment, please help!!

    Desperate need of assistance!! Hard drive was giving me nightmares despite clearing everything off (45 gigs spare). Suspected RAM issue or Hard Drive corruption causing everything to run slowly, boot up took 20 minutes, very familiar with the spinning ball. Thought I'd reload Panther 10.3. Got through first disk, restarted, requested second install disk, got through 78% of that then stalled. Turned powerbook off, back on and after the initial grey screen with apple on it got a four bling lines of text suggesting an overlap with OSX9 and reinitiating. Seems to be in a neverending loop, dont know how to stop this. Reboot only brings this up again. Cant eject Install disk 2, cant reboot. Hopefully there is something else I can do as its basically a dead duck at the moment, please help!!

  • Galaxy S4 issues rebooting itself/freezing

    I just got a replacement phone from my orginal that I had broke.  I received the replacement phone on 3/27.  The phone constantly reboots itself and freezing.  I have updated my phone, so I am not sure what else I can do to fix it.  Please Help!!!!

    Oh no! I'm sure this is upsetting for you. When does it reboot or freeze? Is it during a specific action?  Does it do this when it is in Safe Mode http://vz.to/15rkFOi? 
    TamaraH_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • I have a white screen with a black apple logo. I cant turn phone off or on. I cant reboot it by holding both buttons and it wont connect to my computer. What do i do?

    I have a white screen with a black apple logo. I cant turn phone off or on. I cant reboot it by holding both buttons and it wont connect to my computer. What do i do?

    Hi wiilson Cunha,
    Oh man! That definitely sounds frustrating. Let’s see if we can troubleshoot this issue by following the steps in this resource:
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    http://support.apple.com/en-us/HT201412
    If your device gets stuck during startup
    When starting up, you might see the Apple logo or a red or blue screen for a long time, or your device might restart again. Try these steps:
    Make sure that you have iTunes 12 or later on your computer.
    Put your device in recovery mode.
    When you get the option to restore or update, select Update. This will reinstall iOS without erasing your data.
    Get more help
    If you still need help after trying the steps above, contact Apple Support.
    If the issue persists, follow the final link to contact us for additional assistance.
    - Matt M.

  • Blackberry 9810 Reboot Screen Freeze!! Help?

    I can't get passed my reboot screen, I have tried taking out the battery many times, tried downloading the software update and also tried putting in the original software from AT&T and it still freezes on the reboot screen near the end. I downloaded a software called "blackberry Swiss army kit" to help me as well and I still got nothing done. Everything installs but when it reboots its freezes at the same spot. I called blackberry and they want to charge me $49.99 for help? Its a blackberry problem and I should be charged, that's poor service I must say.
    Can anyone help me with this ASAP?

    Hi. I have the same problem. None of the above solutions work. I tried safe mode, I tried removing my memory card, I tried using the laptop and I removed the battery lots of times (left out the battery for hours tried again nothing) Help please that's my business phone I need it...

Maybe you are looking for

  • I  want to edit some words in it

    I have a fully PDF files. It contains text but, I  want to edit some words in it. So I want to   Convert it in doc. Format and changes these words. Is there are any sites where I can convert it?

  • Itunes library has disappeared after update.

    Hi all, I have just updated my itunes to the new 11.1.5 version and it has lost all my playlists and library bar a few albums I have purchased on the store! I'm distraught. My iTunes library is in a folder on my desktop. My last 'Previous itunes libr

  • Worflow Substitution question

    If manager A uses a substitute Manager B. The WIs will go to the inbox of B. When manager B approves the WI how can can manager A see what happened to the WI  when he/she returns to work.  The WI is not in the completed tasks list of A but is in the

  • What does it mean if you get a 150:30 error ... and who can I get help from? I have the photoshop and can't open

    What does 150:30 message error mean? Where can I find a number to call for help

  • Another FLV Question

    Hoping someone can help. And have searched alot of forums to no avail. Have got flash CS3 installed and so have the quicktime export components for compressor so I can export an flv. When I do, great, I can view the file in adobe media player but not