Unknown command PKI

Hello

I've been unsuccessful Googling for a good understanding of what makes this command:

the use of ssl-client validation

It is configured under the command of "crypto ca trustpoint" in our ASA, as for example:

Crypto ca trustpoint XXXX

the use of ssl-client validation

I would like to have a good clear explanation of what this command does or is for.

Thank you

Adil

Hi Adil,

the use of the validation

To specify the types of use to which validation against this trustpoint is granted, use the validation-use in crypto ca trustpoint configuration mode command. To not specify the types of use, do not use No form of the command.

Customer validation-use ipsec. SSL-client | SSL-server

No validation-use of ipsec-client | SSL-client | SSL-server

Description of the syntax

IPSec-client

Indicates that the IPsec client connections can be validated with this trustpoint.

SSL-client

Indicates that client SSL connections may be validated using this trustpoint.

SSL-server

Indicates that server SSL certificates can be validated with this trustpoint.

You can check below link aas well: -.

http://www.Cisco.com/en/us/docs/security/ASA/command-reference/v.html#wp1834686

Kind regards

NGO

Tags: Cisco Security

Similar Questions

  • vSphere CLI: error: unknown command

    This could be as simple as just something I miss, but since I do not use the CLI much at all, I thought I'd ask just. I can connect to the CLI, but any command I use the host responds just with either "< command > not found" or when you use vSphere CLI "error: unknown command or namespace.

    I even tried connecting through my server vCenter Server and then go out to the host by using the command - vihost, that works, but I still get the error that the command I try to use it recognized.

    vSphere CLI

    C:\Program Files (x 86) \VMware\VMware vSphere CLI > esxcli - Server < servername > - username < my nickname-> password < password > vicfg - snmp.pl - Server < servername > public - c

    Error: Unknown command or namespace vicfg - snmp.pl


    You must run this command from the prompt (not hull as shown above) vSphere CLI commands and make sure the bin is in your path. Otherwise that run from here;

    C:\Program Files (x 86) \VMware\VMware vSphere CLI\bin> vicfg - snmp.pl - Server - username - password - show

  • unknown command

    Hello

    I installed 10g XE on a Windows XP computer to test things before using them on the production DB, which is 10 g EA. When I try to import data with the PMI command at the command line, I get error: unknown command.

    The variables seem to be OK, as far as I know.

    The user varialble Oracle_home:
    C:\oraclexe\app\oracle\product\10.2.0\Server
    PATH environment variable:
    C:\oraclexe\app\oracle\product\10.2.0\server\bin; C:\oracle\product\10.2.0\Client_1\bin;%SystemRoot%\System32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SystemRoot%\system32\nls;%SystemRoot%\system32\nls\ENGLISH; C:\Program\Novell\ZENworks\; C:\Program\QuickTime\QTSystem\

    Path is correct and I "ve verified that imp.exe both exp.exe lie in the bin catalog.

    I tested the connection as 'gisuser' and sysdba with the same results.

    Gratefull for ideas on what may be wrong.

    Eija

    Windows imp.exe is a Windows executable and not an SQL statement: Please, run it from the cmd.exe command line.

  • Error creating features in the packages - unknown command FUNCTION

    Hello

    I usually identify with the diagram of the system via the SQL command line and run my sql files. I have the database below and the test package. But I get the error:
    Order unknown start "FUNCTION p...» ' - the rest of the ignored line

    This is the database I load previously:

    DROP TABLE Judete CASCADE CONSTRAINTS;
    CREATE TABLE Judete
    (
    JD CHAR (2) PRIMARY KEY.
    NumeJud char(10) NOT NULL UNIQUE,
    Regiune CHAR (15) by default "Moldova" CHECK (Regiune IN ('Moldova', 'Transilvania', 'Banat'))
    );

    DROP TABLE Localitati CASCADE CONSTRAINTS;
    CREATE TABLE Localitati
    (CodPostal NUMBER (8) PRIMARY KEY,)
    NumeLoc NON NULL, char (15)
    Judet (2) tank,
    FOREIGN KEY (Judet) made REFERENCE Judete (JD)
    );

    DROP TABLE Persoane CASCADE CONSTRAINTS;
    CREATE TABLE Persoane
    (NOC NUMBER PRIMARY KEY (15),)
    NumePers NON NULL char (20)
    PrenPers NON NULL char (20)
    CodPostal NUMBER (10),
    Such NUMBER (12) NOT NULL,
    FOREIGN KEY (CodPostal) made REFERENCE to Localitati (CodPostal)
    );

    DROP TABLE Produse CASCADE CONSTRAINTS;
    CREATE TABLE Produse
    (CodProdus NUMBER (10) PRIMARY KEY,)
    NumeProdus NON NULL, char (15)
    Loan NUMBER (8) NOT NULL
    );



    DROP TABLE Vanzari CASCADE CONSTRAINTS;
    CREATE THE Vanzari TABLE
    (CodV NUMBER (8) PRIMARY KEY,
    CodProdus NUMBER (10),
    PersCNP Number (15),
    DataV DATE NOT NULL,
    NrProduse NUMBER (8) NOT NULL,
    FOREIGN KEY (PersCNP) made REFERENCE Persoane (NOC),
    FOREIGN KEY (CodProdus) makes REFERENCE Produse (CodProdus)
    );

    INSERT INTO Judete VALUES ('IS', 'Iasi', 'Moldova');
    INSERT INTO Judete VALUES ("CJ", "Cluj", "Transilvania");
    INSERT INTO Judete VALUES ("TM", "Timis', 'Banat');

    INSERT INTO Localitati VALUES (200, "Vaslui", "IS");
    INSERT INTO Localitati VALUES (201, 'Targu Frumos', 'IS');

    INSERT INTO Localitati VALUES (202, 'Criseni', 'CJ');
    INSERT INTO Localitati VALUES (203, "Dealu Botii", "CJ");

    INSERT INTO Localitati VALUES (204, "Beba Veche", "TM");
    INSERT INTO Localitati VALUES (205, "Blajova", "TM");


    INSERT INTO Persoane VALUES (0001, "Ionescu", "Ion", 201, 0332504312);
    INSERT INTO Persoane VALUES (0002, "Vasilescu", "Vasile", 203, 0332304612);
    INSERT INTO Persoane VALUES (0003, "Ionescu", "Ion", 204, 0322564322);

    INSERT INTO Produse VALUES (1, "Limp", 50);
    INSERT INTO Produse VALUES (2, 'First', 80);
    INSERT INTO Produse VALUES (3, 'Corn', 35);

    INSERT INTO Vanzari VALUES (100, 1, 0001, to_date('2011-03-07','yyyy-mm-dd'), 5);
    INSERT INTO Vanzari VALUES (101, 3, 0001, to_date('2011-02-07','yyyy-mm-dd'), 2);
    INSERT INTO Vanzari VALUES (2, 102, 0002, to_date('2011-01-08','yyyy-mm-dd'), 7);
    INSERT INTO Vanzari VALUES (1, 103, 0002, to_date('2011-03-08','yyyy-mm-dd'), 15);
    INSERT INTO Vanzari VALUES (3, 104, 0003, to_date('2011-02-19','yyyy-mm-dd'), 9);
    INSERT INTO Vanzari VALUES (105, 1, 0003, to_date('2011-03-29','yyyy-mm-dd'), 1);


    the package is:

    CREATE or REPLACE PACKAGE pachet_lab2
    IS
    FUNCTION prod_bine_vandut RETURN NUMBER;

    END pachet_lab2;
    /

    CREATE OR REPLACE pachet_lab2 BODIES


    FUNCTION prod_bine_vandut RETURNS the NUMBER IS
    DECLARE
    v_sale NUMBER (6);
    V_nume char (15);
    v_cod NUMBER (10);
    BEGIN
    SELECT max(p.pret * v.NrProduse) IN the v_sale DE Produse p, Vanzari v
    WHERE the p.CodProdus = v.CodProdus;


    SELECT p.numeProdus INTO v_nume Produse p, Vanzari v
    WHERE p.CodProdus = v.CodProdus AND v_sale = p.pret * v.NrProduse;


    SELECT p.codProdus INTO v_cod Produse p, Vanzari v
    WHERE p.CodProdus = v.CodProdus AND v_sale = p.pret * v.NrProduse;

    Return v_cod;
    END prod_bine_vandut;



    END pachet_lab2;
    /



    I need to change the schema that I use? How can I do?

    Thank you
    Paul
    CREATE OR REPLACE PACKAGE BODY pachet_lab2 IS --you misse keyword PACKAGE 
    
    FUNCTION prod_bine_vandut RETURN NUMBER IS
    -- DECLARE is not allowed here
    v_sale NUMBER(6);
    -- ...
    

    Good bye
    DPT

  • SP2-0734: from unknown SQL Plus output command

    Hello

    I am facing problem when running sqlplus report:

    landlines 32767

    Set feedback off

    define the emb on newp 0 pages 0

    Set trimspool on

    trigger tab

    Set trimout on

    trigger the echo

    left the underline

    set verify off

    Show Set

    Go head

    the value of colsep |

    PARTY_NAME FAST | PARTY_SITE_NAME | PARTY_SITE_UPDATED_BY | PARTY_SITE_UPT_DATE | ADDRESS1. ADDRESS2. ADDRESS3. ADDRESS4 | CITY | STATE | ZIP_CODE | COUNTRY | ADDRESS_UPDATED_BY | ADDRESS_UPDATE_DATE | SDF_STATUS | FG_STATUS | A_NUM | SELLER_NUM | SHIP_ACCOUNT_NUM | A_IDENTIFIER | TO_SD | AS_DATE | SDN | CLIENT_NAME. CLIENT_TYPE | EXCLDUDE_SALES | CUSTOMER_SITE_UPDATED_BY | CUSTOMER_SITE_UPDT_DT

    Then the part SQL is below:

    When I ran there is error:

    PARTY_NAME | PARTY_SITE_NAME | PARTY_SITE_UPDATED_BY | PARTY_SITE_UPT_DATE | ADDRESS1. ADDRESS2. ADDRESS3. ADDRESS4 | CITY | STATE | ZIP_CODE | COUNTRY | ADDRESS_UPDATED_BY | ADDRESS_UPDATE_DATE | SDF_STATUS | FG_STATUS | A_NUM | SELLER_NUM | SHIP_ACCOUNT_NUM | A_IDENTIFIER | TO_SD | AS_DATE | SDN | CLIENT_NAME. CLIENT_TYPE | EXCLDUDE_SALES | CUSTOMER_SITE_UPDATED_BY |

    SP2-0734: unknown command beginning with "CUSTOMER_S"... "- rest of line is ignored.

    Why do you use invites to display column headers?

    Replace your head to the wide set, align the head on and remove the fast line.

  • Gesture of unknown trackpad OSX optimizes each bin in the component of the program.

    Hey all:

    Mode list in the component of the project, I continue to accidentally make a gesture of trackpad mulititouch shows/maximize the content of each bin. My current project has hundreds on the bins, it takes a long time to manually click each arrow to hide the contents of each bin; it completely breaks my flow of edition.

    So the question is: no idea what this unknown command? It seems to trigger via some type of scan to three fingers.

    : Also at - it a command which does the opposite? (leather / minimizes the content of all sites in the component of the program)

    Thanks in advance for any information!

    Sincerely,

    Ryan O'Donnell

    (Premiere Pro 2015 CC on a Macbook Pro running El Capitan)

    Option-pirouette
    Should expand or collapse all locations.

  • I'm losing configuration when I turned off my Cisco 857 router

    I bought the new router Cisco 857 of the shop. Router must have been used before as I couln can't go inside with name of user and password default cisco/cisco.

    Well I followed digital and reset the password for the user name and password. Now I have finally connected to Cisco CP express on my IE browser.

    I discovered that someone was using a router in the shop that's why I countries: ' t log in to him in the first place. In any case the problem is that when I changed my configuration and applies the settings he remembers until I turned off. When I turn on again he remembers all the parameters of this shop.

    He returned everything back: IP address, former account to level 15 and password - just like after the password reset.

    I tried again and he again lost the settings. So I found instructions:

    http://www.Cisco.com/en/us/products/HW/routers/ps233/products_tech_note09186a00800a65a5.shtml

    I followed it and changed once again all the settings of the router. My settings are still lost after the power on/off. I noticed that when I do everything first bit it shows

    0x2102 not 0x2142 like they think that is password reset mode.

    Here is my output from Hyper Terminal:

    =============================

    Cisco#enable

    Cisco#show start

    Using 3359 out of 131072 bytes

    !

    version 12.4

    no service pad

    service timestamps debug datetime msec

    service timestamps log datetime msec

    no service password-encryption

    !

    hostname Cisco

    !

    boot-start-marker

    boot-end-marker

    !

    logging buffered 51200 warnings

    enable secret 5 $1$hpKF$Rc1tl6r45J8iHG7EN5jSk.

    !

    no aaa new-model

    !

    crypto pki trustpoint TP-self-signed-3185909327

    enrollment selfsigned

    subject-name cn=IOS-Self-Signed-Certificate-3185909327

    revocation-check none

    rsakeypair TP-self-signed-3185909327

    !

    !

    crypto pki certificate chain TP-self-signed-3185909327

    certificate self-signed 01 nvram:IOS-Self-Sig#5.cer

    dot11 syslog

    no ip dhcp use vrf connected

    ip dhcp excluded-address 10.10.10.1

    !

    ip dhcp pool ccp-pool

    import all

    network 10.10.10.0 255.255.255.248

    default-router 10.10.10.1

    lease 0 2

    !

    !

    ip cef

    no ip domain lookup

    ip domain name molinary.com

    !

    !

    !

    username admin privilege 15 secret 5 $1$jD3j$r6ROikgGsIlcMTGjkxFQ6.

    username username privilege 15 password 0 password

    !

    !

    archive

    log config

    hidekeys

    !

    !

    !

    !

    !

    interface ATM0

    no ip address

    shutdown

    no atm ilmi-keepalive

    dsl operating-mode auto

    !

    interface ATM0.1 point-to-point

    description $ES_WAN$

    ip nat outside

    ip virtual-reassembly

    pvc 0/38

    encapsulation aal5mux ppp dialer

    dialer pool-member 1

    !

    !

    interface FastEthernet0

    !

    interface FastEthernet1

    !

    interface FastEthernet2

    !

    interface FastEthernet3

    !

    interface Vlan1

    description $ETH-SW-LAUNCH$$INTF-INFO-HWIC 4ESW$$ES_LAN$

    ip address 10.10.10.1 255.255.255.248

    ip nat inside

    ip virtual-reassembly

    ip tcp adjust-mss 1452

    !

    interface Dialer0

    ip address dhcp

    encapsulation ppp

    dialer pool 1

    dialer-group 1

    no cdp enable

    ppp authentication chap pap callin

    ppp chap hostname [email protected]/* */

    ppp chap password 0 netgear01

    ppp pap sent-username [email protected]/* */ password 0 netgear01

    !

    ip forward-protocol nd

    !

    ip http server

    ip http access-class 23

    ip http authentication local

    ip http secure-server

    ip http timeout-policy idle 60 life 86400 requests 10000

    ip nat inside source list 1 interface ATM0.1 overload

    !

    access-list 1 remark INSIDE_IF=Vlan1

    access-list 1 remark CCP_ACL Category=2

    access-list 1 permit 10.10.10.0 0.0.0.7

    dialer-list 1 protocol ip permit

    no cdp run

    !

    control-plane

    !

    banner exec ^C

    % Password expiration warning.

    -----------------------------------------------------------------------

    Cisco Configuration Professional (Cisco CP) is installed on this device

    and it provides the default username "cisco" for  one-time use. If you have

    already used the username "cisco" to login to the router and your IOS image

    supports the "one-time" user option, then this username has already expired.

    You will not be able to login to the router with this username after you exit

    this session.

    It is strongly suggested that you create a new username with a privilege level

    of 15 using the following command.

    username privilege 15 secret 0

    Replace and with the username and password you

    want to use.

    -----------------------------------------------------------------------

    ^C

    banner login ^CAuthorized access only!

    Disconnect IMMEDIATELY if you are not an authorized user!^C

    !

    line con 0

    login local

    no modem enable

    line aux 0

    line vty 0 4

    privilege level 15

    login local

    transport input telnet ssh

    !

    scheduler max-task-time 5000

    end

    Cisco#

    Cisco#

    Cisco#

    Cisco#

    Cisco#

    Cisco#

    Cisco#

    Cisco#

    Cisco#show version

    Cisco IOS Software, C850 Software (C850-ADVSECURITYK9-M), Version 12.4(15)T12, R

    ELEASE SOFTWARE (fc3)

    Technical Support: http://www.cisco.com/techsupport

    Copyright (c) 1986-2010 by Cisco Systems, Inc.

    Compiled Fri 22-Jan-10 14:46 by prod_rel_team

    ROM: System Bootstrap, Version 12.3(8r)YI4, RELEASE SOFTWARE

    Cisco uptime is 20 minutes

    System returned to ROM by power-on

    System image file is "flash:c850-advsecurityk9-mz.124-15.T12.bin"

    This product contains cryptographic features and is subject to United

    States and local country laws governing import, export, transfer and

    use. Delivery of Cisco cryptographic products does not imply

    third-party authority to import, export, distribute or use encryption.

    Importers, exporters, distributors and users are responsible for

    compliance with U.S. and local country laws. By using this product you

    agree to comply with applicable laws and regulations. If you are unable

    to comply with U.S. and local laws, return this product immediately.

    A summary of U.S. laws governing Cisco cryptographic products may be found at:

    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html

    If you require further assistance please contact us by sending email to

    [email protected]/* */.

    Cisco 857 (MPC8272) processor (revision 0x400) with 59392K/6144K bytes of memory

    .

    Processor board ID FCZ140792J5

    MPC8272 CPU Rev: Part Number 0xC, Mask Number 0x10

    4 FastEthernet interfaces

    1 ATM interface

    128K bytes of non-volatile configuration memory.

    20480K bytes of processor board System flash (Intel Strataflash)

    Configuration register is 0x2102

    Cisco#

    Cisco#

    Cisco#

    Cisco#end

    Translating "end"

    % Unknown command or computer name, or unable to find computer address

    Cisco#reload

    Proceed with reload? [confirm]

    *Mar  1 01:19:27.786: %SYS-5-RELOAD: Reload requested  by username on console. R

    eload Reason: Reload Command.

    System Bootstrap, Version 12.3(8r)YI4, RELEASE SOFTWARE

    Technical Support: http://www.cisco.com/techsupport

    Copyright (c) 2006 by cisco Systems, Inc.

    C850 series (Board ID: 2-149) platform with 65536 Kbytes of main memory

    Booting flash:/c850-advsecurityk9-mz.124-15.T12.bin

    Self decompressing the image : ############################################## [O

    K]

    Restricted Rights Legend

    Use, duplication, or disclosure by the Government is

    subject to restrictions as set forth in subparagraph

    (c) of the Commercial Computer Software - Restricted

    Rights clause at FAR sec. 52.227-19 and subparagraph

    (c) (1) (ii) of the Rights in Technical Data and Computer

    Software clause at DFARS sec. 252.227-7013.

    cisco Systems, Inc.

    170 West Tasman Drive

    San Jose, California 95134-1706

    Cisco IOS Software, C850 Software (C850-ADVSECURITYK9-M), Version 12.4(15)T12, R

    ELEASE SOFTWARE (fc3)

    Technical Support: http://www.cisco.com/techsupport

    Copyright (c) 1986-2010 by Cisco Systems, Inc.

    Compiled Fri 22-Jan-10 14:46 by prod_rel_team

    Image text-base: 0x8002007C, data-base: 0x814E7240

    This product contains cryptographic features and is subject to United

    States and local country laws governing import, export, transfer and

    use. Delivery of Cisco cryptographic products does not imply

    third-party authority to import, export, distribute or use encryption.

    Importers, exporters, distributors and users are responsible for

    compliance with U.S. and local country laws. By using this product you

    agree to comply with applicable laws and regulations. If you are unable

    to comply with U.S. and local laws, return this product immediately.

    A summary of U.S. laws governing Cisco cryptographic products may be found at:

    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html

    If you require further assistance please contact us by sending email to

    [email protected]/* */.

    Cisco 857 (MPC8272) processor (revision 0x400) with 59392K/6144K bytes of memory

    .

    Processor board ID FCZ140792J5

    MPC8272 CPU Rev: Part Number 0xC, Mask Number 0x10

    4 FastEthernet interfaces

    1 ATM interface

    128K bytes of non-volatile configuration memory.

    20480K bytes of processor board System flash (Intel Strataflash)

    no ip dhcp use vrf connected

    ^

    % Invalid input detected at '^' marker.

    SETUP: new interface NVI0 placed in "shutdown" state

    Press RETURN to get started!

    *Mar  1 00:00:03.952: %VPN_HW-6-INFO_LOC: Crypto engine: onboard 0  State change

    d to: Initialized

    *Mar  1 00:00:03.960: %VPN_HW-6-INFO_LOC: Crypto engine: onboard 0  State change

    d to: Enabled

    *Mar  1 00:00:07.244: %LINK-3-UPDOWN: Interface FastEthernet0, changed state to

    up

    *Mar  1 00:00:08.413: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthern

    et0, changed state to up

    *Mar  1 00:00:08.821: %SYS-5-CONFIG_I: Configured from memory by console

    *Mar  1 01:19:27.072: %LINK-3-UPDOWN: Interface Virtual-Access1, changed state t

    o up

    *Mar  1 01:19:27.352: %SYS-5-RESTART: System restarted --

    Cisco IOS Software, C850 Software (C850-ADVSECURITYK9-M), Version 12.4(15)T12, R

    ELEASE SOFTWARE (fc3)

    Technical Support: http://www.cisco.com/techsupport

    Copyright (c) 1986-2010 by Cisco Systems, Inc.

    Compiled Fri 22-Jan-10 14:46 by prod_rel_team

    *Mar  1 01:19:27.352: %SNMP-5-COLDSTART: SNMP agent on host Cisco is undergoing

    a cold start

    *Mar  1 01:19:27.436: %CRYPTO-6-ISAKMP_ON_OFF: ISAKMP is OFF

    *Mar  1 01:19:27.436: %CRYPTO-6-ISAKMP_ON_OFF: ISAKMP is OFF

    *Mar  1 01:19:27.540: %LINEPROTO-5-UPDOWN: Line protocol on Interface NVI0, chan

    ged state to down

    *Mar  1 01:19:28.072: %LINEPROTO-5-UPDOWN: Line protocol on Interface Virtual-Ac

    cess1, changed state to up

    *Mar  1 01:19:28.484: %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, cha

    nged state to up

    *Mar  1 01:19:28.484: %LINK-5-CHANGED: Interface ATM0, changed state to administ

    ratively down

    *Mar  1 01:19:28.848: %LINK-5-CHANGED: Interface NVI0, changed state to administ

    ratively down

    *Mar  1 01:19:28.932: %LINK-3-UPDOWN: Interface FastEthernet3, changed state to

    up

    *Mar  1 01:19:28.936: %LINK-3-UPDOWN: Interface FastEthernet2, changed state to

    up

    *Mar  1 01:19:28.940: %LINK-3-UPDOWN: Interface FastEthernet1, changed state to

    up

    *Mar  1 01:19:29.484: %LINEPROTO-5-UPDOWN: Line protocol on Interface ATM0, chan

    ged state to down

    *Mar  1 01:19:29.932: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthern

    et3, changed state to down

    *Mar  1 01:19:29.936: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthern

    et2, changed state to down

    *Mar  1 01:19:29.940: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthern

    et1, changed state to down

    *Mar  1 01:19:29.948: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthern

    et0, changed state to upAuthorized access only!

    ===========================================

    Please help me as I am stuck and can't go any further....

    Hi Dragan,

    After you run the wizard Cisco CP Express, it should save the configuration set to update the flash on the router.  However, in your case, it seems this is not the case.  Therefore:

    1. Configure the device via Cisco CP Express--> do NOT turn off after that
    2. Connect to the router with Hyperterminal.  Enter the configuration mode by typing:
      Enable
      When you are prompted for a password to put in.  The line should now be router #.

      now type:

      write memory

      You see errors?  Otherwise, type:
      See the startup-config

      Check the output matches the configuration you've tried.  If Yes, then you are good to go.  If this is not the case, let us know all the errors you received.

  • e-mail account working do not mistake the e-mail server for this account does not

    One of my Gmail account does not not via Thunderbird. He worked for until our days. Get them an error message saying
    "The current operation on the Inbox doesn't have to succeed. The e-mail server of the account... responded: unknown command 34
    the e-mail server for this account in not responding do not, the unknown command...)

    I delete this email account and re-created with the same problem. The unknown command is different everytime I try to get new messages...

    See if that helps.
    https://productforums.Google.com/Forum/#! subject/gmail/KB-HRs8VGsg

    In any case, it looks more like a problem of Google, so you can also ask in a forum of Google.

  • Could have been hacked.  Guy got in the Terminal

    Hello.  Dear old dad, 81, called what he had thought was Netflix... it wasn't.  My gut tells me that this is a fraudulent site.  CreticWorld.com

    The deal was this: the 'helper' find stuff very bad on the site of my father and offered to fix it for $400.  I imagine that they are preparing to ask on his credit card to pay for it.

    The "helper" had my father to connect through a kind of thing LOGMEIN.

    There send my father.

    I don't THINK that there ID apple of my father or master password for the computer.

    I ran Malwarebites Anti Malware app... He found nothing.

    There is no "updates" in the app store.

    10.10.5 MacbookPro system

    I will paste the report between the terminals below.  In the end, he has a few scary phrases like

    • Email compromised

    • Worm found

    • compromised network

    But... There's a funky spelling.

    1. advice?  I am panic that my dad's computer is hacked, and they will get its passwords, bank accounts, credit cards, etc.

    2. what would you do?

    3. grateful for any advice.

    Pasted below is the Terminal Server session.  I don't know if it's true, if it is stuck in the terminal of dad to freak him out?  You can if the Terminal Server Session is real?  What this means?  No idea if it is valid and hope a pro Terminal would give him a glance.

    Brad in Denver

    Last login: Fri Aug 1 14:18:24 on console

    Robert-*-MacBook: ~ robert * $ security sca

    Security: unknown command 'sca '.

    Robert-*-MacBook: ~ robert * email: * gmail.com $

    -bash: email: * gmail.com: command not found

    Robert-*-MacBook: ~ robert * $ netstat

    Active Internet connections

    Proto Recv-Q Send-Q local address address abroad (State)

    tcp4 0 192.168.1.21.61271 0 mcs6-1 - isp2.bgl... trivn ESTABLISHED

    tcp4 0 192.168.1.21.61270 0 mcs7-1 - isp2.bgl... trivn ESTABLISHED

    tcp4 0 192.168.1.21.61269 0 mcs6-1 - isp1.bgl... trivn ESTABLISHED

    tcp4 0 1807 192.168.1.21.61268 mcs6-1 - isp2.bgl... trivn ESTABLISHED

    tcp4 0 192.168.1.21.61267 0 egw1.express.got.trivn ESTABLISHED

    tcp4 0 192.168.1.21.61208 0 162.125.32.129.https ESTABLISHED

    tcp4 0 192.168.1.21.61175 0 den03s09-in-f14... https ESTABLISHED

    tcp4 31 0 192.168.1.21.61157 CLOSE_WAIT Server-216-137 - 4.https

    tcp4 0 192.168.1.21.60970 0 4.53.54.157.https ESTABLISHED

    tcp4 0 192.168.1.21.60916 0 CLOSE_WAIT ec2-52-7-106 - 188.https

    tcp4 31 0 192.168.1.21.60908 45.58.75.161.https CLOSE_WAIT

    tcp4 31 0 192.168.1.21.60850 d.v.dropbox.com.https CLOSE_WAIT

    tcp4 0 192.168.1.21.60791 0 is to say-f108.1e100.imaps ESTABLISHED

    tcp4 0 192.168.1.21.58983 0 216.52.233.177.http ESTABLISHED

    tcp4 0 192.168.1.21.56796 0 108.177.10.109.imaps ESTABLISHED

    tcp4 0 0 localhost.6263 localhost.55436 ESTABLISHED

    tcp4 0 0 localhost.55436 localhost.6263 ESTABLISHED

    tcp4 0 192.168.1.21.55412 0 ESTABLISHED 17.249.204.18.5223

    tcp4 0 192.168.1.21.55410 0 ESTABLISHED 17.172.238.201.5223

    tcp4 0 192.168.1.5.55397 0 74.125.126.108.imaps ESTABLISHED

    tcp6 0 0 2601:282:780:371.55048 2607:f8b0:4001:c.imaps ESTABLISHED

    tcp6 0 0 io 2601:282:780:371.54741 - in - x6d.1e100... IMAPS ESTABLISHED

    tcp4 0 192.168.1.5.49579 0 CLOSE_WAIT ir - to - f108.1e100.imaps

    tcp4 31 0 192.168.1.5.49549 client.v.dropbox.https CLOSE_WAIT

    tcp4 0 0 localhost.49153 localhost.1023 ESTABLISHED

    tcp4 0 0 localhost.1023 localhost.49153 ESTABLISHED

    udp4 0 192.168.1.21.ntp 0 *. *

    udp6 0 *.58761 0 *. *

    udp4 0 *.58761 0 *. *

    udp46      0      0  *.*                    *.*

    udp4 0 0 all - systems.mcas.5350 *. *

    udp46      0      0  *.*                    *.*

    udp6 0 0 robert - montgomer.ntp *. *

    udp46      0      0  *.*                    *.*

    udp46      0      0  *.*                    *.*

    udp4 0 *.acmsoda 0 *. *

    udp4 0 *.ssdp 0 *. *

    udp4 0 0 * .fjicl-pet-a *. *

    udp46      0      0  *.*                    *.*

    udp4 0 *.17500 0 *. *

    udp46      0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp46      0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4 0 *.54457 0 *. *

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    228 udp4 0 *.vce *. *

    udp6 0 0 robert - montgomer.ntp *. *

    udp6 0 0 fe80::1%lo0.ntp *. *

    udp4 0 localhost.ntp 0 *. *

    udp6 0 localhost.ntp 0 *. *

    udp6       0      0  *.ntp                  *.*

    udp4       0      0  *.ntp                  *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp46      0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4 0 *.kerberos 0 *. *

    udp6 0 *.kerberos 0 *. *

    udp6 0 *.mdns 0 *. *

    udp4 0 *.mdns 0 *. *

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4       0      0  *.*                    *.*

    udp4 0 0 * .netbios-ns *. *

    udp4 0 0 * .netbios-cmd *. *

    Connections Internet Multipath active

    Local address abroad proto/ID flags (State)

    icm6       0      0  *.*                    *.*

    Active LOCAL sockets (UNIX)

    Address Type Recv-Q Send-Q Inode Conn Refs Nextref ADR

    flow 8f2638df966c6e01 0 0 0 8f2638df9ac951e9 0/var/run/mDNSResponder 0

    flow 8f2638df9ac951e9 0 0 0 8f2638df966c6e01 0 0

    flow 8f2638df9ac943d9 0 0 0 0 0 0

    flow 8f2638df9ac955d1 0 0 0 0 0 0 /var/tmp/LogMeIn/Guards/.strmLogMeIn_AVMan

    flow 8f2638df95393ed1 0 8f2638dfa39000f9 0 0 0 0 /var/tmp/LogMeIn/Guards/.strmLogMeIn_AVMan

    flow 8f2638df9ac95699 0 8f2638dfa381fd39 0 0 0 0 /var/tmp/LogMeIn/Guards/.strmLogMeIn_AVMan

    flow 8f2638df994f4f99 0 0 0 8f2638df9ac94631 0 0

    flow 8f2638df9ac94631 0 0 0 8f2638df994f4f99 0 0

    flow 8f2638df994f38f1 0 8f2638df92b84799 0 0 0 0/var/folders/d0/njyxhryn72s1x9f5zqvr4dj80000gn/T/ics3677

    flow 8f2638df994f4701 0 0 0 8f2638df994f47c9 0/var/run/mDNSResponder 0

    flow 8f2638df994f47c9 0 0 0 8f2638df994f4701 0 0

    flow 8f2638df994f4891 0 0 0 8f2638df994f4959 0/var/run/mDNSResponder 0

    flow 8f2638df994f4959 0 0 0 8f2638df994f4891 0 0

    flow 8f2638df994f4a21 0 0 0 8f2638df994f4ae9 0/var/run/mDNSResponder 0

    flow 8f2638df994f4ae9 0 0 0 8f2638df994f4a21 0 0

    flow 8f2638df994f4bb1 0 0 0 8f2638df994f4c79 0/var/run/mDNSResponder 0

    flow 8f2638df994f4c79 0 0 0 8f2638df994f4bb1 0 0

    flow 8f2638df95393e09 0 0 0 0 0 0

    flow 8f2638df953929b9 0 0 0 8f2638df95392a81 0/var/run/mDNSResponder 0

    flow 8f2638df95392a81 0 0 0 8f2638df953929b9 0 0

    flow 8f2638df95392b49 0 0 0 8f2638df95392c11 0/var/run/mDNSResponder 0

    flow 8f2638df95392c11 0 0 0 8f2638df95392b49 0 0

    flow 8f2638df95392cd9 0 0 0 8f2638df95392da1 0/var/run/mDNSResponder 0

    flow 8f2638df95392da1 0 0 0 8f2638df95392cd9 0 0

    flow 8f2638df95392e69 0 0 0 8f2638df95392f31 0/var/run/mDNSResponder 0

    flow 8f2638df95392f31 0 0 0 8f2638df95392e69 0 0

    flow 8f2638df966c7059 0 8f2638dfa1831889 0 0 0 0 /var/tmp/LogMeIn/Guards/.strmLogMeIn_AVMan

    flow 8f2638df9ac95f31 0 0 0 8f2638df9ac964a9 0/var/run/mDNSResponder 0

    flow 8f2638df9ac964a9 0 0 0 8f2638df9ac95f31 0 0

    flow 8f2638df9ac94ec9 0 0 0 8f2638df936d3631 0/var/run/mDNSResponder 0

    flow 8f2638df936d3631 0 0 0 8f2638df9ac94ec9 0 0

    flow 8f2638df95394061 0 0 0 8f2638df9ac95509 0/var/run/mDNSResponder 0

    flow 8f2638df9ac95509 0 0 0 8f2638df95394061 0 0

    flow 8f2638df9ac94889 0 0 0 8f2638df9ac95379 0/var/run/mDNSResponder 0

    flow 8f2638df9ac95379 0 0 0 8f2638df9ac94889 0 0

    flow 8f2638df9ac946f9 0 0 0 8f2638df9ac947c1 0/var/run/mDNSResponder 0

    flow 8f2638df9ac947c1 0 0 0 8f2638df9ac946f9 0 0

    flow 8f2638df936d37c1 0 0 0 8f2638df966c7699 0/var/run/mDNSResponder 0

    flow 8f2638df966c7699 0 0 0 8f2638df936d37c1 0 0

    flow 8f2638df936d3569 0 0 0 8f2638df9ac95da1 0/var/run/mDNSResponder 0

    flow 8f2638df9ac95da1 0 0 0 8f2638df936d3569 0 0

    flow 8f2638df9ac96959 0 0 0 8f2638df9ac96571 0/var/run/mDNSResponder 0

    flow 8f2638df9ac96571 0 0 0 8f2638df9ac96959 0 0

    flow 8f2638df936d3ec9 0 8f2638dfa5b94009 0 0 0 0 /var/tmp/LogMeIn/Guards/.strmLogMeIn_AVMan

    flow 8f2638df936d3ba9 0 0 0 8f2638df91078ae1 0 /var/tmp/LogMeIn/LogMeIn/com.logmein.logmeinserver.socket 0

    flow 8f2638df91078ae1 0 0 0 8f2638df936d3ba9 0 0

    flow 8f2638df936d6129 0 0 0 8f2638df91078ba9 0 /var/tmp/LogMeIn/LogMeIn/com.logmein.ui.socket 0

    flow 8f2638df91078ba9 0 0 0 8f2638df936d6129 0 0

    flow 8f2638df936d6061 0 0 0 8f2638df966c6ec9 0/var/run/mDNSResponder 0

    flow 8f2638df966c6ec9 0 0 0 8f2638df936d6061 0 0

    flow 8f2638df966c6d39 0 8f2638df93e7b3d9 0 0 0 0 /var/tmp/LogMeIn/LogMeIn/com.logmein.ui.socket

    flow 8f2638df936d53e1 0 8f2638df93e55889 0 0 0 0 /var/tmp/LogMeIn/LogMeIn/com.logmein.logmeinserver.socket

    flow 8f2638df9ac96bb1 0 0 0 8f2638df9ac958f1 0/var/run/mDNSResponder 0

    flow 8f2638df9ac958f1 0 0 0 8f2638df9ac96bb1 0 0

    flow 8f2638df9ac95e69 0 0 0 8f2638df9ac96189 0/var/run/mDNSResponder 0

    flow 8f2638df9ac96189 0 0 0 8f2638df9ac95e69 0 0

    flow 8f2638df936d34a1 0 0 0 8f2638df966c7829 0/var/run/mDNSResponder 0

    flow 8f2638df966c7829 0 0 0 8f2638df936d34a1 0 0

    flow 8f2638df9ac971f1 0 0 0 8f2638df936d3a19 0 .dbfseventsd 0

    flow 8f2638df9ac97129 0 8f2638dfa0ca20f9 0 0 0 0 .dbfseventsd

    flow 8f2638df936d3a19 0 0 0 8f2638df9ac971f1 0 0

    flow 8f2638df966c7379 0 0 0 8f2638df9ac96ed1 0 0

    flow 8f2638df9ac96ed1 0 0 0 8f2638df966c7379 0 0

    flow 8f2638df9ac96e09 0 0 0 8f2638df966c80c1 0 0

    flow 8f2638df966c80c1 0 0 0 8f2638df9ac96e09 0 0

    flow 8f2638df966c8189 0 0 0 8f2638df936d4f31 0 0

    flow 8f2638df936d4f31 0 0 0 8f2638df966c8189 0 0

    flow 8f2638df966c7121 0 0 0 8f2638df966c9061 0 0

    flow 8f2638df966c9061 0 0 0 8f2638df966c7121 0 0

    flow 8f2638df966c7f31 0 0 0 8f2638df966c8c79 0 0

    flow 8f2638df966c8c79 0 0 0 8f2638df966c7f31 0 0

    flow 8f2638df966c8ed1 0 0 0 8f2638df936d5ae9 0 0

    flow 8f2638df936d5ae9 0 0 0 8f2638df966c8ed1 0 0

    flow 8f2638df966c7da1 0 0 0 8f2638df966c72b1 0 0

    flow 8f2638df966c72b1 0 0 0 8f2638df966c7da1 0 0

    flow 8f2638df966c64a1 0 0 0 8f2638df966c6569 0/var/run/mDNSResponder 0

    flow 8f2638df966c6569 0 0 0 8f2638df966c64a1 0 0

    flow 8f2638df966c67c1 0 0 0 8f2638df966c6889 0 0

    flow 8f2638df966c6889 0 0 0 8f2638df966c67c1 0 0

    flow 8f2638df966c6951 0 0 0 8f2638df966c6a19 0 0

    flow 8f2638df966c6a19 0 0 0 8f2638df966c6951 0 0

    flow 8f2638df966c6f91 0 0 0 8f2638df936d4ff9 0 0

    flow 8f2638df936d4ff9 0 0 0 8f2638df966c6f91 0 0

    flow 8f2638df91079ff9 0 0 0 8f2638df91079f31 0/var/run/mDNSResponder 0

    flow 8f2638df91079f31 265 0 8f2638df91079ff9 0 0 0

    flow 8f2638df966c8a21 0 0 0 8f2638df966c8959 0 /private/tmp/com.carbonite.socket 0

    flow 8f2638df966c8959 0 0 0 8f2638df966c8a21 0 0

    flow 8f2638df966c8251 0 0 0 8f2638df966c84a9 0/var/run/mDNSResponder 0

    flow 8f2638df966c84a9 0 0 0 8f2638df966c8251 0 0

    flow 8f2638df966c8571 0 0 0 8f2638df966c8319 0/var/run/mDNSResponder 0

    flow 8f2638df966c8319 0 0 0 8f2638df966c8571 0 0

    flow 8f2638df966c83e1 0 0 0 8f2638df966c8f99 0/var/run/mDNSResponder 0

    flow 8f2638df966c8f99 0 0 0 8f2638df966c83e1 0 0

    flow 8f2638df966c8d41 0 0 0 8f2638df936d33d9 0/var/run/mDNSResponder 0

    flow 8f2638df936d33d9 0 0 0 8f2638df966c8d41 0 0

    flow 8f2638df966c8ae9 0 0 0 8f2638df966c87c9 0/var/run/mDNSResponder 0

    flow 8f2638df966c87c9 0 0 0 8f2638df966c8ae9 0 0

    flow 8f2638df966c8701 0 0 0 8f2638df966c91f1 0/var/run/usbmuxd 0

    flow 8f2638df966c91f1 0 0 0 8f2638df966c8701 0 0

    flow 8f2638df936d3e01 0 8f2638df959def19 0 0 0 0/var/folders/d0/njyxhryn72s1x9f5zqvr4dj80000gn/T/ics319

    flow 8f2638df936d3f91 0 0 0 8f2638df936d4059 0/var/run/mDNSResponder 0

    flow 8f2638df936d4059 0 0 0 8f2638df936d3f91 0 0

    flow 8f2638df936d4121 0 0 0 8f2638df936d41e9 0/var/run/mDNSResponder 0

    flow 8f2638df936d41e9 0 0 0 8f2638df936d4121 0 0

    flow 8f2638df936d42b1 0 0 0 8f2638df936d4379 0/var/run/mDNSResponder 0

    flow 8f2638df936d4379 0 0 0 8f2638df936d42b1 0 0

    flow 8f2638df936d4829 0 0 0 8f2638df936d48f1 0/var/run/mDNSResponder 0

    flow 8f2638df936d48f1 0 0 0 8f2638df936d4829 0 0

    flow 8f2638df936d49b9 0 0 0 8f2638df936d4a81 0/var/run/mDNSResponder 0

    flow 8f2638df936d4a81 0 0 0 8f2638df936d49b9 0 0

    flow 8f2638df936d4b49 0 0 0 8f2638df936d4c11 0/var/run/mDNSResponder 0

    flow 8f2638df936d4c11 0 0 0 8f2638df936d4b49 0 0

    flow 8f2638df936d4cd9 0 0 0 8f2638df936d5189 0/var/run/mDNSResponder 0

    flow 8f2638df936d5189 0 0 0 8f2638df936d4cd9 0 0

    flow 8f2638df936d50c1 0 8f2638df958edb59 0 0 0 0/var/folders/d0/njyxhryn72s1x9f5zqvr4dj80000gn/T/icssuis501

    flow 8f2638df936d4da1 0 0 0 8f2638df936d4e69 0 0

    flow 8f2638df936d4e69 0 0 0 8f2638df936d4da1 0 0

    flow 8f2638df936d5251 0 0 0 8f2638df936d5319 0/var/run/mDNSResponder 0

    flow 8f2638df936d5319 0 0 0 8f2638df936d5251 0 0

    flow 8f2638df936d5701 0 0 0 8f2638df936d5639 0/var/run/mDNSResponder 0

    flow 8f2638df936d5639 0 0 0 8f2638df936d5701 0 0

    flow 8f2638df936d61f1 0 0 0 8f2638df936d5f99 0/var/run/mDNSResponder 0

    flow 8f2638df936d5f99 0 0 0 8f2638df936d61f1 0 0

    flow 8f2638df91078951 0 8f2638df943f2e29 0 0 0 0 /private/tmp/com.apple.launchd.CAz0UFhoZV/Listeners

    flow 8f2638df91078569 0 8f2638df943f3009 0 0 0 0 /private/tmp/com.apple.launchd.Zzyv4tA7E7/Render

    flow 8f2638df936d5e09 0 8f2638df93c84f19 0 0 0 0 /var/tmp/filesystemui.socket

    flow 8f2638df936d5891 0 0 0 8f2638df936d5959 0/var/run/mDNSResponder 0

    flow 8f2638df936d5959 0 0 0 8f2638df936d5891 0 0

    flow 8f2638df936d5a21 0 0 0 8f2638df936d5ed1 0/var/run/mDNSResponder 0

    flow 8f2638df936d5ed1 0 0 0 8f2638df936d5a21 0 0

    flow 8f2638df936d5d41 0 0 0 8f2638df936d5c79 0/var/run/mDNSResponder 0

    flow 8f2638df936d5c79 0 0 0 8f2638df936d5d41 0 0

    flow 8f2638df936d62b9 0 0 0 8f2638df910783d9 0/var/run/mDNSResponder 0

    flow 8f2638df910783d9 0 0 0 8f2638df936d62b9 0 0

    flow 8f2638df910784a1 0 8f2638df936c55b9 0 0 0 0 /private/tmp/com.carbonite.socket

    flow 8f2638df91079b49 0 8f2638df93650f19 0 0 0 0 /var/tmp/.wmp4

    flow 8f2638df91078c71 0 0 0 8f2638df91078d39 0/var/run/mDNSResponder 0

    flow 8f2638df91078d39 0 0 0 8f2638df91078c71 0 0

    flow 8f2638df91078f91 0 0 0 8f2638df91079059 0/var/run/mDNSResponder 0

    flow 8f2638df91079059 0 0 0 8f2638df91078f91 0 0

    flow 8f2638df91079441 0 0 0 8f2638df91079509 0/var/run/mDNSResponder 0

    flow 8f2638df91079509 0 0 0 8f2638df91079441 0 0

    flow 8f2638df910795d1 0 0 0 8f2638df91079699 0/var/run/mDNSResponder 0

    flow 8f2638df91079699 0 0 0 8f2638df910795d1 0 0

    flow 8f2638df910798f1 0 0 0 8f2638df910799b9 0/var/run/mDNSResponder 0

    flow 8f2638df910799b9 0 0 0 8f2638df910798f1 0 0

    flow 8f2638df91079c11 0 0 0 8f2638df91079cd9 0 0

    flow 8f2638df91079cd9 0 0 0 8f2638df91079c11 0 0

    flow 8f2638df91079da1 0 0 0 8f2638df91079e69 0/var/run/mDNSResponder 0

    flow 8f2638df91079e69 0 0 0 8f2638df91079da1 0 0

    flow 8f2638df9107a4a9 0 8f2638df924896a9 0 0 0 0/var/run/pppconfd

    flow 8f2638df9107a701 0 8f2638df91419e29 0 0 0 0/private/var/run/cupsd

    flow 8f2638df9107a7c9 0 8f2638df913e7e29 0 0 0 0/var/run/usbmuxd

    flow 8f2638df9107a891 0 8f2638df913b91e9 0 0 0 0 /var/run/systemkeychaincheck.socket

    flow 8f2638df9107a959 0 8f2638df91390b59 0 0 0 0 /var/run/portmap.socket

    flow 8f2638df9107aa21 0 8f2638df913912d9 0 0 0 0 /var/run/vpncontrol.sock

    flow 8f2638df9107aae9 0 8f2638df9133a6a9 0 0 0 0/var/CPP/ncacn_np/wkssvc

    flow 8f2638df9107abb1 0 8f2638df9133a799 0 0 0 0/var/CPP/ncalrpc/wkssvc

    flow 8f2638df9107ac79 0 8f2638df9133aa69 0 0 0 0/var/CPP/ncacn_np/srvsvc

    flow 8f2638df9107ad41 0 8f2638df9133ac49 0 0 0 0/var/CPP/ncalrpc/srvsvc

    flow 8f2638df9107ae09 0 8f2638df9133ae29 0 0 0 0/var/CPP/ncalrpc/NETLOGON

    flow 8f2638df9107aed1 0 8f2638df9133b009 0 0 0 0/var/CPP/ncacn_np/mdssvc

    flow 8f2638df9107af99 0 8f2638df9133b2d9 0 0 0 0/var/CPP/ncacn_np/lsarpc

    flow 8f2638df9107b061 0 8f2638df913315b9 0 0 0 0/var/CPP/ncalrpc/lsarpc

    flow 8f2638df9107b129 0 8f2638df91332009 0 0 0 0/var/run/mDNSResponder

    8f2638df994f3441 Dgram 0 0 0 8f2638df953930c1 8f2638df953930c1 0

    8f2638df953930c1 Dgram 0 0 0 8f2638df994f3441 8f2638df994f3441 0

    8f2638df994f3829 Dgram 0 0 0 8f2638df95393891 8f2638df95393891 0

    8f2638df95393891 Dgram 0 0 0 8f2638df994f3829 8f2638df994f3829 0

    8f2638df953934a9 Dgram 0 0 0 8f2638df95392441 8f2638df95392441 0

    8f2638df95392441 Dgram 0 0 0 8f2638df953934a9 8f2638df953934a9 0

    8f2638df9ac95cd9 Dgram 0 0 0 8f2638df9ac96c79 8f2638df9ac96c79 0

    8f2638df9ac96c79 Dgram 0 0 0 8f2638df9ac95cd9 8f2638df9ac95cd9 0

    8f2638df994f4251 Dgram 0 0 0 8f2638df994f51f1 8f2638df994f51f1 0

    8f2638df994f51f1 Dgram 0 0 0 8f2638df994f4251 8f2638df994f4251 0

    8f2638df966c7b49 Dgram 0 0 0 8f2638df9107b2b9 0 8f2638df9ac96639

    8f2638df95393701 Dgram 0 0 0 8f2638df9ac944a1 8f2638df9ac944a1 0

    8f2638df9ac944a1 Dgram 0 0 0 8f2638df95393701 8f2638df95393701 0

    8f2638df9ac95a81 Dgram 0 0 0 8f2638df9ac94951 8f2638df9ac94951 0

    8f2638df9ac94951 Dgram 0 0 0 8f2638df9ac95a81 8f2638df9ac95a81 0

    8f2638df9ac952b1 Dgram 0 0 0 8f2638df9ac94e01 8f2638df9ac94e01 0

    8f2638df9ac94e01 Dgram 0 0 0 8f2638df9ac952b1 8f2638df9ac952b1 0

    8f2638df9ac95ff9 Dgram 0 0 0 8f2638df966c6c71 8f2638df966c6c71 0

    8f2638df966c6c71 Dgram 0 0 0 8f2638df9ac95ff9 8f2638df9ac95ff9 0

    8f2638df9ac963e1 Dgram 0 0 0 8f2638df9ac96251 8f2638df9ac96251 0

    8f2638df9ac96251 Dgram 0 0 0 8f2638df9ac963e1 8f2638df9ac963e1 0

    8f2638df9ac96891 Dgram 0 0 0 8f2638df9ac967c9 8f2638df9ac967c9 0

    8f2638df9ac967c9 Dgram 0 0 0 8f2638df9ac96891 8f2638df9ac96891 0

    8f2638df9ac96639 Dgram 0 0 0 8f2638df9107b2b9 0 8f2638df9ac96d41

    8f2638df9ac96701 Dgram 0 0 0 8f2638df966c7441 8f2638df966c7441 0

    8f2638df966c7441 Dgram 0 0 0 8f2638df9ac96701 8f2638df9ac96701 0

    8f2638df9ac96ae9 Dgram 0 0 0 8f2638df9ac96a21 8f2638df9ac96a21 0

    8f2638df9ac96a21 Dgram 0 0 0 8f2638df9ac96ae9 8f2638df9ac96ae9 0

    8f2638df9ac96d41 Dgram 0 0 0 8f2638df9107b2b9 0 8f2638df966c8bb1

    8f2638df966c7c11 Dgram 0 0 0 8f2638df966c66f9 8f2638df966c66f9 0

    8f2638df966c66f9 Dgram 0 0 0 8f2638df966c7c11 8f2638df966c7c11 0

    8f2638df966c63d9 Dgram 0 0 0 8f2638df936d4699 8f2638df936d4699 0

    8f2638df936d4699 Dgram 0 0 0 8f2638df966c63d9 8f2638df966c63d9 0

    8f2638df936d3889 Dgram 0 0 0 8f2638df936d5bb1 8f2638df936d5bb1 0

    8f2638df936d5bb1 Dgram 0 0 0 8f2638df936d3889 8f2638df936d3889 0

    8f2638df936d54a9 Dgram 0 0 0 8f2638df966c7761 8f2638df966c7761 0

    8f2638df966c7761 Dgram 0 0 0 8f2638df936d54a9 8f2638df936d54a9 0

    8f2638df966c75d1 Dgram 0 0 0 8f2638df936d5571 8f2638df936d5571 0

    8f2638df936d5571 Dgram 0 0 0 8f2638df966c75d1 8f2638df966c75d1 0

    8f2638df966c6631 Dgram 0 0 0 8f2638df936d3951 8f2638df936d3951 0

    8f2638df936d3951 Dgram 0 0 0 8f2638df966c6631 8f2638df966c6631 0

    8f2638df936d3ae1 Dgram 0 0 0 8f2638df966c71e9 8f2638df966c71e9 0

    8f2638df966c71e9 Dgram 0 0 0 8f2638df936d3ae1 8f2638df936d3ae1 0

    8f2638df966c92b9 Dgram 0 0 0 8f2638df966c7ff9 8f2638df966c7ff9 0

    8f2638df966c7ff9 Dgram 0 0 0 8f2638df966c92b9 8f2638df966c92b9 0

    8f2638df9ac96f99 Dgram 0 0 0 8f2638df9ac97061 8f2638df9ac97061 0

    8f2638df9ac97061 Dgram 0 0 0 8f2638df9ac96f99 8f2638df9ac96f99 0

    8f2638df966c8e09 Dgram 0 0 0 8f2638df966c7a81 8f2638df966c7a81 0

    8f2638df966c7a81 Dgram 0 0 0 8f2638df966c8e09 8f2638df966c8e09 0

    8f2638df966c7e69 Dgram 0 0 0 8f2638df966c79b9 8f2638df966c79b9 0

    8f2638df966c79b9 Dgram 0 0 0 8f2638df966c7e69 8f2638df966c7e69 0

    8f2638df966c6ae1 Dgram 0 0 0 8f2638df966c6ba9 8f2638df966c6ba9 0

    8f2638df966c6ba9 Dgram 0 0 0 8f2638df966c6ae1 8f2638df966c6ae1 0

    8f2638df966c7cd9 Dgram 0 0 0 8f2638df966c7509 8f2638df966c7509 0

    8f2638df966c7509 Dgram 0 0 0 8f2638df966c7cd9 8f2638df966c7cd9 0

    8f2638df936d36f9 Dgram 0 0 0 8f2638df966c9129 8f2638df966c9129 0

    8f2638df966c9129 Dgram 0 0 0 8f2638df936d36f9 8f2638df936d36f9 0

    8f2638df966c8639 Dgram 0 0 0 8f2638df966c8891 8f2638df966c8891 0

    8f2638df966c8891 Dgram 0 0 0 8f2638df966c8639 8f2638df966c8639 0

    8f2638df966c8bb1 Dgram 0 0 0 8f2638df9107b2b9 0 8f2638df936d4761

    8f2638df936d4761 Dgram 0 0 0 8f2638df9107b2b9 0 8f2638df9107a0c1

    8f2638df936d3c71 Dgram 0 0 0 8f2638df936d3d39 8f2638df936d3d39 0

    8f2638df936d3d39 Dgram 0 0 0 8f2638df936d3c71 8f2638df936d3c71 0

    8f2638df936d4441 Dgram 0 0 0 8f2638df936d4509 8f2638df936d4509 0

    8f2638df936d4509 Dgram 0 0 0 8f2638df936d4441 8f2638df936d4441 0

    8f2638df91078889 Dgram 0 0 0 8f2638df936d57c9 8f2638df936d57c9 0

    8f2638df936d57c9 Dgram 0 0 0 8f2638df91078889 8f2638df91078889 0

    8f2638df910787c1 665 8f2638df93ab3e29 Dgram 0 0 0 0/var/tmp/LogMeIn/AgentSignals/startguiagentsocket

    8f2638df91078631 Dgram 0 0 0 8f2638df910786f9 8f2638df910786f9 0

    8f2638df910786f9 Dgram 0 0 0 8f2638df91078631 8f2638df91078631 0

    8f2638df91078a19 Dgram 0 0 0 8f2638df91079a81 8f2638df91079a81 0

    8f2638df91079a81 Dgram 0 0 0 8f2638df91078a19 8f2638df91078a19 0

    8f2638df91078e01 Dgram 0 0 0 8f2638df91078ec9 8f2638df91078ec9 0

    8f2638df91078ec9 Dgram 0 0 0 8f2638df91078e01 8f2638df91078e01 0

    8f2638df91079121 Dgram 0 0 0 8f2638df910791e9 8f2638df910791e9 0

    8f2638df910791e9 Dgram 0 0 0 8f2638df91079121 8f2638df91079121 0

    8f2638df910792b1 Dgram 0 0 0 8f2638df91079379 8f2638df91079379 0

    8f2638df91079379 Dgram 0 0 0 8f2638df910792b1 8f2638df910792b1 0

    8f2638df91079761 Dgram 0 0 0 8f2638df91079829 8f2638df91079829 0

    8f2638df91079829 Dgram 0 0 0 8f2638df91079761 8f2638df91079761 0

    8f2638df9107a0c1 Dgram 0 0 0 8f2638df9107b2b9 0 8f2638df9107b1f1

    8f2638df9107a189 Dgram 0 0 0 8f2638df9107a251 8f2638df9107a251 0

    8f2638df9107a251 Dgram 0 0 0 8f2638df9107a189 8f2638df9107a189 0

    8f2638df9107a319 Dgram 0 0 0 8f2638df9107a3e1 8f2638df9107a3e1 0

    8f2638df9107a3e1 Dgram 0 0 0 8f2638df9107a319 8f2638df9107a319 0

    8f2638df9107a571 Dgram 0 0 0 8f2638df9107a639 8f2638df9107a639 0

    8f2638df9107a639 Dgram 0 0 0 8f2638df9107a571 8f2638df9107a571 0

    8f2638df9107b1f1 Dgram 0 0 0 8f2638df9107b2b9 0 0

    8f2638df9107b2b9 dgram 0 0 8f2638df910515b9 0 8f2638df966c7b49 0/private / / var/run/syslog

    Control registered kernel modules

    flags pcbcount rcvbuf sndbuf name identity

    1 9 0 131072 8192 com.apple.flow - divert

    2 1 1 16384 2048 com.apple.nke.sockwall

    3 9 0 524288 524288 com.apple.content - filter

    4 9 0 8192 2048 com.apple.packet - mangler

    5 1 1 65536 65536 com.apple.net.necp_control

    6 9 0 524288 524288 com.apple.net.utun_control

    7 1 0 65536 65536 com.apple.net.ipsec_control

    8 0 17 8192 2048 com.apple.netsrc

    9 18 0 8192 2048 com.apple.network.statistics

    a 5 0 8192 2048 com.apple.network.tcp_ccdebug

    Event active kernel Sockets

    Proto Recv-Q Send-Q vendor class Subcla

    kevt 0 0 1 6 1

    kevt 0 0 1 6 1

    kevt 0 0 1 6 1

    kevt 0 0 1 1 2

    kevt 0 0 1 6 1

    kevt 0 0 1 6 1

    kevt 0 0 1 6 1

    kevt 0 0 1 6 1

    kevt 0 0 1 6 1

    kevt 0 0 1 1 2

    kevt 0 0 1 6 1

    kevt 0 0 1 1 10

    kevt 0 0 1001 5 11

    kevt 0 0 1 1 1

    kevt 0 0 1 1 2

    kevt 0 0 1 6 1

    kevt 0 0 1 1 0

    Takeovers of active nucleus

    Name identity, unit of Proto Recv-Q Send-Q

    KCTL 0 0 1 2 com.apple.nke.sockwall

    KCTL 0 0 1 5 com.apple.net.necp_control

    KCTL 0 0 1 8 com.apple.netsrc

    KCTL 0 0 2 8 com.apple.netsrc

    KCTL 0 0 3 8 com.apple.netsrc

    KCTL 0 0 4 8 com.apple.netsrc

    KCTL 0 0 5 8 com.apple.netsrc

    KCTL 0 0 6 8 com.apple.netsrc

    KCTL 0 0 7 8 com.apple.netsrc

    KCTL 0 0 8 8 com.apple.netsrc

    KCTL 0 0 9 8 com.apple.netsrc

    KCTL 0 0 10 8 com.apple.netsrc

    KCTL 0 0 11 8 com.apple.netsrc

    com.Apple.netsrc 0 0 12 8 kctl

    KCTL 0 0 13 8 com.apple.netsrc

    com.Apple.netsrc 0 0 15 8 kctl

    KCTL 0 0 16 8 com.apple.netsrc

    KCTL 0 0 17 8 com.apple.netsrc

    KCTL 0 0 18 8 com.apple.netsrc

    Robert-*-MacBook: ~ robert * l:l:l:lovati $

    -bash: l:l:l:lovati: command not found

    Robert-*-MacBook: ~ robert * $

    Robert-*-MacBook: ~ robert * $ place: Japan

    -bash: location: Japan: command not found

    Robert-*-MacBook: ~ robert * $ identity is stolen

    -bash: identity: command not found

    Robert-*-MacBook: ~ robert * $ nnnwtwoek is compromised

    -bash: nnnwtwoek: command not found

    Robert-*-MacBook: ~ robert * $ email is compromised

    -bash: E-mail: command not found

    Robert-*-MacBook: ~ robert * worm $ found

    -bash: worm: command not found

    Robert-*-MacBook: ~ robert * koobdace $ found

    -bash: koobdace: command not found

    Robert-*-MacBook: ~ robert * $

    < email and personal information under the direction of the host >

    Wipe the HARD drive and reinstall the OS x.  If you have the time Machine, you can reinstall everything using an installation date before the intrusion.

    Change all passwords and connect with all financial institutions for new cards.

    You must assume the worst to protect you.

    Ciao.

  • The manufacturer custom driver cannot be updated.

    Hello, my computer is a HP p6642f with windows 7 64-bit OS.  I need to update my graphics card for games, I tried to update my HP graphics card but the version on my computer shipped with is the latest version, as the HP 8.15.10.2119 as dated 20/04/2010.  I do not exactly know what graphics card I have, my dxdiag says;

    System

    Information System

    Current date/time: December-12-26 19:07:40

    Computer name: OWNER-HP

    Operating system: Windows 7 Home Premium 64-bit (6.1, Build 7600)

    Language: English (regional setting: English)

    Manufacturer: Hewlett-Packard

    System model: p6642f

    BIOS: 12/07/10 14:03:04 worm: 6.12

    Processor: Intel Core I5 CPU 650 @ 3.20 GHz (4 CPUs), ~3.2GHz

    Memory: RAM 6144MB

    Page file: 6649MB used, 5106 MB of available space

    DirectX version: DirectX 11

    Display

    Device

    Name: Intel(r) HD Graphics

    Manufacturer: Intel Corporation

    Chip type: Intel(r) HD Graphics (Core I5)

    DAC type: internal

    Memory total approx. : 1760 MB

    Current display mode: 1680 x 1050 (32 bit) (59Hz)

    Monitor: generic PnP monitor

    Drivers

    Driver: igdum64.dll, igd10um64.dll, igdumd >

    Version: 8.15.10.2119

    Date: 20/04/10 21:18:38

    WHQL Logo would be: n/a

    DDI version: 10

    WDDM 1.1 driver model

    What I need to know is what graphics card I have the latest update what are not compatible and how to install the new version, the driver from the manufacturer to measure.  Any help will be greatly appreciated.  I got 2 games for Christmas, DOOM 3 BFG edition and limited edition of Medal of Honor Warfighter.  Will not run and I suspect that my graphics card update can fix these two problems.  When I try to load edition BFG DOOM 3, I get the message:

    'Unable to initialize OpenGl' followed;

    Timing QA INIT: 000124ms
    D3BFG 1.1400 win - x 86 November 9, 2012 10:38:21
    3192 MHz Intel CPU with MMX, SSE and SSE2 and SSE3 & HTT
    5872 MB of memory
    -1284 MB of video memory
    Winsock initialized
    Found interface: {F9AFD013-48F7-493D-9C22-4B7CE725EA9F} Microsoft Virtual WiFi Miniport Adapter - 0.0.0.0 netmask NULL - skipped
    Found interface: {79F8D309-CA49-4F2A-91FB-E5E15A263ED0} Realtek PCIe GBE Family Controller - 192.168.0.43/255.255.255.0
    Found interface: {C4E9EFF8-DC43-4D3A-BD95-6E8012AB6738} 802.11n Wireless LAN Card - 0.0.0.0 netmask NULL - skipped
    Sys_InitNetworking: adding loopback interface
    Doom using MMX and SSE SIMD processing
    flush to zero mode
    anomalies-zero mode are enabled
    -Initialization of file system-
    Loaded resource file _Common.resources
    Loaded resource file _Ordered.resources
    Loaded resource file _Sound_pc.resources
    Loaded resource file _Sound_pc_gr.resources
    Reading resource CRC...
    Current search path:
    C:\Program Files (x 86) \Steam\steamapps\common\DOOM 3 Edition/basis of BFG
    C:\Users\owner\Saved Games\id Software\DOOM 3 BFG/base
    file system is initialized.
    --------------------------------------
    WARNING: Could not open the resource file maps/_startup.resources
    -Initialization Decls-
    ------------------------------
    Failed to open the log files
    execing default.cfg
    could not exec D3BFGConfig.cfg
    couldn't exec autoexec.cfg
    -R_InitOpenGL-
    The initialization of the OpenGL subsystem with velocity: 0 stereo: 0 fullscreen:1
    .. whose window class
    .. that fake window class
    .. .initializing LHQ
    .. .calling LoadLibrary ("opengl32"): succeeded
    X.. WGL_EXT_swap_control_tear not found
    display device: 0
    DeviceName: \\.\DISPLAY1
    DeviceString: Intel(r) HD Graphics
    StateFlags: 0 x 8000005
    DeviceID: PCI VEN_8086 & DEV_0042 & SUBSYS_2A9C103C & REV_18
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Video\{A8527AB9-54FB-49BE-BF2F-02D86CE8A950}\0000
    DeviceName: \\.\DISPLAY1\Monitor0
    DeviceString: Generic PnP monitor
    StateFlags: 0 x 3
    Device ID: MONITOR\HWP2654\ {4d36e96e-e325-11ce-bfc1-08002be10318} \0002
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Class\{4d36e96e-e325-11ce-bfc1-08002be10318}\0002
    dmPosition.x: 0
    dmPosition.y: 0
    dmBitsPerPel: 32
    dmPelsWidth: 640
    dmPelsHeight: 480
    dmDisplayFlags: 0x0
    dmDisplayFrequency: 59
    .. .calling CDs: ok
    display device: 0
    DeviceName: \\.\DISPLAY1
    DeviceString: Intel(r) HD Graphics
    StateFlags: 0 x 8000005
    DeviceID: PCI VEN_8086 & DEV_0042 & SUBSYS_2A9C103C & REV_18
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Video\{A8527AB9-54FB-49BE-BF2F-02D86CE8A950}\0000
    DeviceName: \\.\DISPLAY1\Monitor0
    DeviceString: Generic PnP monitor
    StateFlags: 0 x 3
    Device ID: MONITOR\HWP2654\ {4d36e96e-e325-11ce-bfc1-08002be10318} \0002
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Class\{4d36e96e-e325-11ce-bfc1-08002be10318}\0002
    dmPosition.x: 0
    dmPosition.y: 0
    dmBitsPerPel: 32
    dmPelsWidth: 1280
    dmPelsHeight: 720
    dmDisplayFlags: 0x0
    dmDisplayFrequency: 60
    .. .created window @ 0,0 (1280 x 720)
    Initialization of the OpenGL driver
    ... SetPixelFormat failed
    Closure of the OpenGL subsystem
    ... wglMakeCurrent (NULL, NULL): failure
    .. .releasing DC: failure
    .. .resetting display
    .. .shutting to the low LHQ
    .. .unloading OpenGL DLL
    The initialization of the OpenGL subsystem with velocity: 0 stereo: 0 fullscreen:1
    .. .initializing LHQ
    .. .calling LoadLibrary ("opengl32"): succeeded
    X.. WGL_EXT_swap_control_tear not found
    display device: 0
    DeviceName: \\.\DISPLAY1
    DeviceString: Intel(r) HD Graphics
    StateFlags: 0 x 8000005
    DeviceID: PCI VEN_8086 & DEV_0042 & SUBSYS_2A9C103C & REV_18
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Video\{A8527AB9-54FB-49BE-BF2F-02D86CE8A950}\0000
    DeviceName: \\.\DISPLAY1\Monitor0
    DeviceString: Generic PnP monitor
    StateFlags: 0 x 3
    Device ID: MONITOR\HWP2654\ {4d36e96e-e325-11ce-bfc1-08002be10318} \0002
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Class\{4d36e96e-e325-11ce-bfc1-08002be10318}\0002
    dmPosition.x: 0
    dmPosition.y: 0
    dmBitsPerPel: 32
    dmPelsWidth: 1680
    dmPelsHeight: 1050
    dmDisplayFlags: 0x0
    dmDisplayFrequency: 59
    .. .calling CDs: ok
    display device: 0
    DeviceName: \\.\DISPLAY1
    DeviceString: Intel(r) HD Graphics
    StateFlags: 0 x 8000005
    DeviceID: PCI VEN_8086 & DEV_0042 & SUBSYS_2A9C103C & REV_18
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Video\{A8527AB9-54FB-49BE-BF2F-02D86CE8A950}\0000
    DeviceName: \\.\DISPLAY1\Monitor0
    DeviceString: Generic PnP monitor
    StateFlags: 0 x 3
    Device ID: MONITOR\HWP2654\ {4d36e96e-e325-11ce-bfc1-08002be10318} \0002
    DeviceKey: \Registry\Machine\System\CurrentControlSet\Control\Class\{4d36e96e-e325-11ce-bfc1-08002be10318}\0002
    dmPosition.x: 0
    dmPosition.y: 0
    dmBitsPerPel: 32
    dmPelsWidth: 1280
    dmPelsHeight: 720
    dmDisplayFlags: 0x0
    dmDisplayFrequency: 60
    .. .created window @ 0,0 (1280 x 720)
    Initialization of the OpenGL driver
    ... SetPixelFormat failed
    Closure of the OpenGL subsystem
    ... wglMakeCurrent (NULL, NULL): failure
    .. .releasing DC: failure
    .. .resetting display
    .. .shutting to the low LHQ
    .. .unloading OpenGL DLL
    Unknown command "vid_restart".
    Cannot initialize OpenGL
    Closure of the OpenGL subsystem
    .. .shutting to the low LHQ

    And when I try to load Warfighter of Medal of Honor Limited Edition I get a window saying:

    'Creation of device DirectX error' followed;

    Could not create D3D device of at least version 10.0 on card 'Intel(r) HD Graphics' chauffeur 'unknown '.  The error is DXGI_ERROR_UNSUPORTED ('East.').

    This is usually casued by not only not the minimum required DirectX support in the GPU.

    For the NVIDIA GPU, DirectX 10.0 support is required.

    For AMD and GPU by other sellers, DirectX 10.1 support is required.

    Okay, for Medal of Honor veteran it says my graphics processor does not support DirectX 10.1, but the fact is that I have direct X 11 which contains everything contains DirectX 10.1.  So I guess DirectX or Medal of Honor Warfighter is looking on behalf of my video card, comparing it to a list of compatible cards, my card has been customized by the manufacturer is not on the list, and if he refuses to try to load DirectX or Medal of Honor Warfighter?  I don't know if there is another way to fix it would be great, but I really want to update my video card.  I heard that the update one driver custom manufacturer can casue instability, but I'm willing to take the risk.  If I can't get a solution to my problem here, I would at least know what is my model of graphics card other than just "Intel(r) HD Graphics (core I5)" so that I can continue the search on my own.

    Here are the specifications of your desktop HP Pavilion p6642f. According to specifications, your computer has integrated Intel HD Graphics using the Intel H57 chipset (when a compatible CPU is installed). There is no driver that will allow you to play these games with the integrated graphic solution effectively very low power that is in your computer. The only way you will get to play these games, is to buy a new game rated PCIe x 16 graphics card and a new PSU rated for the graphics card. Please see 'selection of a discrete video card Dave_G Guide' for more useful information on this subject.

  • HP t5740e problem update the Bios to v1.04

    Hello

    Sorry for my bad English, I speak french.

    I have HP t5740e with Bios and Windows Embedded Standard 7 v1.03

    I followed the tutorial from HP.

    I boot properly from the USB and I run Flash.bat but nothing happens.

    In the batch file, I have:

    AFUDOS 40HV0104.rom/P/B/N/C/K/R/l2/reboot

    When I do it manually ( C:\ > afudos 40HV0104.rom/P/B/N/C/K/R/l2/reboot ) without the batch file, I

    Error: unknown command

    I need help.

    Concerning

    I just tried to use back regular to microsoft (win98) and the flash.bat works very well. There could be a problem of incompatibility between the afudos and freedos utility you are using.

    Have you tried flashing the BIOS from the thin client OS (WES7) using WFlash (afuwin.exe)?

  • Error 0x800cc90 & 0x800ccc18 when try to connect to Yahoo email

    original title: Error Message 0x800cc90 & 0x800ccc18

    I can't get emails, when I try I get this message. Unable to connect to the server using secure password authentication. Account: 'pop.att.yahoo.com', server: 'pop.att.yahoo.com', Protocol: POP3, server response: '-ERR popgate unknown command', Port: 995, secure (SSL): Yes, Server error: 0x800CCC90, error number: 0x800CCC18

    I assume you are using Outlook Express even though he is an Internet Explorer forum? The error message says it all. Uncheck: secure password authentication.

    How to read Yahoo! Mail Plus using Outlook Express
  • Mystery in the bin file will not go away

    I need help with a problem of recycler. If I right-click and empty basket, I get an "access denied" message with a strange file name. I started in safe mode, I tried the "rd /s c:\recycler' command and got the following:
    "access denied that the file is being used by another process."
    I went in the recycler directory and there seems to be NO files, just 2 directories:
    C:\recycler\S-1-5-~1\Dc56 ".
    I can not delete attributes or delete those directories because 'the file is used by another process ".
    How can I end the process, then I can get rid of this file? It's annoying getting the access denied message WHENEVER I clean the trash.
    Any help will be greatly appreciated.
    Thanks in advance and best regards,
    Win XP Pro SP3
    MG

    OK, thanks for all the replies.

    Yes, I always logged as an administrator when you are trying to clean up.

    I think THAT I got it now...!

    The thing that did it was to run assassin file Malwarebytes in Mode safe and clean everything in the trash. It SEEMS to have disappeared now, the basket seems to be empty.  Just to be safe, I'm going to start in safe mode and seem to if it's still hiding in there.

    The recycler doesn't seem to work properly. I'll post if necessary.

    Thanks again for the help, much appreciated. A special thank you to the unknown command me and pass ("dir/x")

    Best regards

    Morey

  • My records with email windows

    my email for windows in windows vista will not receive or send emails. I tried everything I can think of. The error message that appears is: 'pop.cogeco.ca', server: 'pop.cogeco.ca', Protocol: POP3, server response: '-ERR unknown command ', Port: 110, secure (SSL): no, Server error: 0x800CCC90, error number: 0x800CCC18:. How to bring back my email?

    This account has already worked?

    Tools | This e-mail account of accounts | Properties | Servers tab. Is ' logon with password verified? Uncheck the box.

    Make sure that your setting reflect what is shown here.
    http://COGECO.skootu.com/2010/03/05/Cogeco-email-setup-Windows-Mail/

  • How to set up windows live mail for a yahoo account

    I followed the direction and I get this error message account: 'Yahoo', server: 'pop.mail.yahoo.com', Protocol: POP3, server response: '-ERR popgate unknown command', Port: 110, secure (SSL): no, Server error: 0x800CCC90, error number: 0x800CCC18 what I am doing wrong

    http://www.freeemailtutorials.com/windowsLiveMail/setupEmailAccounts/setupYahooMailAccount.htm

Maybe you are looking for

  • Qosmio G50 12 q - installation of windows 7

    Toshiba Qosmio G50-12 q - whit windows vista Ultimate 32 bit I could install windows 7 in replace of windows vista ultimate, unless they prove details incompatibility with device or another drive? The Toshiba site is written that the Qosmio g50 with

  • Samsung U28d590 + Mac Pro 2013

    Hello world. I have a Mac Pro 2013 AMD over-pants D300 2048 graphics card. I use a Samsung 4 k U28D590 connected via DisplayPort / Thunderbolt, to change 4 k video. The display works fine but if I use the maximum resolution (3840 x 2160) all the icon

  • synchronization of e-mail account on ipad mini 4 and ipad 2

    I have a ipad 2 iOS 9.2 and set up an orange email account that works - I just got a mini ipad iOS 4 9.2 and want to use the same account to synchronize the 2 machines but on the ipad mini 4 (my second ipad) I can't send e-mails from him because it t

  • SQLEXPRESS GOLDMINE

    I recently installed SQLEXPRESS on Server 2012 and also set to update to the latest version of 2014 of the gold mine. I can not connect to the GoldMine to SQL part unless I'm logged on as administrator. As I am not technical SQL, could someone let me

  • A Dual Boot Vista 32 bit / Linux solved abduction... Reassigned HDD need some info on what I see and if its OK?

    So I made a quite a bit of reasearch on remove the dual boot. I went down without losing everything. Correction of the problem starting with a window 7 CD thanks for the questions and answers that I found here. I have reallocated space with disk mana