Scan for and connect to networks from an openbox pipe menu (netcfg)

So the other day when i was using wifi-select (awesome tool) to connect to a friends hot-spot, i realized "hey! this would be great as an openbox pipe menu."  i'm fairly decent in bash and i knew both netcfg and wifi-select were in bash so why not rewrite it that way?
Wifi-Pipe
A simplified version of wifi-select which will scan for networks and populate an openbox right-click menu item with available networks.  displays security type and signal strength.  click on a network to connect via netcfg the same way wifi-select does it.
zenity is used to ask for a password and notify of a bad connection.  one can optionally remove the netcfg profile if the connection fails.
What's needed
-- you have to be using netcfg to manage your wireless
-- you have to install zenity
-- you have to save the script as ~/.config/openbox/wifi-pipe and make it executable:
chmod +x ~/.config/openbox/wifi-pipe
-- you have to add a sudoers entry to allow passwordless sudo on this script and netcfg (!)
USERNAME ALL=(ALL) NOPASSWD: /usr/bin/netcfg
USERNAME ALL=(ALL) NOPASSWD: /home/USERNAME/.config/openbox/wifi-pipe
-- you have to adjust  ~/.config/openbox/menu.xml like so:
<menu id="root-menu" label="Openbox 3">
<menu id="pipe-wifi" label="Wifi" execute="sudo /home/USERNAME/.config/openbox/wifi-pipe INTERFACE" />
<menu id="term-menu"/>
<item label="Run...">
<action name="Execute">
<command>gmrun</command>
</action>
</item>
where USERNAME is you and INTERFACE is probably wlan0 or similar
openbox --reconfigure and you should be good to go.
The script
#!/bin/bash
# pbrisbin 2009
# simplified version of wifi-select designed to output as an openbox pipe menu
# required:
# netcfg
# zenity
# NOPASSWD entries for this and netcfg through visudo
# the following in menu.xml:
# <menu id="pipe-wifi" label="Wifi" execute="sudo /path/to/wifi.pipe interface"/>
# the idea is to run this script once to scan/print, then again immediately to connect.
# therefore, if you scan but don't connect, a temp file is left in /tmp. the next scan
# will overwrite it, and the next connect will remove it.
# source this just to get PROFILE_DIR
. /usr/lib/network/network
[ -z "$PROFILE_DIR" ] && PROFILE_DIR='/etc/network.d/'
# awk code for parsing iwlist output
# putting it here removes the wifi-select dependency
# and allows for my own tweaking
# prints a list "essid=security=quality_as_percentage"
PARSER='
BEGIN { FS=":"; OFS="="; }
/\<Cell/ { if (essid) print essid, security, quality[2]/quality[3]*100; security="none" }
/\<ESSID:/ { essid=substr($2, 2, length($2) - 2) } # discard quotes
/\<Quality=/ { split($1, quality, "[=/]") }
/\<Encryption key:on/ { security="wep" }
/\<IE:.*WPA.*/ { security="wpa" }
END { if (essid) print essid, security, quality[2]/quality[3]*100 }
errorout() {
echo "<openbox_pipe_menu>"
echo "<item label=\"$1\" />"
echo "</openbox_pipe_menu>"
exit 1
create_profile() {
ESSID="$1"; INTERFACE="$2"; SECURITY="$3"; KEY="$4"
PROFILE_FILE="$PROFILE_DIR$ESSID"
cat > "$PROFILE_FILE" << END_OF_PROFILE
CONNECTION="wireless"
ESSID="$ESSID"
INTERFACE="$INTERFACE"
DESCRIPTION="Automatically generated profile"
SCAN="yes"
IP="dhcp"
TIMEOUT="10"
SECURITY="$SECURITY"
END_OF_PROFILE
# i think wifi-select should adopt these perms too...
if [ -n "$KEY" ]; then
echo "KEY=\"$KEY\"" >> "$PROFILE_FILE"
chmod 600 "$PROFILE_FILE"
else
chmod 644 "$PROFILE_FILE"
fi
print_menu() {
# scan for networks
iwlist $INTERFACE scan 2>/dev/null | awk "$PARSER" | sort -t= -nrk3 > /tmp/networks.tmp
# exit if none found
if [ ! -s /tmp/networks.tmp ]; then
rm /tmp/networks.tmp
errorout "no networks found."
fi
# otherwise print the menu
local IFS='='
echo "<openbox_pipe_menu>"
while read ESSID SECURITY QUALITY; do
echo "<item label=\"$ESSID ($SECURITY) ${QUALITY/.*/}%\">" # trim decimals
echo " <action name=\"Execute\">"
echo " <command>sudo $0 $INTERFACE connect \"$ESSID\"</command>"
echo " </action>"
echo "</item>"
done < /tmp/networks.tmp
echo "</openbox_pipe_menu>"
connect() {
# check for an existing profile
PROFILE_FILE="$(grep -REl "ESSID=[\"']?$ESSID[\"']?" "$PROFILE_DIR" | grep -v '~$' | head -n1)"
# if found use it, else create a new profile
if [ -n "$PROFILE_FILE" ]; then
PROFILE=$(basename "$PROFILE_FILE")
else
PROFILE="$ESSID"
SECURITY="$(awk -F '=' "/$ESSID/"'{print $2}' /tmp/networks.tmp | head -n1)"
# ask for the security key if needed
if [ "$SECURITY" != "none" ]; then
KEY="$(zenity --entry --title="Authentication" --text="Please enter $SECURITY key for $ESSID" --hide-text)"
fi
# create the new profile
create_profile "$ESSID" "$INTERFACE" "$SECURITY" "$KEY"
fi
# connect
netcfg2 "$PROFILE" >/tmp/output.tmp
# if failed, ask about removal of created profile
if [ $? -ne 0 ]; then
zenity --question \
--title="Connection failed" \
--text="$(grep -Eo "[\-\>]\ .*$" /tmp/output.tmp) \n Remove $PROFILE_FILE?" \
--ok-label="Remove profile"
[ $? -eq 0 ] && rm $PROFILE_FILE
fi
rm /tmp/output.tmp
rm /tmp/networks.tmp
[ $(id -u) -ne 0 ] && errorout "root access required."
[ -z "$1" ] && errorout "usage: $0 [interface]"
INTERFACE="$1"; shift
# i added a sleep if we need to explicitly bring it up
# b/c youll get "no networks found" when you scan right away
# this only happens if we aren't up already
if ! ifconfig | grep -q $INTERFACE; then
ifconfig $INTERFACE up &>/dev/null || errorout "$INTERFACE not up"
while ! ifconfig | grep -q $INTERFACE; do sleep 1; done
fi
if [ "$1" = "connect" ]; then
ESSID="$2"
connect
else
print_menu
fi
Screenshots
removed -- Hi-res shots available on my site
NOTE - i have not tested this extensively but it was working for me in most cases.  any updates/fixes will be edited right into this original post.  enjoy!
UPDATE - 10/24/2009: i moved the awk statement from wifi-select directly into the script.  this did two things: wifi-select is no longer needed on the system, and i could tweak the awk statement to be more accurate.  it now prints a true percentange.  iwlist prints something like Quality=17/70 and the original awk statement would just output 17 as the quality.  i changed to print (17/70)*100 then bash trims the decimals so you get a true percentage.
Last edited by brisbin33 (2010-05-09 01:28:20)

froli wrote:
I think the script's not working ... When I type
sh wifi-pipe
in a term it returns nothing
well, just to be sure you're doing it right...
he above is only an adjustment to the OB script's print_menu() function, it's not an entire script to itself.  so, if the original OB script shows output for you with
sh ./wifi-pipe
then using the above pint_menu() function (with all the other supporting code) should also show output, (only really only changes the echo's so they print the info in the pekwm format).
oh, and if neither version shows output when you rut it in a term, then you've got other issues... ;P
here's an entire [untested] pekwm script:
#!/bin/bash
# pbrisbin 2009
# simplified version of wifi-select designed to output as an pekwm pipe menu
# required:
# netcfg
# zenity
# NOPASSWD entries for this and netcfg through visudo
# the following in pekwm config file:
# SubMenu = "WiFi" {
# Entry = { Actions = "Dynamic /path/to/wifi-pipe" }
# the idea is to run this script once to scan/print, then again immediately to connect.
# therefore, if you scan but don't connect, a temp file is left in /tmp. the next scan
# will overwrite it, and the next connect will remove it.
# source this to get PROFILE_DIR and SUBR_DIR
. /usr/lib/network/network
errorout() {
echo "Dynamic {"
echo " Entry = \"$1\""
echo "}"
exit 1
create_profile() {
ESSID="$1"; INTERFACE="$2"; SECURITY="$3"; KEY="$4"
PROFILE_FILE="$PROFILE_DIR$ESSID"
cat > "$PROFILE_FILE" << END_OF_PROFILE
CONNECTION="wireless"
ESSID="$ESSID"
INTERFACE="$INTERFACE"
DESCRIPTION="Automatically generated profile"
SCAN="yes"
IP="dhcp"
TIMEOUT="10"
SECURITY="$SECURITY"
END_OF_PROFILE
# i think wifi-select should adopt these perms too...
if [ -n "$KEY" ]; then
echo "KEY=\"$KEY\"" >> "$PROFILE_FILE"
chmod 600 "$PROFILE_FILE"
else
chmod 644 "$PROFILE_FILE"
fi
print_menu() {
# scan for networks
iwlist $INTERFACE scan 2>/dev/null | awk -f $SUBR_DIR/parse-iwlist.awk | sort -t= -nrk3 > /tmp/networks.tmp
# exit if none found
if [ ! -s /tmp/networks.tmp ]; then
rm /tmp/networks.tmp
errorout "no networks found."
fi
# otherwise print the menu
echo "Dynamic {"
IFS='='
cat /tmp/networks.tmp | while read ESSID SECURITY QUALITY; do
echo "Entry = \"$ESSID ($SECURITY) $QUALITY%\" {"
echo " Actions = \"Exec sudo $0 $INTERFACE connect \\\"$ESSID\\\"\"</command>"
echo "}"
done
unset IFS
echo "}"
connect() {
# check for an existing profile
PROFILE_FILE="$(grep -REl "ESSID=[\"']?$ESSID[\"']?" "$PROFILE_DIR" | grep -v '~$' | head -n1)"
# if found use it, else create a new profile
if [ -n "$PROFILE_FILE" ]; then
PROFILE=$(basename "$PROFILE_FILE")
else
PROFILE="$ESSID"
SECURITY="$(awk -F '=' "/$ESSID/"'{print $2}' /tmp/networks.tmp | head -n1)"
# ask for the security key if needed
if [ "$SECURITY" != "none" ]; then
KEY="$(zenity --entry --title="Authentication" --text="Please enter $SECURITY key for $ESSID" --hide-text)"
fi
# create the new profile
create_profile "$ESSID" "$INTERFACE" "$SECURITY" "$KEY"
fi
# connect
netcfg2 "$PROFILE" >/tmp/output.tmp
# if failed, ask about removal of created profile
if [ $? -ne 0 ]; then
zenity --question \
--title="Connection failed" \
--text="$(grep -Eo "[\-\>]\ .*$" /tmp/output.tmp) \n Remove $PROFILE_FILE?" \
--ok-label="Remove profile"
[ $? -eq 0 ] && rm $PROFILE_FILE
fi
rm /tmp/output.tmp
rm /tmp/networks.tmp
[ $(id -u) -ne 0 ] && errorout "root access required."
[ -z "$1" ] && errorout "usage: $0 [interface]"
INTERFACE="$1"; shift
# i added a sleep if we need to explicitly bring it up
# b/c youll get "no networks found" when you scan right away
# this only happens if we aren't up already
if ! ifconfig | grep -q $INTERFACE; then
ifconfig $INTERFACE up &>/dev/null || errorout "$INTERFACE not up"
sleep 3
fi
if [ "$1" = "connect" ]; then
ESSID="$2"
connect
else
print_menu
fi
exit 0

Similar Messages

  • I have connected my time capsule to motorola SG6580 modem via ethernet.  I have a wireless network on the motorola and a wireless network from the time capsule.  I get duplicate IPs error messages sometimes. How do I fix?

    I have connected my time capsule to motorola SG6580 modem via ethernet.  I have a wireless network on the motorola and a wireless network from the time capsule.  I get duplicate IPs error messages (no connection) sometimes when trying to connect devices to the wireless network. How do I fix? Sometimes devices cannot connect to the network because of conflicting IPs.  I look on the Motorola and every device has a unique IP assigned but occasionally a device has taken the IP of another device.  I have been writing down all the devices and the IPs they have been using.  It happens more with PCs than Macs, ipads or iPhones.

    If the Time Capsule is set up correctly in bridge mode, then it is the responsibility of the Motorola modem/router to provide the correct IP address assignments for all devices on the network.
    Check to insure that the Time Capsule is correctly set up to operate in bridge mode as follows:
    On your Mac, open AirPort Utility
    Finder > Applications > Utilities > AirPort Utility
    Click on the Time Capsule icon, then click Edit in the smaller window that appears
    Click the Network tab at the top of the next window
    Insure that the setting for Router Mode is configured to read "Off (Bridge Mode)"
    Once you have confirmed that the Time Capsule is configured correctly, everything else is the responsibility of the Motorola modem/router as far as network routing and IP address assignments for devices.
    If you continue to have IP address issues, then you should contact the Internet Service Provider (ISP) that provided the Motorola device to you and ask them to fix the issue.

  • Why the scan lister and listener configure/start from GRID home why not from Oracle Home.

    Hi
       why the scan lister and listener configure/start from GRID home why not from Oracle Home.

    > why the scan lister and listener configure/start from GRID home why not from Oracle Home.
    Because Oracle says that's the way it has to be.
    As @MohaAGOU said, starting in 11gR2, the Listeners (both SCAN and traditional) are now cluster resources. Let's start with the SCAN Listener. There are only 3 of them, even if you have 4 or more nodes in the cluster. If a node goes down and a SCAN Listener were running on it, Grid Infrastructure will relocate the SCAN Listener to a surviving node. Much easier to do this if the entire resource were in the GI home. Note that an instance cannot be relocated and it is running on a different home.
    As for the traditional listener. The Listener itself won't be relocated during a node termination, but its VIP will.
    Cheers,
    Brian

  • ITunes Match on Windows 7 64 iTunes 10.5.2 64 -  - please sign in again itunes match has encountered an error. Please choose sign out and then sign in from the itunes store menu and try again.

    Windows 7 64 itunes 10.5.2 64 - I receive the following error message when opening iTunes - please sign in again itunes match has encountered an error. Please choose sign out and then sign in from the itunes store menu and try again.
    When I try to sign out iTunes freezes and I need to shut down windows entirely to get it to open again.
    Has anybody been able to resolve this issue?

    After many annoying sign-in-out-iTunes-match-activation problems I found an easy solution for me. When the iTunes Cloud symbol is broken (and I should sign in again) I just deactivate my notebooks (Windows 7) Wifi (with Fn+F5 for my Thinkpad).Then I call up the Itunes store and iTunes tells my that there is no connection to the internet (most probaply this step is not necessesary). After manual re-activation of my Wifi iTunes seems to re-establish the connection and the Cloud symbol signalizes that iTunes match does work, again.
    Hope, this helps.

  • Why are the movie and television icons missing from my Apple TV menu?

    Why are the movie and television icons missing from my Apple TV menu?

    likely because it does not have a working connection to the internet
    check the settings and maybe reenter the wifi pasword

  • ITunes Match has encountered an error. Please choose Sign Out and then Sign In from the iTunes Store menu and try again.

    this happens every week!!!
    iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the iTunes Store menu and try again.

    I have Just upgraded my mac from Itunes 11.0 to itunes 11.02, this issue occured within hours of the updated.
    It seems to occur about every couple of hours for me, I can still access the apple store, but music match just dies with the message: "iTunes Match has encountered an error. Please choose Sign Out and then Sign In from the Store menu and try again."
    As it takes a good ten minuites for itunes
    If this is also occuring in Itunes 11, the previous Discussions are probably not relevant.
    Itunes 11 has had significant changes applied, so it would be reasoble to assume this is not the same fault and Apple have some how broken Itunes again.
    I might try to downgrade to itunes 11.0, as it looks like music match faults are not high on apples priorities, it looks like took them almost a year to fix this fault last time it occured.

  • My ipod 4th generation isnt scanning for wifi connections any help?

    yes apple i need some help with my ipod it hasnt been scanning for my wifi router for days and im worried any help?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    iOS: How to back up your data and set up as a new device
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar
    Is this the problem:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar

  • Licensing for Unity Connection after Upgrade from 8.5 to 9.1.2

    I upgraded my Unity connection from 8.5.1 to 9.1.2. ( my CUCM is still on 8.5.1) . I have 200 CUWL-STD ( 2200 DLUs), and 50 CUWL-PRO (850 DLUs) . Now I am working with Cisco to get a license file for Unity Connection and apply that to my ELM. I attached my licensing page for when I was in 8.5.1 . Just want to make sure if I will be getting enough license with that license file, or possibly I need to buy more. Someone told me that if I want to have users with mailbox I need to order more licenses since every user take one CUWL license.
    Honestly i do not know how CUWL licensing work regardig to Unity or even CUCM.
    Thanks,

    Hi,
    The following link provides details of licenses usage by diff endpoints on version 9.x
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/upgrade/uct/9_1_1/CUCM_BK_U0AE00F5_00_uct-admin-guide/CUCM_BK_U0AE00F5_00_uct-admin-guide_chapter_0100.html
    HTH
    Manish

  • My Airport does not connect to network from Windows laptop, but guest network does connect to internet

    I set up my new Airport Extreme and can connect to the network with any IOS device (iPod Touch, iPhone or iPad).  When attempting to connect to network with my work laptop (Windows 7), I get an error that it cannot connect.  I have no problem connecting to the Guest Network on this laptop.  Unfortunately, no network connection. 
    I have Cox Communication Internet through there Motorola SURFBoard Cable Modem Model No. SB5101U.  

    Hey there shriya bhardwaj!
    I have an article for you that will help you troubleshoot this Wi-Fi issue on your computer:
    Wi-Fi: How to troubleshoot Wi-Fi connectivity
    http://support.apple.com/kb/HT4628
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Whenever I connect to network from datacard. My system show as message "Restart your system.Hold the power button until system turn off"

    I have purchased new MAC Book Pro recently. When connect to net using my datacard, net start's working after some time system fire a message saying that "Restart Your System. Hold power button until system turn off". I have configure network setting too even i am facing the problem.
    Please suggest me were I am going wrong.
    Bug Report Shown as :
    Interval Since Last Panic Report:  12616 sec
    Panics Since Last Report:          7
    Anonymous UUID:                    947C5556-58AF-4B93-886D-6EDB24957F96
    Wed May 25 19:55:50 2011
    panic(cpu 3 caller 0xffffff80002d11f4): Kernel trap at 0xffffff80002c5330, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000008, CR3: 0x0000000000100000, CR4: 0x0000000000040660
    RAX: 0xffffff800c5eac40, RBX: 0x0000000000000008, RCX: 0x0000000001000000, RDX: 0x0000000000000008
    RSP: 0xffffff805f753cf0, RBP: 0xffffff805f753cf0, RSI: 0x0000000000000002, RDI: 0x0000000000000008
    R8:  0x00000000418df000, R9:  0x0000000000000000, R10: 0x0000000000000000, R11: 0xffffff80004f4e5e
    R12: 0x0000000000000008, R13: 0x0000000000000246, R14: 0xffffff805f753d10, R15: 0x0000000000000010
    RFL: 0x0000000000010286, RIP: 0xffffff80002c5330, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 3), Frame : Return Address
    0xffffff805f753990 : 0xffffff8000204d15
    0xffffff805f753a90 : 0xffffff80002d11f4
    0xffffff805f753be0 : 0xffffff80002e3f1a
    0xffffff805f753bf0 : 0xffffff80002c5330
    0xffffff805f753cf0 : 0xffffff80002503c8
    0xffffff805f753d10 : 0xffffff7f80852d23
    0xffffff805f753f20 : 0xffffff7f8085325c
    0xffffff805f753fa0 : 0xffffff80002c84f7
          Kernel Extensions in backtrace (with dependencies):
             com.apple.iokit.IOSerialFamily(10.0.3)@0xffffff7f80850000->0xffffff7f80859fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10J3210
    Kernel version:
    Darwin Kernel Version 10.7.1: Mon Jan 31 14:55:53 PST 2011; root:xnu-1504.10.48~4/RELEASE_X86_64
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 965216859070
    unloaded kexts:
    com.apple.filesystems.cd9660          1.4.1 (addr 0xffffff7f80f3c000, size 0x32768) - last unloaded 555132792378
    loaded kexts:
    com.ZTE.driver.ModemDriverMacEx          1.0.6d1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AGPM          100.12.31
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleHDA          2.0.2f9
    com.apple.driver.AppleMikeyDriver          2.0.2f9
    com.apple.driver.AudioAUUC          1.53
    com.apple.driver.AppleUpstreamUserClient          3.5.3
    com.apple.driver.AppleMCCSControl          1.0.17
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.6.0d12
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.43
    com.apple.kext.AppleSMCLMU          1.5.2d6
    com.apple.driver.AppleIntelHDGraphics          6.3.0
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.0
    com.apple.driver.AppleUSBTCButtons          201.2
    com.apple.driver.AppleUSBTCKeyboard          201.2
    com.apple.driver.AppleIRController          303.8
    com.apple.BootCache          31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.SCSITaskUserClient          2.6.6
    com.apple.iokit.IOAHCIBlockStorage          1.6.3
    com.apple.driver.AppleSDXC          1.0.2
    com.apple.driver.AppleUSBHub          4.2.0
    com.apple.driver.AppleSmartBatteryManager          160.0.0
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AirPort.Brcm4331          429.10.1
    com.apple.iokit.AppleBCM5701Ethernet          3.0.2b8
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.6
    com.apple.driver.AppleUSBEHCI          4.2.0
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.4.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.11
    com.apple.iokit.CHUDUtils          364
    com.apple.iokit.CHUDProf          366
    com.apple.driver.AppleIntelCPUPowerManagement          142.4.0
    com.apple.nke.ppp          1.5 - last loaded 520102234363
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.6
    com.apple.iokit.IOUSBMassStorageClass          2.6.6
    com.apple.driver.AppleThunderboltDPOutAdapter          1.1.1
    com.apple.driver.AppleThunderboltDPInAdapter          1.1.1
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.1.1
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.0.5
    com.apple.driver.DspFuncLib          2.0.2f9
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleThunderboltNHI          1.1.9
    com.apple.iokit.IOThunderboltFamily          1.2.2
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.3f1
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.0.2f9
    com.apple.iokit.IOHDAFamily          2.0.2f9
    com.apple.iokit.AppleProfileFamily          41.4
    com.apple.driver.IOPlatformPluginFamily          4.6.0d12
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.0
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.iokit.IONDRVSupport          2.2
    com.apple.iokit.IOGraphicsFamily          2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.3f1
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.3f1
    com.apple.iokit.IOBluetoothFamily          2.4.3f1
    com.apple.driver.AppleUSBMultitouch          207.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.2.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.6
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.6
    com.apple.iokit.IOUSBUserClient          4.2.0
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOAHCIFamily          2.0.5
    com.apple.iokit.IOUSBFamily          4.2.0
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.iokit.CHUDKernLib          365
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.1
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro8,1, BootROM MBP81.0047.B04, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f96
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.10.1)
    Bluetooth: Version 2.4.3f1, 2 service, 19 devices, 1 incoming serial ports
    Serial ATA Device: Hitachi HTS545032B9A302, 298.09 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 4
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    Thanks,

    I had already written a book and I did not want to bombard people with more information, but in my previous research I did come across the major issues with the NVIDIA card.  I also was well aware that Apple offered a replacement program that ended in December of 2012.  I was going to add that in my original post, but I discounted that theory because I put my faith in the so called "Apple Genius" when I made my second trip to the Apple Store.  I brought the NVIDIA card issue to his attention and asked him if he thought that may be the problem, but he said no.  He said if it was the NVIDIA card that the screen would be completely black and there would be no startup chime.  When I experienced the screen issues I thought it was a problem with the NVIDIA card or the logic board.  I asked myself, how can a flawed hard drive cause the screen to act funny.
    nbar and Rick Warren, I thank you both for your help and insight; people like you are the real "Apple Geniuses."  I was hoping there was a way I could wipe the hard drive before I dumped the computer or attempted to sell it.  I guess I will look into purchasing a new machine when I have the funds.  Again...thank you both!

  • By. i need help for photoshop connective...from 2 days ave a problem of connective.thank you

    by i need help for my photoshop connective..if you ceck problem please.

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • AT COMMAND FOR IDENTIFY CONNECTED GPRS NETWORK

    HI i am connecting GPRS terminal with the network .i want AT command to identify which Network(3g orGprs) the terminal connected......

    Hi Joe,
    In the future please do not use all capitals in your title, it comes off as yelling and is not conducive towards helping get a response on these forums. Also, be sure to give as much detail as possible regarding your application/issue. How are you connecting your GPRS terminal to your PC? Are these VISA serial commands you are sending to the device? What is the brand/model of the device? Let me know and I'll try my best to assist you with this issue.
    Regards
    Doug W
    Applications Engineer
    National Instruments

  • Why can't I get Outlook for Mac connected to Network?

    I have a friend who recently bought a MacBook Pro after having a pc forever. She had Apple migrate all her data over to the MacBook Pro. We then installed Office for Mac 2011. Her preference was/is to use Outlook for her emal. This only became known to me after I got her email set up and working in Mail. I then proceeded to set up Outlook with the exact same settings that I successfully used for Mail, i.e., incoming and outdgoing servers, ports, SSL, authentication (name and password), etc. There was a brief time when it was up and running, but inexplicably, this is no longer the case. The error message I get continues to point to authentication and her ISP's denial of services. Has anyone else had this problem? I've heard Microsoft's Outlook can be finicky.Any help would be appreciated.

    I guess I was hoping that I might find other Mac users who have Office for Mac 2011, encountered the same issue, and had something to offer by way of a solution.
    But I will also take your suggestion and post on the forum link you provided.
    Thanks, btw, for the link.

  • How can I scan for and delete duplicates in my library?

    Please tell me how to remove duplicate photos from my entire library!!

    For dealing with duplicates in iPhoto check out Duplicate Annihilator

  • I can no longer "create my own network" from the wi-fi menu (iMac 27 late 2009 OS 1.7.5)

    In 10.6 I have been using the iMac to create a wi-fi network for the rest of the devices in the house. i.e. The iMac is connected physically to the modem  and I don't have to spend $100 on an airport !
    I just upgraded to 10.7.5 and the "create own network" option  has disappeared from the wi-fi dropdown menu.
    Does 10.7 no longer support this approach ?  My iPhone can "see" my iMac but since I cannot create my own network I cannot make a password, and therefore cannot give a satisfactory answer to the iPhone's prompt for a password.
    Any help would be appreciated, thanks
    S

    HI BDAqua,
    This is good to know - I actually found the right way to do this after much surfing around (and then received your message) - in system preferences > Sharing one can click "wi fi options" bottom right before you toggle any share button and set a password.  Why this is now here but not in the dropdown menu I don't know,
    Thanks anyway for your help,
    S

Maybe you are looking for

  • HOW TO EXPORT FOR MAX DVD LENGTH?

    Here's my issue: I'm used to exporting my timeline from FCP using standard DV/NTSC QT conversion to then burn DVDs using DVD Studio Pro. But I can only seem to fit about an hour and 15 minutes max onto the DVD. I recently taped several long meetings

  • Workflow multiple versions in production

    Hi Experts, when i transport my work flow from development to production multiple versions are getting created. e.g in development i have version 0001 and production also have version 001 i did some changes in development in version 0001 now i transp

  • Sapftpa - no access authorization for computer

    Dear Forum, When running a function module FTP_CONNECT to do ftp to a server, always gets an error message: "<user> has no access authorization for computer <IP_address>". The ftp is on Win 2003 server Enterprise Edition. Any helps will really apprec

  • Kernel Panic (log included)

    I'm having multiple Kernel Panics, and they are increasing. I have a July 2012 MacBook Pro (15"), retina display. 2.6 GHz Intel Core i7, 16 GB 1600 MHz DDR3. Running OS X 10.7.4 I sometimes run both Firefox and Chrome, but the problem is not consiste

  • K7t turbo2/amd XP 1800! ack! help!

    i recently bought a k7t turbo2 (ms-6330) to go with my amd xp 1800, im running 2x 512 and 1x 256 ram under winblows ME. and ever since day 1, i have random lockups when i try to move or copy files in windows, but if i use dos-prompt i can transfer fi