Expect script and show command capture problem.

Hello everyone.
I want to capture the output of 'show interface status' to text files for our +600 switches.  Unfortunately, we have many old 2924's and other models running code prior to 12.0(21) that cannot support 'show command | redirect tftp....'  My hope was to use this command set and run it in an Expect script to capture this information on a daily basis.  Running the 'show interface status' in an Expect script is pretty easy, but I cannot see how to capture the show command output to a file for transfer to a server.  Has anyone else faced this problem and found a solution?
Thanks,

To write the "show" commands output to a text file in Expect/Tcl:
set filename "/path/to/output.file"
exp_send "show running\r"
set var $expect_out(buffer);
set fid [open ${filname} w+]
put $fid $var
close ${fid}
Large "show" output can often exceed the default size of $expect_out(buffer) however. This can be tuned accordingly:
http://wiki.tcl.tk/9407

Similar Messages

  • Communication between DTrace script and other commands

    Hello,
    Let's say you have a DTrace script running all time on your system. It monitors something ( some parameters, system calls, etc..).
    If some condition is met (threshold exceeded for example) you would like a script / command to be called.
    One way to do it would be: pipe the DTrace output to a "controller" script which checks it's input for some patterns (commands). The script could run appropriate commands when a pattern is found in input.
    Is there any other more elegant/appropriate way ?
    Thank you,
    Vlad Grama.

    First of all, from Alan's post :
    "You may want to be a bit careful about how you hand out those privileges, as you probably don't want users calling things like panic()."
    Even with PRIV_DTRACE_KERNEL, a user cannot make destructive action calls that would require the '-w' command line option. But, they do have good visibility inside the kernel which may not necessarily be a good thing.
    Secondly, from Vlad:
    "You may go to a site and see some useful D scripts that would require PRIV_DTRACE_KERNEL.
    You want to be sure that however bad the script content may be (willingly or not) you can run it on a production system without having to fear anything. "
    I find it hard to believe that anyone will run completely untrusted content downloaded from a random site on the Internet on a production machine without testing or validating it first. If so, then DTrace is by far the least of your concerns. Granted, there could be times when a script looks like it may help you solve a problem, but D is so straightforward that even a quick glance will tell you if anything bad could happen (especially given that D already provides quite a bit protection for you by preventing accidental badness).
    That being said, perhaps system() could get some sort of special treatment in a D stability report. It seems like a reasonable place for it since if you call system(), DTrace has no way to validate that the targer executable exists, is runnable, and is stable for the current platform. So perhaps, if system() (and eventually some sort of similar interfaces) exist in a D script, then a stability report will flag their use for you - this saves having to grep or similar. Also, then you could execute "untrusted" D with the appropriate '-x' flag to prevent their use all together. Seems appropriate to me (consider it a formal RFE).
    So as D scripts become more popular to the rest of the world, I assume we will see some digital signatures showing up for posted recipes. You always check the signature of Apache when you download it so a quick check when you get a new cookbook seems reasonable.
    Thanks,
    Jarod

  • Scripting WLC show commands (ie show client detail) every x seconds/minutes

    Is there a simple way to script using either a terminal client (putty, teraterm, etc.) or Prime Infrastructure whereby I could set up a set of commands to be run at a certain interval?
    I want to conduct some client testing roaming across a site whilst some how performing a show client detail every 15 seconds and a show run-config every 30 minutes?
    TIA,
    Nick

    Is there a simple way to script using either a terminal client (putty, teraterm, etc.) or Prime Infrastructure whereby I could set up a set of commands to be run at a certain interval?
    Yes you can. 
    The easiest method is to use console.  You can knock up a script to run the command at specific intervals and log the outputs.  If you do this, you must ensure the console timeout is expanded. 
    Another option is to create a PERL script (using KRON) to telnet/SSH into the appliance and run the command and retrieve the results. 

  • Login Script and map command

    Hello,
    This is the first year we are using NSM wide spread. In the past I would just add a map command to the storage location for the half dozen or so classes using NSM. Now I have close to 80 classes using NSM.
    All storage is loaded in the same area, "classroomstorage" each class has it's own subdirectory under this location; Enghish 8, Math 7, and so forth.
    If I set a map command to the root directory "classroomstorage" I get and 8804 error. Because the students do not have rights to the root of the directory structure.
    Is there anyway to set a single map command? Would appling a read/write trustee assignment and a IRF to the "classroomstorage" directory allow mapping yet not allow everyone to see all the other folders?
    Any help is greatly appreciated.
    thanks,
    Allen

    You need to give the teachers rights to the classroom storage via the
    policy template and the -owner- methodology provided by NSM, in
    conjunction with the owner attribute in eDirectory.
    thanks,
    NSM Development
    On 9/8/2010 3:06 PM, allenmorris wrote:
    >
    > Sorry, my bad. I had the incorrect information.
    >
    > It's the teachers who are having an issue. I can map the students to
    > the root "classroomstorage" location and they get everything correct.
    >
    > If I map a teacher to the same location and they "are not part of a
    > virtual classroom" as of yet. They get a 8804 error. Is there anyway
    > to map all my teachers or can I only map those teachers that are
    > currently part of a virtual classroom?
    >
    > Thanks, sorry for the confusion.
    >
    > Allen
    >
    >

  • WAFS Legacy and show commands

    Hi
    Somebody knows if there is any CLI that shows individual CIFS connections and its optimization in WAAS. Legacy mode on  version 4.0?. Something similar that in WAAS 4.1 in AO mode.
    Currently i can only see the tunnel between the WAAS on port 4050 and traffic moving inside the tunnel.
    Thanks
    - Alex

    Alex,
    Try show cifs session list.
    Regards,
    Zach

  • Problem with "SELECT...FOR UPDATE OF..." and "POST command" combination

    Problem with "SELECT...FOR UPDATE OF..." and "POST command" combination
    Problem in committing transactions in Multiple Forms (Oracle Forms) with POST built-in command:
    Consider that the following statements are written in WHEN-WINDOW-CLOSED trigger of a called form.
    Statements in called form (Form name: FORM_CHILD):
    go_block('display_block') ;
    do_key('execute_query') ;
    -- Data from table_b will be populated in this block, based on the value of COLUMN_1 obtained
    -- from TABLE_A.
    -- Example: If the value of COLUMN_1 is 10, then all the matching records from TABLE_B, which
    -- are inserted with value 10 in TABLE_B.COLUMN_1 will be fetched and shown here.
    if user_choice = 'YES' then
    commit ;
    else
    rollback ;
    end if ;
    Statements in calling forms:
    There are two calling forms having following statements and it is going to call the above said called form.
    CALLING FORM 1
    Statements in KEY-COMMIT trigger:
    post;
    call_form(form_child, no_activate) ;
    Statements in ON-INSERT trigger:
    select column_1
    from table_a
    for update of column_1
    where column_2 = 'X' ;
    update table_a
    set column_1 = column_1 + 1
    where column_2 = 'X' ;
    insert into table_b ...;
    insert into table_b ...; Statements in KEY-COMMIT trigger:
    post;
    call_form(form_child, no_activate) ;
    CALLING FORM 2:
    Statements in ON-INSERT trigger:
    select column_1
    from table_a
    for update of column_1
    where column_2 = 'X' ;
    update table_a
    set column_1 = column_1 + 1
    where column_2 = 'X' ;
    insert into table_b ...;
    insert into table_b ...;
    insert into table_b ...;
    Our understanding:
    Assume that both the forms are running from two different machines/instances, issuing commit at the same time. In this case, forms will start executing the statements written in ON-INSERT trigger, the moment POST command is executed. Though the commit is issued at the same time, according to oracle, only one of the request will be taken for processing first. Assume that calling form 1 is getting processed first.
    So, it fetches the value available in COLUMN_1 of TABLE_A and locks the row from further select, update, etc. as SELECT...FOR UPDATE command is used (note that NOWAIT is not given, hence the lock will be released only when COMMIT or ROLLBACK happens) and proceed executing further INSERT statements. Because of the lock provided by the SELECT...FOR UPDATE command, the statements in calling form 2 will wait for the resource.
    After executing the INSERT statements, the FORM_CHILD is called. The rows inserted in to TABLE_A will be queried and shown. The database changes will be committed when user closes the window (as COMMIT is issued in its WHEN-WINDOW-CLOSED trigger). Then the SELECT...FOR UPDATE lock will be released and calling form 2's statements will be executed.
    Actual happenings or Mis-behavior:
    Calling form 2 starts executing INSERT statements instead of waiting for SELECT...FOR UPDATE lock. Also, the value selected from TABLE_A.COLUMN_1 is same in both the calling forms, which is wrong.
    The rows inserted into TABLE_B are having similar COLUMN_1 values in calling form 2 and they are fetched and shown in the called form FORM_CHILD.
    Note that in calling form 2 also POST only is issued, but the changes posted there are accessible in calling form 1 also, which is wrong.
    Kindly suggest us as to how to fix above problem. It will be much use, if you can send us the information regarding the behavior of Oracle Forms POST built-in also.
    Our mail ID: [email protected]
    Thanks a lot in advance.

    You have several problems:
    1. On-Insert will ONLY run if you have created a new record in a base-table block. If you haven't done that, then the POST command will not cause it to run.
    2. Select for update without a "no wait" will lock records for the first form, but when the second form tries this, it will hit the ORA-00054 exception, and will NOT wait. The only way you could make it wait is to issue an UPDATE sql command, which is not such a good way to go.
    All POST does is issues SQL insert or update commands for any changes the user has made to records in a form's base-table blocks, without following with a Commit command.
    Also understand that Commit is the same as Commit_Form, and Rollback is the same as Clear_Form. You should read up on these in the Forms help topics.

  • Cannon GL2 - FCE 2 and iMovie Capture Problems

    Hello Hello
    I've read here that folks are having a tough time capturing with thier Cannon GL2. The device goes from NO problem to 'Can't intiate a capture because the device looses connectivity.
    I tried to find a common denominator to this problem, and it seems this post regarding Quick Time Files can help? Yes?
    Is this the main problem?
    Anyway I'm also having connectivity issues with both iMovie 6 HD, and FCE 2
    Just wondering if I should also follow the directions on this post and have my capture problems solved?
    http://docs.info.apple.com/article.html?artnum=301852
    BTW - I currently have Quicktime 7.0.4
    Thanx

    Hi Tom - Thanx for your reply!
    Well, yes I have (as my profile indicates), a G5 1.8 Gig, currently with an external Lacie HD plugged in. I also have a Cannon GL2.
    But before I go any further, and before I try those directions for cleansing certain Quick Time 7 Library Files, I think I figured out the dilemma.
    This problem of GL2 recognition (from what I've read), is common for folks who have similar equipment, and a similar set-up as mine:
    It seems (as I've also read here), that my G5 does NOT like 2 devices which require the same connection speed plugged into the 1394 Firewire Port at the same time - trying to share the same bus.
    I confirmed this by disconnecting the Lacie FIRST - then booting back up - and WALLAH - the GL2 was certainly receoginzed both in iMovie 6 HD, and FCE 2!
    I also further resolved the issue by buying a 'cheaper' Cannon Camcorder - the ZR500.
    Now I can actually share the Lacie HD in the Fire Wire Port with this slower connection speed camcorder. And a further benefit is giving my GL2 a rest when it comes to 'capture only'
    Does all this make sense?
    If so, perhaps I've already discovered stuff that other folks already know ...
    Thanx
    Mike

  • Show and debug command to troubleshoot roaming

    Hi experts,
    I have complain that in some areas the voip phones sound choppy. I checked the signal strength in that area and it was actually too many APs with acceptable signal strength. I think it might be that the phone keeps roaming among the APs which caused the packets to drop. I am trying to prove it so they can get the phone vendor to change the roaming threshold. Is there debug and show command I can use to check for the roamin history of a client (with specific MAC address)? The debug client <MAC> doesn't show the roaming activity.
    The controller is WISM2 running 7.2.110.0 code
    Thanks,

    If most of your APs are at 7 then I might agree, you have to many access points. But without seeing your design I dont want to comment.
    Yes, -65 dBm. But it is very important dont use your laptop to see the signal strength. Rather use the badge itself and use it how the users are using it, around their neck. If they are holding it in their hand, thats a NO NO.
    Remember each device hears differently. So if you used your laptop you might see a different dBm sginal than the badge consistently. Always use the device that is having issues.
    The 3600 aps can transmist at the following 2.4 GHz levels ..
    1 - 100mW <20 dBm>
    2 - 50 mW <17 dBm>
    3 - 25 mW <14 dBm>
    4 - 12.5 mW <11 dBm>
    5 - 6.25mW <8 dBm>
    6 - 3.12 mW <5 dBm>
    7 - 1.56 mW <2 dBm>
    You can see if your APs are on 7 they are so low they must have a 10 feet foot print.
    Do you have omnipeek or airmagnet to see channel utilization ?
    "Satisfaction does not come from knowing the solution, it comes from knowing why." - Rosalind Franklin
    ‎"I'm in a serious relationship with my Wi-Fi. You could say we have a connection."

  • Show and debugs commands?

    Hi does anybody know a list or page with debug and show commands to
    troubleshoot the css. For examlpe for keepalive packets which returns to the css. Or to look how big is the sticky table an so on...
    Best Regards
    Andrea Benanti

    There is not much debugging on the CSS.
    What you can do is set the logging level to debug in order to activate debugigng.
    ie: 'logging subsystem keepalive level debug'
    You will start getting more info but you still won't see the packets.
    You need a sniffer trace for that.
    For the sticky table, you can see it by going into debug mode.
    Type 'llama' and then do a 'sho sticky-table ....'
    However, the table is hashed information is not possible to decode.
    So, you won't be able to do much with it.
    Gilles.

  • XCOPY and ROBOCOPY commands are OBSOLETE?

    Okay, I've talked to a couple of TechNet Support Agents and scoured google, bing, and the TechNet forums to no avail.
    Apparently, my situation is so different that it's impossible to fix unless I use some sophisticated script and such.
    My problem:
    I need to copy all the folders in a Directory, while excluding everything else (e.g. subfolders and files). In basic terms, just need empty folders with names of all the folders you would see in one directory, and by "folders" I mean just the ones
    you see in the root level of that directory. In layman terms, I want all the main folders from one folder (without their contents) copied to another.
    Apparently, xcopy and robocopy commands are somewhat broken in Windows 8.1
    Also, I'm not going to be making a new folder of each from scratch, because there's about a hundred of them and each have long names to type in. As for subfolders, there's about 5k of them which is what I'm trying to avoid (not sure if mentioning this
    is relevant or not).
    the xcopy /t command still copies all subfolders (of course /xf * is needed but I need something else for the subfolders). Robocopy /LEV:0 or 1 doesn't do jack for avoiding subfolders either.
    I wonder if there's a script someone knows about that I can use with a batch file to do what I want?

    Never mind, I solved my problem after reading about a similar issue on superuser.com
    It turned out to be a robocopy command combination: robocopy [source] [destination] /e /create /lev:2 /xf *

  • Adpatch: Error running SQL and EXEC commands in parallel

    Hi
    I am applying R12 RUP2 to an instance at the moment. I had an OS crash (I'm running R12 on Linux on VMWARE) and on reboot attempted to restart the patch.
    I now get an error as follows:
    Error running SQL and EXEC commands in parallel
    I must admit, I'm not a DBA, so if anyone has any ideas or has seen this before then it would be most appreciated!
    Thanks
    Chris

    Hi Adith
    The patch is 5484000, RUP 2 for E-Business Suite R12
    Here's the adpatch output:
    Start date: Wed Sep 12 2007 15:15:14
    0 "left over" javaupdates.txt files uploaded to DB: Wed Sep 12 2007 15:15:14
    0 patches uploaded from the ADPSV format patch history files: Wed Sep 12 2007 15:15:14
    Uploading information about files copied during the previous runs ...
    0 "left over" filescopied_<session_id>.txt files uploaded to DB: Wed Sep 12 2007 15:15:14
    ****************** E N D O F U P L O A D ******************
    End date: Wed Sep 12 2007 15:15:14
    Already asked for the name of the patch directory.
    (The answer was: /oracle/patches/5484000)
    Already asked for the name of the patch driver file.
    (The answer was: /oracle/patches/5484000/u5484000.drv)
    Reading release list save file...
    Done reading release list save file
    Log and Info File sync point:
    Wed Sep 12 2007 15:15:15
    Turning off actions that reference unrecognized products.
    Log and Info File sync point:
    Wed Sep 12 2007 15:15:15
    End of unrecognized products checking.
    (The number of parallel workers is: " 2 ")
    AutoPatch will run in parallel mode.
    Did not need to apply new applterr.txt.
    Skipping...
    Determine directories to create for Specified driver
    since no such action is present for this driver file
    Skipping...
    Determine Oracle Reports libraries to generate for Specified driver
    since no such action is present for this driver file
    Skipping...
    Determine if need to generate message files for Specified driver
    since no such action is present for this driver file
    Skipping...
    Create Directories for Specified driver
    since no such action is present for this driver file
    Number of invalid objects: 31057
    Running SQL scripts and EXEC commands...
    Determining which SQL and EXEC commands to run...
    Validating PL/SQL direct execute exceptions file ...
    Done validating PL/SQL direct execute exceptions file.
    SERVICE_NAME/INSTANCE_NAME : [VIS]
    connect_string : [(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ebusr12.chriseebee.me.uk)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=VIS)))]
    Done determining which SQL and EXEC commands to run.
    Running SQL and EXEC commands in parallel...
    Creating the AD_UTIL_PARAMS table...
    Table AD_UTIL_PARAMS already exists, so dropping the table and recreating it.
    Creating FND_INSTALL_PROCESSES table...
    Already created fnd_install_processes table
    Already created FND_INSTALL_PROCESSES_U1 index.
    Already created AD_DEFERRED_JOBS table
    Already created AD_DEFERRED_JOBS_U1 index.
    Writing dependencies of jobs to run to appldep.txt file...
    There are now 7569 jobs remaining (current phase=A0):
    0 running, 5 ready to run and 7564 waiting.
    Reading completed jobs from restart file (if any).
    There are now 3474 jobs remaining (current phase=A18):
    0 running, 1 ready to run and 3473 waiting.
    Determining which java executables are supported by adJavaWorker...
    Starting worker processes.
    Worker process 1 started.
    Worker process 2 started.
    Checking if all jobs have their actual and symbolic arguments in sync....
    Done.
    Writing jobs to run to restart file.
    Reading jobs from FND_INSTALL_PROCESSES table ...
    Running: file adobjcmp.sql on worker 1 for product ad username APPLSYS.
    AutoPatch error:
    The worker should not have status 'Running' or 'Restarted' at this point.
    Telling workers to quit...
    ************* Start of AD Worker session *************
    AD Worker version: 12.0.0
    AD Worker started at: Wed Sep 12 2007 15:15:34
    APPL_TOP is set to /oracle/VIS/apps/apps_st/appl
    ************* Start of AD Worker session *************
    AD Worker version: 12.0.0
    AD Worker started at: Wed Sep 12 2007 15:15:34
    APPL_TOP is set to /oracle/VIS/apps/apps_st/appl
    All workers have quit.
    AutoPatch error:
    Error running SQL and EXEC commands in parallel
    You should check the file
    /oracle/VIS/apps/apps_st/appl/admin/VIS/log/adpatch.log
    for errors.

  • My auru script to show all available updates with versions and install

    So, I decided to hack together a little script that might be useful to someone else too.  I wanted to script that would show me all available updates, from from the official repos as well as from the aur.  I also wanted to see at a glance what the installed versions of each package and the new version to be installed are. 
    The output looks something like this:
    [shaun@shaun-asus-x202e ~]$ auru
    Available updates from core:
    vlc 2.1.2-2 2.1.2-3
    Available updates from AUR:
    ansible 1.4.3-1 1.4.4-1
    Would you like to install all updates without further prompting?
    y/n->
    Here's the code that I put into a dropbox shared file called arch_functions and source it from ~/.bashrc.   Replace the test_apacman function and associated commands with aur wrapper of choice.  Once this is in place, I simply run auru once a day on all my machines and I get all the information I need, and only press a y or n in order install all updates. 
    bold="\033[1m"
    endbold="\033[0m"
    test_apacman() {
    hash apacman 2>/dev/null || \
    #packer -S apacman --noedit --noconfirm
    #sudo pacman -S --needed --noconfirm base-devel jshon git curl
    hash wget 2>/dev/null || sudo pacman -S --needed --noconfirm wget
    origdir=$(pwd)
    cd ${HOME}
    mkdir -p ./tmpaur/
    cd ./tmpaur/
    wget https://aur.archlinux.org/packages/ap/apacman/apacman.tar.gz
    tar xfv apacman*
    cd apacman
    makepkg
    sudo pacman -U --needed --noconfirm apacman-*.pkg.tar.xz
    cd "$origdir"
    auru() {
    updatesavail=0
    ## check that dependencies are installed
    # expac
    hash expac || sudo pacman -S --needed --noconfirm expac
    # apacman
    test_apacman
    ### check core updates
    pacman -Syy
    echo -en "${bold}Available updates from core:${endbold}\n"
    pacmanupdates=$(sudo pacman -Qu)
    for pacmanupdate in "$pacmanupdates"
    do
    if [ "$pacmanupdate" == "" ]
    then
    echo "No core updates"
    else
    pkg=$(echo "$pacmanupdate" | awk '{print $1}')
    pkgvernow=$(echo "$pacmanupdate" | awk '{print $2}')
    pkgveravail=$(sudo pacman -Si ${pkg} | grep Version | awk '{print $3}')
    #echo -en "$pkg\t$pkgvernow\t$pkgveravail\n"
    printf '%-25s' "$pkg"
    printf '%-20s' "$pkgvernow"
    printf '%-20s\n' "$pkgveravail"
    updatesavail=$((updatesavail + 1))
    fi
    done
    ### check aur updates
    echo -en "${bold}Available updates from AUR:${endbold}\n"
    aurupdates=$(apacman --auronly --quickcheck)
    for aurupdate in "$aurupdates"
    do
    if [ "$aurupdate" == "" ]
    then
    echo "No AUR updates"
    else
    pkg="$aurupdate"
    pkgvernow=$(sudo pacman -Q ${pkg} | awk '{print $2}')
    pkgveravail=$(apacman -Ss ${pkg} | grep "aur/${pkg} " | awk '{print $2}')
    printf '%-25s' "$pkg"
    printf '%-20s' "$pkgvernow"
    printf '%-20s\n' "$pkgveravail"
    updatesavail=$((updatesavail + 1))
    fi
    done
    ### apply updates if any
    if [ $updatesavail -gt 0 ]
    then
    echo "Would you like to install all updates without further prompting?"
    read -p "y/n->" answer
    if [ "$answer" == "y" ]
    then
    sudo pacman -Su --noconfirm
    apacman -Su --auronly --noedit --noconfirm --needed
    fi
    fi
    Last edited by senorsmile (2014-01-20 04:41:14)

    For someone with a username like yours I would have expected better. I guess you are not a "tech guy" at all. After a while Apple improves the hardware, and updates iOS to take advantage of the features and speed of the newer hardware. Older devices are simply incapable of taking advantage of the newer features, because the hardware doesn't support it. There's a lot of advice posted in the forum from people who warn that you shouldn't upgrade an iPhone 4S to iOS 8, because it kills the performance. If that's true, imagine how iOS 8 must perform on an iPhone 4. 
    By your reasoning I should be able to run Windows 10 on a 1985 IBM PC. The only reason you can't is because Microsoft had a deal with hardware manufacturers to force people to get new computers.
    Or are you arguing that Apple should never improve hardware, because it will leave users of older phones in the lurch?

  • Problem description: My  macbook pro since this afteon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click-  EtreCheck

    My computer
    Problem description:
    My  macbook pro since this afternoon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click…
    EtreCheck version: 2.1.8 (121)
    Report generated 31 de março de 2015 18:29:15 BRT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 250
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 512 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 0:25:47
    Disk Information: ℹ️
        Hitachi HTS545032B9A302 disk0 : (320,07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 318.84 GB (47.94 GB free) - 51 errors
                Core Storage: disk0s2 319.21 GB Online
        MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.trusteer.rapport.rapportd.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.trusteer.rooks.rooksd.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    UNKNOWN Hidden (missing value)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Stickies    Application  (/Applications/Stickies.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
    User internet Plug-ins: ℹ️
        npsf_cef: Version: sf 3.3.1.1 [Click for support]
        Google Earth Web Plug-in: Version: Unknown
    Safari Extensions: ℹ️
        DivX HiQ
        DivX Plus Web Player HTML5 <video>
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
        Trusteer Endpoint Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 318.84 GB Disk used: 270.90 GB
        Destinations:
            Time Machine Backups [Local]
            Total size: 999.86 GB
            Total number of backups: 60
            Oldest backup: 2012-07-15 01:16:54 +0000
            Last backup: 2015-03-29 19:28:06 +0000
            Size of backup disk: Excellent
                Backup size 999.86 GB > (Disk size 318.84 GB X 3)
    Top Processes by CPU: ℹ️
            97%    rapportd
             3%    WindowServer
             1%    mds
             0%    fseventsd
             0%    distnoted
    Top Processes by Memory: ℹ️
        155 MB    Safari
        120 MB    Finder
        86 MB    rapportd
        86 MB    WindowServer
        69 MB    mds_stores
    Virtual Memory Information: ℹ️
        12.56 GB    Free RAM
        2.53 GB    Active RAM
        428 MB    Inactive RAM
        1.66 GB    Wired RAM
        1.04 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 31, 2015, 06:00:15 PM    Self test - passed
        Mar 31, 2015, 01:13:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-131305_[redacted].crash
        Mar 31, 2015, 01:05:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-130542_[redacted].crash
        Mar 31, 2015, 12:24:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-122433_[redacted].crash
        Mar 30, 2015, 05:45:38 PM    /Library/Logs/DiagnosticReports/Skype_2015-03-30-174538_[redacted].cpu_resource .diag [Click for details]
        Mar 30, 2015, 01:52:07 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Last.fm Scrobbler_2015-03-30-135207_[redacted].crash
        Mar 29, 2015, 05:55:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_20 15-03-29-175505_[redacted].crash
        Mar 29, 2015, 01:06:38 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130638_[redacted].hang
        Mar 29, 2015, 01:02:47 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130247_[redacted].hang

    Open Activity Monitor and kill this process - rapportd.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • When trying to creat a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem...

    Question
    When trying to create a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem?I do not have any installed plugins....at least none that I know of.....remember I am a new user......Basically, the desktop icon is not going directly to the Mozilla FF to get me to the web site I need to go to.....FF works when I use the Mozilla FF icon.....just not the icons I create.....THANKS!!! I have also tried reinstalling FF and get the same results.....HELP!!!

    The address beginning with file:/// denotes a saved file (local file). The file may not be present. You can try dragging the site icon of this page on the left edge of the location (Address) bar and release it on the desktop. Please try opening it. If it still shows an error it could be a problem with the system's zone permissions. You can try setting each zone in the Windows Control Panel or IE > '''Internet Options''' > '''Security''' tab to '''Default Level'''.

  • I will starting afresh website in my iWeb, it shows only the head or the command line and the command new website is inactive - what do I need to start over

    Help........
    I will starting afresh website in my iWeb, when I start the program it only shows the head or the command line and the command new website is inactive - what do I need to start over - what have I done wrong

    Don't quite understand what you mean, but it says at the bottom that you are still using iWeb 08 so depending on what OSX you are running, you might consider upgrading to iWeb 09.  This works with Lion, Mountain Lion and Mavericks.
    Apple no longer sells iWeb so if you decide to upgrade, then you'll need to purchase iWeb by going to Amazon and buying the iLife 09 or 11 boxed sets, both of which contain iWeb 09.
    Install this on your Mac and it might solve your problems, or just ditch iWeb and start again with one of the newer programmes out there that are still being supported and updated, such as RapidWeaver, Sandvox, Freeway Pro/Express, Flux 4, WebAcapella 4 and EverWeb (http://www.everwebapp.com).

Maybe you are looking for