[SOLVED] Need BCM4312 wifi during installation

To install my system, I need to connect to the internet via wifi. My system has a a Broadcom BSM4312 802.11 a/b/g (rev 01) inbuilt wi-fi card.
So, going through the guide brings me to this step:
iwconfig
Which lists the interfaces eth0 and lo. eth0 being my wired ethernet adapter. The same command on my installed Ubuntu system lists eth0 (wired), eth1 (wireless) and lo. So it's just not there while installing.
Further research in the wiki brings me to this page: [wiki]Broadcom_BCM4312[/wiki].
There's a PKGBUILD in AUR. Or, you can download the driver from here, where you will also find a README file.
Which is somewhat problematic, as I have no wifi to install/download this while installing. How do I solve this problem?
Last edited by Macha (2010-04-09 16:30:58)

@wonder
Worked fine!
a) sudo pacman -S git
b) created a new folder
mkdir wifi
cd wifi
git clone http://git.bu3sch.de/git/b43-tools.git
cd b43-tools/fwcutter
make
cd ..
export FIRMWARE_INSTALL_DIR="/lib/firmware"
wget http://downloads.openwrt.org/sources/br … .4.tar.bz2
tar xjf broadcom-wl-4.178.10.4.tar.bz2
cd broadcom-wl-4.178.10.4/linux
sudo ../../fwcutter/b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" wl_apsta.o
c) reboot
Then... the Wireless indicator turned on that means it was enabled.
Considering I was using ArchBang 2 RC2 that already comes with Wicd, I only clicked over the applet that opened a window with my wireless SSID and a rectangle to put my WPA key.
That's it!  Another and easy way to have my bcm4312 working out of the box.
Thanks for showing me a new way.

Similar Messages

  • [SOLVED] need a little final installation help

    Hey,
    first of all, i just installed the latest version of arch but I need to get the following things working:
    wifi (didn't know what firmware i needed during install and just used eth0)
    blue tooth (for my bluetooth mouse)
    My external hard drive wont show up? do i need to set something up for this? the hard drive is fine
    Im running Gnome as my X DE
    Logging in as root
    laptop is hp pavilion dv5
    Wifi:
    Here is a few outputs which might help:
    [root@hackbox ~]# lspci
    Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection
    ## i deleted the rest to save space here, please ask if you would like the whole list##
    [root@hackbox ~]# iwconfig wlan0
    wlan0 IEEE 802.11abgn ESSID:off/any
    Mode:Managed Access Point: Not-Associated Tx-Power=0 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    [root@hackbox ~]# ifconfig wlan0
    wlan0 Link encap:Ethernet HWaddr 00:16:EA:67:CA:72
    BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    [root@hackbox ~]# dhcpcd wlan0
    dhcpcd[8428]: version 5.2.11 starting
    dhcpcd[8428]: wlan0: waiting for carrier
    dhcpcd[8428]: timed out
    [root@hackbox ~]# iwlist
    Usage: iwlist [interface] scanning [essid NNN] [last]
    [interface] frequency
    [interface] channel
    [interface] bitrate
    [interface] rate
    [interface] encryption
    [interface] keys
    [interface] power
    [interface] txpower
    [interface] retry
    [interface] ap
    [interface] accesspoints
    [interface] peers
    [interface] event
    [interface] auth
    [interface] wpakeys
    [interface] genie
    [interface] modulation
    [root@hackbox ~]# ifconfig wlan0 up
    [root@hackbox ~]# dhcpcd
    dhcpcd[8462]: version 5.2.11 starting
    dhcpcd[8462]: eth0: rebinding lease of 192.168.0.12
    dhcpcd[8462]: wlan0: waiting for carrier
    dhcpcd[8462]: eth0: acknowledged 192.168.0.12 from 192.168.0.1
    dhcpcd[8462]: eth0: leased 192.168.0.12 for 86400 seconds
    dhcpcd[8462]: forked to background, child pid 8494
    [root@hackbox ~]# dhcpcd wlan0
    dhcpcd[8495]: sending commands to master dhcpcd process
    [root@hackbox ~]# dmesg | grep firmware
    iwlagn 0000:02:00.0: loaded firmware version 8.83.5.1 build 33692
    Keep in mind I was connected via eth0 during this process.
    Basically, im pretty sure i need to install some firmware and or drivers.. i just dont know what. I want the wireless to connect at startup.
    Bluetooth:
    Basically the only way i can get it to work at the moment is to do
    # /etc/rc.d/dbus start
    # /etc/rc.d/bluetooth start
    # blueman-applet
    the dbus is now starting at startup even, but bluetooth isnt..
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng dbus network netfs bluetooth crond)
    Im not sure if the bluetooth daemon is correct either?
    External Hard Drive doesnt apper in my file manager:
    External drive shows up in nautilus and thunar, but permission to transfer files is denied... why? I did:
    #cd /etc/polkit-1/localauthority/50-local.d
    #gedit 55-myconf.pkla
    Added this to file:
    [Storage Permissions]
    Identity=unix-group:storage
    Action=org.freedesktop.udisks.filesystem-mount;org.freedesktop.udisks.drive-eject;org.freedesktop.udisks.drive-detach;org.freedesktop.udisks.luks-unlock;org.freedesktop.udisks.inhibit-polling;org.freedesktop.udisks.drive-set-spindown
    ResultAny=yes
    ResultActive=yes
    ResultInactive=no
    #usermod -a -G storage root
    #usermod -a -G storage dex
    Any help/guidence would be much appreciated! I Have been using Ubuntu for the last 18 months and have always wanted to install Arch! And im keen to get to know this operating system well and be apart of the Arch community
    Last edited by CoolWhip (2011-04-11 03:01:07)

    ok.. im getting somewhere.. i found my driver..
    So far
    [root@hackbox ~]# wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-5000-ucode-8.83.5.1.tgz
    --2011-04-07 21:39:22-- http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-5000-ucode-8.83.5.1.tgz
    Resolving intellinuxwireless.org... 204.253.143.234
    Connecting to intellinuxwireless.org|204.253.143.234|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 179768 (176K) [application/x-gzip]
    Saving to: “iwlwifi-5000-ucode-8.83.5.1.tgz”
    100%[=========================================================>] 179,768 80.1K/s in 2.2s
    2011-04-07 21:39:25 (80.1 KB/s) - “iwlwifi-5000-ucode-8.83.5.1.tgz” saved [179768/179768]
    [root@hackbox ~]# ter zxvf iwlwifi-5000-ucode-8.83.5.1.tgz
    bash: ter: command not found
    [root@hackbox ~]# tar zxvf iwlwifi-5000-ucode-8.83.5.1.tgz
    iwlwifi-5000-ucode-8.83.5.1/
    iwlwifi-5000-ucode-8.83.5.1/iwlwifi-5000-5.ucode
    iwlwifi-5000-ucode-8.83.5.1/README.iwlwifi-5000-ucode
    iwlwifi-5000-ucode-8.83.5.1/LICENSE.iwlwifi-5000-ucode
    [root@hackbox ~]# cd iwlwifi-5000-ucode-8.83.5.1
    [root@hackbox ~]# cp iwlwifi-5000-5.ucode /lib/firmware/
    this is now my /etc/rc/conf   Please let me know if something doeesnt look right
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    HARDWARECLOCK="UTC"
    TIMEZONE="Australia/Brisbane"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(fuse usblp)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="hackbox"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    eth0="dhcp"
    wlan0-"dhcp"
    wlan_wlan0="wlan0 essid JDA"
    #wlan_wlan0="wlan0 essid MyEssid key 1234567890" # hex WEP key
    #wlan_wlan0="wlan0 essid MyEssid key s:asciikey" # ascii WEP key
    INTERFACES=(eth0 wlan0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng dbus network netfs bluetooth crond)
    Last edited by CoolWhip (2011-04-07 12:17:19)

  • [SOLVED] error with mkinitcpio during installation

    Hi there
    I am looking to install Arch after I broke a previous installation
    I put this basic set of commands after reading the Installation Guide and I run it from in the live /root. 
    #!/bin/bash
    loadkeys uk
    mkfs -t ext4 /dev/sda7
    mkfs -t ext4 /dev/sda8
    mkswap -f /dev/sda6
    mkdir /mnt/root
    mkdir /mnt/home
    mount /dev/sda7 /mnt/root
    mount /dev/sda8 /mnt/home
    pacstrap /mnt/root base base-devel
    genfstab -p /mnt >> /mnt/root/etc/fstab
    arch-chroot /mnt
    ln -s /usr/share/zoneinfo/Europe/London /etc/localtime
    nano /etc/locale.conf
    locale-gen
    mkinitcpio -p linux
    passwd root
    If I run this script, there's some kind of problem with mkinitcpio and /boot is empty. It worked a month or so ago - maybe it's content in the new .iso? A misplaced /mnt or /mnt/root?
    Any ideas? I've never failed to install distro properly and am a bit confused!
    Thanks in advance
    EDIT
    I changed the script to this
    loadkeys uk
    cfdisk
    mkfs -t ext4 /dev/sda7
    mkfs -t ext4 /dev/sda8
    mkswap -f /dev/sda6
    mkdir /mnt/root
    mkdir /mnt/home
    mkdir /mnt/storage
    mount /dev/sda7 /mnt/root
    mount /dev/sda8 /mnt/home
    mount /dev/sdb1 /mnt/storage
    pacstrap /mnt/root base base-devel
    genfstab -p /mnt/root >> /mnt/root/etc/fstab
    arch-chroot /mnt/root
    ln -s /usr/share/zoneinfo/Europe/London /etc/localtime
    nano /etc/locale.conf
    locale-gen
    mkinitcpio -p linux
    passwd root
    exit
    will see if that helps
    Last edited by Bazzaah (2013-03-18 19:26:29)

    Bazzaah wrote:
    Great, thanks for your help, much appreciated.
    I do indeed have a functional system (basic of course) but what concerns me is that I get a not found error after mkinitcpio - the system boots so the kernel and initrd must be there...still that error message worries me a bit.
    About that error, you need to post it, if you want help!
    Edit: If you are running those commands in a file, make it look like this:
    loadkeys uk
    cfdisk
    mkfs.ext4 /dev/sda7
    mkfs.ext4 /dev/sda8
    mkswap -f /dev/sda6
    mkdir /mnt/root
    mkdir /mnt/root/home
    mkdir /mnt/root/storage
    mount /dev/sda7 /mnt/root
    mount /dev/sda8 /mnt/root/home
    mount /dev/sdb1 /mnt/root/storage
    pacstrap /mnt/root base base-devel
    genfstab -U -p /mnt/root > /mnt/root/etc/fstab
    arch-chroot /mnt/root /bin/bash -c "ln -s /usr/share/zoneinfo/Europe/London /etc/localtime"
    arch-chroot /mnt/root /bin/bash -c "nano /etc/locale.conf"
    arch-chroot /mnt/root /bin/bash -c "locale-gen"
    arch-chroot /mnt/root /bin/bash -c "mkinitcpio -p linux"
    arch-chroot /mnt/root /bin/bash -c "passwd root"
    The lines with "arch-chroot /mnt/root /bin/bash -c" are needed to run those inside the chroot environment, or else they will run in your live system, instead of making changes to your created system.
    Last edited by s1ln7m4s7r (2013-03-18 17:46:26)

  • [Solved]libreoffice signature error during installation

    hi,
    I was unable to install libreoffice, this is the only package I had problems with. Getting this error:
    error: redland: signature from "Andreas Radke <[email protected]>" is invalid
    error: redland-storage-virtuoso: signature from "Andreas Radke <[email protected]>" is invalid
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    Last edited by ottoshmidt (2013-03-21 08:43:06)

    I had the same error this morning and I found the same solutions on forums about to use pacman-key --init and another instructions. I'll try later your solution. Hope it works

  • Do I need to provide the physcial hostname to iAS during installation or can I just that installed name into the /etc/hosts file?

     

    Hi,
    Pls confirm if you are using Windows 2000 Pro, in this O/S the
    hostname is the name of the computer itself. Check the
    MyComputer->Properties->Network Identification->Properties, the name you
    find under the computer name will be automatically taken while
    installation, if it doesn't then there is some error. However the
    C:\Winnt\System32\Drivers\Etc\hosts doesn't matter much while installing
    iAS 6.0 SP1 or above. Hope this helps
    Regards
    Raj
    Hazel Seow wrote:
    Do I need to provide the physcial hostname to iAS during installation
    or can I just that installed name into the /etc/hosts file?
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • How To solve the error FJS 0012 during installation IDES4.7

    Hi,
    I got an error FJS00012 during installation of  IDES4.7. How to solve the problem? is there any way to solve the problem..... please suggest me.... and send a mail to [email protected]..
    regards
    Sankar

    Please post the relevant parts of the logfile, I don'T think, someone here knows all the error messages out of his head..
    Markus

  • [SOLVED]please help me with Broadcom Corporation BCM4312 wifi driver

    [SOLVED] see the 4th reply by me:D
    Please friends some one tell me exact steps to make Broadcom Corporation BCM4312 wifi card work in my laptop.
    I want to
                   1)successfully install Broadcom Corporation BCM4312 driver and load it when system boots
                   2)install a good network manager to work with my wifi networks and it should be able to work with my wifi card.
    I just migrated from ubuntu to arch, I really want to know each steps for above issues.
    here is my lspci details
    04:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g (rev 01)
    (note:I have a broadband internet working, which is connected by LAN port.)
    Last edited by rohu1990 (2010-04-04 03:17:31)

    rohu1990 wrote:
    [SOLVED] I just solved my issue by installing the driver from the broadcom linux driver site here are the steps i followed
    1-Download the driver from http://www.broadcom.com/support/802.11/linux_sta.php
    2-Extract it to a folder in home
    3-Read readme and understand the depedencies and follow the steps to disable the other wifi   modules
                       for me solved with installing :kernal26-headers and base-devel
    4-follow the steps in the read me and make then make install
    5-insert module into kernal
    6-make it automatic to load on startup
    Hope some one find this usefull cheers !!!:)
    I know this will help many people, even though I don't use this card.
    Thing to add to 5 and 6:
    5 - Command: modprobe XXXXX (module name)
    6- Add module name to MODULES=() in /etc/rc.conf

  • FATAL ERROR occurred during installation

    Trying to install a HP Officejet 4500 G510g-m onto a HP Desktop PC with Windows Vista.
    Error message reads:
    Fatal error message during installation
    An error occurred during installation of assembly
    'Microsoft.vc90.MFC,version="9.0.21022.8",publickeytaken=1fc8b3b9 a1e18e3b",processor architecture="x86",type="win32".'
    "Fatal error"
    "MSI.netdevicemanager40"
    Error logs reads:
    +0000000000000958722048/s/Now launching=x:/hpzmsi01.exe -m netdevicemanager40 -I xxx -f 'x:/hpwwins26.dat" - validate No at" -validate No
    X:/Network64.msi failed with return code 1603
    When searching for the code 1603, I found a trouble shooting number (c02455020)
     When I run the program regsvr32 Atl.dll it came up with 
    DII Register Server failed with error code 0x2002801c
    But the com product was already registered, the computer has been re-started 12 times.  So I cannot understand why I cannot install the complete printer, why is telling me that only the basics can be installed.  I purchased and ll-in-one because I need it all not just a printer.
    Be so kind to enlighten me.
    My father's patience has ended, and before he packs it back into the box, I am willing to troubleshoot it with you.
    Please help.
    Thank you.

    Hello Techiizz
    Try the following article. It covers the Fatal Error 1603 and should help resolve your problem.
    MSI Fatal Error 1603
    Don't forgot to say thanks by giving "Kudos" to those that help solve your problems.
    When a solution is found please mark the post that solves your issue.

  • Fatal error during installation - Error 1603 ONLY on XP

    My Dears,
    while installing any CS3 or CS4 Adobe product for my friend, at ~90% of installation error comes up:
    "Adobe Photoshop CS4
    Error:
    Error 1603. Fatal error during installation."
    I am struggling to solve it for 3 days now, and of corse I have seen and tryied all things proposed in posts like this: http://forums.adobe.com/thread/373577 , but still nothing helps me.
    Thats list of all things that I have tryied to do:
    - CleanUp fix
    - Uninstalling all Adobe before fix
    - Turning Internet off fix
    - Turning anti-vir things off fix
    - Registery fix
    - Starting from CLEAN new system fix
    - Changing language from US to International fix
    Still nothing. Probably thats the point of problem:
    Current Situation:
    Got ACER ASPIRE x3200 desktop width Windows Vista (preinstalled), did clean installation of Windows XP and dumped Vista
    There is no official drivers for XP, but got cracked chipset driver and official nVidia 8200 driver for XP from Internet
    Got all Service Packs
    100% legal
    If nothing is working, maybe thats becaouse of my PC?! Installed it on my laptop with Vista 32b - WORKS (it means that installation CD is not corruptet or something). But then I have tryied to install it on another laptop with XP PRO - fail as with my PC. It seems that Windows XP Pro is not good for CS3 or CS4, BUT it did months before in my old unbranded PC.
    Help! I really want to install that stuff.
    Best Regards,
    Westmidlander

    I was only speaking very generally...  This is all common sense...
    Adobe and other software makers are moving on from XP in their development.  Thus XP becomes more and more troublesome to use as the likelihood of problems increases.
    In the case of installation, a lot of very specific things are required of an installer so that it can work on Windows 7.  The User Account Control (UAC) system and other security measures such as file permissions have to be completely and properly satisfied to install software on the newer systems.  Indeed, the application itself even has to work differently to be compliant - reference the recent 12.0.2 issues with loading scanner drivers for example, or the fact that Photoshop needs to put some things under C:\Users\... now that always used to be put under C:\Program Files\Adobe\...
    It's not hard to imagine that Adobe isn't testing software as thoroughly on XP as they once did either.  Perhaps they missed one of the quirks of XP in pursuit of getting it to install properly on Windows 7.
    You're putting a new cutting edge software application on an operating system designed nearly 10 years ago (an epoch in high tech).  That you don't see even more problems is a testament to Adobe's committment to support XP.
    -Noel

  • HP Deskjet and Officejet Full Feature Software and Drivers - Fatal error during installation

    The "HP Print and Scan Doctor" reports software install problem on the scanner text.
    In 2008 I bought an HP Pavilion Elite with Vista with a HP OfficeJet 5610 All-In-One connected through USB. About a year ago I upgraded to Windows 7 and print and scan worked OK. Last week I received an e-mail from HP for HP Print and Scan Doctor (ver 4.3) and installed it. I have had a problem trying to install the software updates that it said that I need. I have uninstall and reinstalled many times.
    The HP Print and Scan Doctor said that the printing works but the scanner part fails at Registery, HP Scan Flow Manager, and Front Panel Test.
    Any help would be appreacited.
    The HP Print and Scan Doctor reports:
    A later version of software is available for this product.
    I used the install file: AIO_CDB_NonNet_Full_Win_WW_130_141.EXE.
    It usually gets:
    Sample Error log file:
    This question was solved.
    View Solution.

    Hello NotHome,
    Welcome to the HP Forums!
    I understand you're receiving a "Fatal Error" during the installation. I will do my best to assist you! I would start off by following this HP document on Fatal Error 'Error 1603. A fatal error occurred during installation' (MSI Error 1603) Displays Durin...
    Please post your results, as I will be looking forward to hearing from you.
    Have a great night.
    I worked on behalf of HP.

  • [SOLVED] broadcom-wl works during install, but not after.

    I have this macbook air which I'm beating into submission, and it has a broadcom wifi chip. I followed the instructions here for the installation and it worked perfectly. After booting into my newly installed system I do the same, but when I do 'modprobe wl' it fails with:
    # modprobe --verbose wl
    insmod /lib/modules/3.14.5-1-ARCH/extramodules/wl.ko.gz
    modprobe: ERROR: could not insert 'wl': Invalid argument
    I checked with 'lsmod' and none of the blacklisted modules are loaded. I have no idea how to proceed but it should work since it worked during installation. Any pointers would be greatly appreciated!
    EDIT: As  user Namarrgon on irc pointed out, I needed to rebuild the broadcom-wl package. The reason it worked in the live usb and not in the installed system is probably because the installed system had a later kernel than the one on the live usb.
    Last edited by l4than-d3vers (2014-06-05 11:31:35)

    At least for rt2870sta, it's a retarded bug in Linux that was introduced in 2.6.31 and is still not fixed. It works in the live environment because it has an older kernel.
    Kernel 2.6.31 module conflicts
    The 2.6.31 kernel caused the rt2870 driver to conflict with other wireless modules. The fix in this thread says that you need to blacklist the rt2800usb rt2x00usb and rt2x00lib modules by modifying the MODULES array in /etc/rc.conf
    MODULES=( ... !rt2800usb !rt2x00usb !rt2x00lib ... )

  • There was a problem during installation of blackberry messenger. Please try again

    There was a problem during installation of blackberry messenger ( any application). Please try again, this is the message i get anytime i try to download or upgrade any application on my blackberry bold 9870. pls i need your help
     Thanks
    bellokeshi

    bellokeshi wrote:
    Blackberry appworld version: 4.0.0.63
    OK, that is almost the latest version... .65 is later.
    You can upgrade your AppWorld from using your BlackBerry browser to go to www.blackberry.com/appworld
    After you upgrade, Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot.
    IF then you don't see or can't find the AppWorld icon, please post back here.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • "An error occurred during installation" OS X Lion

    I downloaded Lion from the Mac App Store - download went fine. After the installer rebooted and the actual installation began, I keep getting a message stating "An error occurred during installation" at the "About 28 minutes" time. No clue what to do here, so any help would be GREATLY appreciated. I have a new model MacBook running Snow Leopard.

    GPCY wrote:
    I only found disk 1: Mac OS X installed ESD, and
    Disk 2: Mac OS X base system.
    Which one I should click?
    So you did hold Command option r and booted, not just Command r?
    You saw a globe turning as Internet Recovery loaded from Apple's servers?
    You need to connected to the Internet to load this from Apple, either by Ethernet cable or using the Wifi connection.
    Quit and launch Terminal from the menu and type in this command and press enter, then type the results here
    diskutil list
    It should look like something like this
    HummerMacs-MacBook-Pro:~ hummermacjr$ diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *750.2 GB   disk0
       1:                        EFI                         209.7 MB   disk0s1
       2:                  Apple_HFS Macintosh HD            374.9 GB   disk0s2
       3:                  Apple_HFS Macintosh HD 2          374.8 GB   disk0s3

  • Message 'computer unable to connect to printer' appears during installation of laserjet p1102w.

    During installation of wireless software for Laserjet P1102W on computer with XP Professional (pk2), the message ' printer was able to connect to wireless network.  However, this computer is unable to connect to the printer.'   I verified the computer and printer both connected to same named network with same WEP , open, key, etc. credentials.  I have a linksys connected to the computer and cable modem. When I connect using the USB connect wire to the computer directly, I can print.   Both software, wired and wireless, were loaded.  My HP Inkjet printer is wired to the linksys and works for multiple wireless network computers. Do I need to have a different printer? I thought i could still have a truly wireless printer!?!  I am a novice at this.  Thanks for any assistance you can give.
    This question was solved.
    View Solution.

    I called HP support.  The tech was very knowledgeable and helpful.  The HP Smart Install program (in printer and on CD) that came in the box  was an old version.  I needed to reset the printer back to factory default and  download the new firmware from HP.com internet site. 
    The older software had an incorrect router address (network). You can see the router (IP) address when you do the Self Test (holding down the 'on' button) under network Information.  The IPv4 address should be the same as your router.  Now my printer and computer are looking at the same network. 
    Works great!  Love this LaserJet.  Faster than my last HP LaserJet 4L.

  • Im trying to configure my printer 'Canon PIXMA MX3170' - however, I get Error during installation

    Im trying to configure my printer 'Canon PIXMA MX3170'  -
    I followed the following steps mentioned on some site:
    "Follow below steps to setup Canon MG3100 printer to wifi using WPS function (by a button push on the wireless router/access point)
    Press and hold maintenance button on printer. (button with screw driver and cutting pair symbol)
    Now the LED should flash as '_'
    Press and hold 'Fit to Page" button, now LED should flash as single dash moving vertically.
    Once the LED flash is confirmed, press and hold WPS button on router/access point for about five seconds.
    Printer should stop the flashing and LED should be back to normal displaying '1'.
    This completes the setup and you are ready to use your printer wireless ".
    However,
    1.LED on my printer flashes 1-2-3-E instead of a steady 1.
    2. Error message during installation : "An error occurred while communicating with the printer"
    3. Im using a netgear router - and I don't know what is an access point and how to configure it for the printer.
    4. I think I pressed the right button - (WPS button) - button with symbol  having a tower emitting waves.
    My installation as a result - failed. Need your help.
    Thanks,
    Aditya

    Hi Aditya!
    Welcome to The Canon Forums, and thank you for your inquiry! We appreciate your participation, however we need to let you know that your product seems to be a model that is not supported by our team here at Canon USA. The Canon Forum is hosted and moderated within the United States by Canon USA. We are only able to provide support for Canon products manufactured for and used within the US market. If you live outside the United States, please click here and select your country or region for your support needs. Feel free to discuss Canon products sold outside of the United States, but please be aware that you will not receive support directly from Canon USA.

Maybe you are looking for

  • Getting rid of podcasts not downloaded

    I am using most current 7.1.5 iTunes. My question is: How do I get rid of the listing of undownloaded podcasts. By this I mean when you subscribe to a podcast all episodes show up. Thats great, but what if I don't want to download some of them. It ta

  • Uninstall Acrobat 8.0 Professional

    Tried uninstalling acrobat 8 on computer using control panel.  Uninstall froze, and needless to say has left all contents on computer.  Tried uninstall tool rom adobe and contents were cleaned out, but it still remains in my program list and will not

  • Help with saving custom stamps to SOAP repository.

    In my attempt to create a custom SOAP based comment repository i've found that i can save and retrieve all lightweight annotations perfectly except for any custom stamps that I've created (default stamps work great).  When i retreive the annotations

  • Series of tutorials available on the Animate team blog

    Hi, folks- Just wanted to point out that I've posted a series of tutorials over the past couple of months on the Edge Animate team blog, which is hosted here: http://blogs.adobe.com/edge/ The latest got posted about fifteen minutes ago, so I'd sugges

  • Unexpected OK code 404

    Hello Gurus, We are running on EP7 with JAVA Stack on Linux environment. We installed Web Dispatcher on the same machine with portal. When we run sapwebdisp pf=/usr/sap/WDT/SYS/exe/sapwebdisp.pfl - checkconfig , we get "unexpected OK Code 404 ,Check