Concerns of servcie performance with connections "Console Mode" Console

What is the maximum number of connections "VM console" can support a single ESX Server?

Can what steps I take to ensure performance as the number of users swings more than 150 at the same time?

: Pei no, I can't use remote, VNC, etc. already tried desktop. Corp Policy says nothing.

from my understanding, and I'm wrong, because I have never really tested. The guide I posted is said:

Number of remote consoles to a virtual machine 10

then, as the SSH for the COS connections may have a connection as well max, I think that a single remote console on a virtual machine would always to 10 simultaneous connections.

Tags: VMware

Similar Questions

  • Performance issue with connection of a level query

    Hi I have a problem with connection by level in oracle.

    My table is:


    J_USER_CALENDAR
    --------------------------

    USER_NAME FROM_DATE TO TO_DATE COMMENTS
    -------------------------------------------------------------------------------------------------
    Comment1 5 November 09 uma Shankar 2 November 09
    Veera 11 November 09 13 November 09 Comment2
    Commnet3 17 December 09 uma Shankar 15 December 09
    Vinod 20 October 09 21 October 09 Comments4


    The table above is the calendar of user authorization.

    Now I need to view the users who are on leave between November 1, 2009 to November 30, 2009

    The output should look like:


    USER_NAME FROM_DATE COMMENTS
    ---------------------------------------------------------------------------------
    Comment1 2 November 09 uma Shankar
    Comment1 3 November 09 uma Shankar
    Comment1 4 November 09 uma Shankar
    Comment1 5 November 09 uma Shankar
    Comment2 Veera 11 November 09
    Comment2 Veera 12 November 09
    Comment2 Veera 13 November 09

    For this, I tried with the following query, but it takes too long to run.
    Select FROM_DATE, user_name, comments from (SELECT distinct FROM_DATE, user_name,
    Comments FROM (SELECT (LEVEL) + FROM_DATE-1 FROM_DATE, TO_DATE, FIRST_NAME |) » '|| LAST_NAME
    user_name, COMMENTS OF J_USER_CALENDAR
    where
    and J_USER_CALENDAR.IS_DELETED = 0
    CONNECT BY LEVEL < = TO_DATE - FROM_DATE + 1) has) where ("FROM_DATE = 1st November 2009 ' or FROM_DATE = November 30, 2009")
    or FROM_DATE between November 1, 2009 "-November 30, 2009") order of from_Date, lower (user_name)

    Please help me.

    Thanks in advance.

    Kind regards
    Phanikanth

    I have not tried to analyze the SQL statement.

    Here is a test set in place:

    CREATE TABLE T1(
      USERNAME VARCHAR2(30),
      FROM_DATE DATE,
      TO_DATE DATE,
      COMMENTS VARCHAR2(100));
    
    INSERT INTO T1 VALUES ('Uma Shankar', '02-Nov-09','05-Nov-09','Comment1');
    INSERT INTO T1 VALUES ('Veera','11-Nov-09','13-Nov-09','Comment2');
    INSERT INTO T1 VALUES ('Uma Shankar','15-Dec-09','17-Dec-09','Commnet3');
    INSERT INTO T1 VALUES ('Vinod','20-Oct-09','21-Oct-09','Comments4');
    INSERT INTO T1 VALUES ('Mo','20-Oct-09','05-NOV-09','Comments4');
    
    COMMIT;
    

    Note that I have included an additional line, when the person starts their vacation in the previous month and ends in November.

    You could approach the problem like this:
    Assume that you want to appear every day in a given month:

    SELECT
      TO_DATE('01-NOV-2009','DD-MON-YYYY')+(ROWNUM-1) MONTH_DAY
    FROM
      DUAL
    CONNECT BY
      LEVEL<=ADD_MONTHS(TO_DATE('01-NOV-2009','DD-MON-YYYY'),1)-TO_DATE('01-NOV-2009','DD-MON-YYYY');
    

    Note that the above attempts to calculate the number of days in the month of November - if we know that the month has a certain number of days, 30 for example, you can rewrite the CONNECT BY clause like this:

    CONNECT BY
      LEVEL<=30
    

    Now, he must pick up lines of interest to the table:

    SELECT
      *
    FROM
      T1 T
    WHERE
      (T.FROM_DATE BETWEEN TO_DATE('01-NOV-2009','DD-MON-YYYY') AND TO_DATE('30-NOV-2009','DD-MON-YYYY')
        OR T.TO_DATE BETWEEN TO_DATE('01-NOV-2009','DD-MON-YYYY') AND TO_DATE('30-NOV-2009','DD-MON-YYYY'));
    
    USERNAME        FROM_DATE TO_DATE   COMMENTS
    --------------- --------- --------- ----------
    Uma Shankar     02-NOV-09 05-NOV-09 Comment1
    Veera           11-NOV-09 13-NOV-09 Comment2
    Mo              20-OCT-09 05-NOV-09 Comments4
    

    If join us then both sets of results, we have the following query:

    SELECT
      *
    FROM
      T1 T,
      (SELECT
        TO_DATE('01-NOV-2009','DD-MON-YYYY')+(ROWNUM-1) MONTH_DAY
      FROM
        DUAL
      CONNECT BY
        LEVEL<=ADD_MONTHS(TO_DATE('01-NOV-2009','DD-MON-YYYY'),1)-TO_DATE('01-NOV-2009','DD-MON-YYYY')) V
    WHERE
      (T.FROM_DATE BETWEEN TO_DATE('01-NOV-2009','DD-MON-YYYY') AND TO_DATE('30-NOV-2009','DD-MON-YYYY')
        OR T.TO_DATE BETWEEN TO_DATE('01-NOV-2009','DD-MON-YYYY') AND TO_DATE('30-NOV-2009','DD-MON-YYYY'))
      AND V.MONTH_DAY BETWEEN T.FROM_DATE AND T.TO_DATE
    ORDER BY
      USERNAME,
      MONTH_DAY;
    
    USERNAME        FROM_DATE TO_DATE   COMMENTS   MONTH_DAY
    --------------- --------- --------- ---------- ---------
    Mo              20-OCT-09 05-NOV-09 Comments4  01-NOV-09
    Mo              20-OCT-09 05-NOV-09 Comments4  02-NOV-09
    Mo              20-OCT-09 05-NOV-09 Comments4  03-NOV-09
    Mo              20-OCT-09 05-NOV-09 Comments4  04-NOV-09
    Mo              20-OCT-09 05-NOV-09 Comments4  05-NOV-09
    Uma Shankar     02-NOV-09 05-NOV-09 Comment1   02-NOV-09
    Uma Shankar     02-NOV-09 05-NOV-09 Comment1   03-NOV-09
    Uma Shankar     02-NOV-09 05-NOV-09 Comment1   04-NOV-09
    Uma Shankar     02-NOV-09 05-NOV-09 Comment1   05-NOV-09
    Veera           11-NOV-09 13-NOV-09 Comment2   11-NOV-09
    Veera           11-NOV-09 13-NOV-09 Comment2   12-NOV-09
    Veera           11-NOV-09 13-NOV-09 Comment2   13-NOV-09
    

    Charles Hooper
    IT Manager/Oracle DBA
    K & M-making Machine, Inc.

  • Switch Cisco 2960/3560 = &gt; recovery password and default settings with the button Mode

    Hi Experts,

    I have some confusion with the button Mode with cisco 2960/3560 switches.

    I read on many forums and articles, but where things are not clear.

    a place given 3 seconds and somewhere is given 7 or 10 seconds.

    Qus1), what is the exact time to press/hold Mode button to perform two following tasks:

    A. password recovery (according to my knowledge 3 sec) good or bad?

    Configuration of the switch (start + run) would be safe

    After the recovery of password? Yes or no

    B. factory default (according to my knowledge 10 dry) good or bad?

    I'm afraid, because if I press mode button more than 3 seconds, then

    It will delete any configuration of cisco switch. Yes or no

    Qus2) I want to recover the catalyst 2960/3560 switch password without

    Start/run configuration to lose. That is my main concern.

    Please tell me how to do this, what will be the time keeping Mode buttom

    in a few seconds?

    Qus3) which means this line

    "If the password recovery mechanism is disabled in switch

    then you will lose all the config.

    This sentence has been given on this forum url

    https://supportforums.Cisco.com/thread/140848

    KS

    Attach a terminal or PC with terminal emulation (for example, Hyper Terminal) port console switch.

    Use the following terminal settings:

    • Bits per second (baud): 9600

    • Data bits: 8

    • Parity: None

    • Stop bits: 1

    • Flow control: Xon/Xoff

    Note: For more information on the wiring and connection of a terminal to the console port, refer to connecting a Terminal to the Console Port of Catalyst switches.

    Unplug the power cable.

    The power switch and take it to the switch: command prompt:

    2900XL, 3500XL, 2940, 2950, 2960, 2970, 3550, 3560, and 3750 switches of the series, to do this:

    Press and hold the mode button located on the left side of the façade, while you reconnect the power cable from the switch.

    2960, 2970 Release the Mode button when the SYSTEM LED flashes orange and then turns green. When you release the Mode button, the SYSTEM LED flashes green.
    3560, 3750 Release the Mode button after about 15 seconds when the SYSTEM LED turns green. When you release the Mode button, the SYSTEM LED flashes green.

    The system was interrupted before the flash at the end file system initialization

    loading the operating system software:

    flash_init

    load_helper

    boot

    switch:

    Run the flash_init command.

    switch: flash_init Initializing Flash... flashfs[0]: 143 files, 4 directories flashfs[0]: 0 orphaned files, 0 orphaned directories flashfs[0]: Total bytes: 3612672 flashfs[0]: Bytes used: 2729472 flashfs[0]: Bytes available: 883200 flashfs[0]: flashfs fsck took 86 seconds ....done Initializing Flash. Boot Sector Filesystem (bs:) installed, fsid: 3 Parameter Block Filesystem (pb:) installed, fsid: 4 switch: !--- This output is from a 2900XL switch. Output from !--- other switches will vary slightly.

    Run the load_helper command.

    switch: load_helper switch:

    Question the dir flash: command.

    Note: Be sure to type a colon ":" after the dir flash.

    Appears in the file system of the switch:

    switch: dir flash: Directory of flash:/ 2    -rwx  1803357                  c3500xl-c3h2s-mz.120-5.WC7.bin !--- This is the current version of software. 4    -rwx  1131                     config.text !--- This is the configuration file. 5    -rwx  109                      info 6    -rwx  389                      env_vars 7    drwx  640                      html 18   -rwx  109                      info.ver 403968 bytes available (3208704 bytes used) switch: !--- This output is from a 3500XL switch. Output from !--- other switches will vary slightly.

    Type rename flash: flash: config.old config.text to rename the configuration file.

    switch: rename flash:config.text flash:config.old switch: !--- The config.text file contains the password !--- definition.

    Issue the boot command to boot the system.

    switch: boot Loading "flash:c3500xl-c3h2s-mz.120-5.WC7.bin"...############################### ################################################################################ ###################################################################### File "flash:c3500xl-c3h2s-mz.120-5.WC7.bin" uncompressed and installed, entry po int: 0x3000 executing... !--- Output suppressed. !--- This output is from a 3500XL switch. Output from other switches !--- will vary slightly.

    Enter "n" at the prompt to abort the initial configuration dialog box.

    --- System Configuration Dialog --- At any point you may enter a question mark '?' for help. Use ctrl-c to abort configuration dialog at any prompt. Default settings are in square brackets '[]'. Continue with configuration dialog? [yes/no]: n !--- Type "n" for no. Press RETURN to get started. !--- Press Return or Enter. Switch> !--- The Switch> prompt is displayed.

    At the switch prompt, type en to enter a mode.

    Switch>en Switch#

    Password recovery

    Type rename flash: config.old flash: config.text to rename the configuration file with its original name.

    Switch#rename flash:config.old flash:config.text Destination filename [config.text] !--- Press Return or Enter. Switch#

    Copy the configuration file in the memory.

    Switch#copy flash:config.text system:running-config Destination filename [running-config]? !--- Press Return or Enter. 1131 bytes copied in 0.760 secs Sw1#

    The configuration file is now reloaded.

    Replace the current passwords that you do not know. Choose a password with at least one capital letter, one number and one special character.

    Note: Replace passwords that are required. You must crush not all passwords listed.

    Sw1# conf t !--- To overwrite existing secret password Sw1(config)#enable secret !--- To overwrite existing enable password Sw1(config)#enable password !--- To overwrite existing vty password Sw1(config)#line vty 0 15 Sw1(config-line)#password Sw1(config-line)#login !--- To overwrite existing console password Sw1(config-line)#line con 0 Sw1(config-line)#password 

    Write the running configuration in the configuration file with the write memory command.

    Sw1#write memory Building configuration... [OK] Sw1#

    For factory reset:

    do not give under the control of factory reset

    Switch#copy flash:config.text system:running-config

    can I copy the running configuration to Flash

    Switch flash running-config #copy:

    Destination file name [running-config]?

    Building configuration...

    [OK]

    Switch #copy running-config startup-config

    Name of destination file [startup-config]?

    Building configuration...

    [OK]

    Review the link for more information below

    http://www.Cisco.com/en/us/products/hw/switches/ps628/products_password_recovery09186a0080094184.shtml

    Please note the useful messages.

    Concerning
    Vesta
    "Everybody is genius." But if you judge a fish by its ability to climb on a tree, he will live his entire life, believing that this is stupid. "

  • Error: "this meeting uses computer audio (VoIP), computer audio is not available with this console, which is based on the Web." To get the audio from the computer, please install the Microsoft Office Live Meeting client. »

    Hello

    I have a problem with Live meeting 2007. I'm organizing a live meeting with people from different countries. Some of them cannot hear anything and can not use the microphone. They get this kind of error:

    "This meeting uses computer audio (VoIP), computer audio is not available with this console, which is based on the Web." To get the audio from the computer, please install the Microsoft Office Live Meeting client. »

    I tried to look for a solution, but I did not understand what Live Meeting I need to download.

    Can you help me?

    Thank you.

    Original title: Live Meeting 2007

    Hi Alex,

    Thanks for posting your query in Microsoft Community.

    I understand your concern. In this case, I suggest you refer to the Microsoft TechNet article following which sets out the series of frequently asked questions related to Live Meeting 2007 and check if the solutions are useful.

    FAQ: Live Meeting related topics media

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

  • Can I connect SINGLE MODE SFP (GLC-LH-SM =) to MULTIMODE fiber which has ST connector on the side of Patch

    Can I connect SINGLE MODE SFP (GLC-LH-SM =) to cord fiber MULTIMODE which has ST connector on the other side (patch panel). What is the loss of this set?

    The short answer is Yes.

    The contours of the links up to 550mtrs on multimode fiber SFP datasheet .  You will need to use a Mode conditioning Patch Cord (CMCP) If your installed MMF is OM1 or OM2 rated, kernel 62.5 microns or 50 microns (use MMF cable connection if your fiber installed is OM3/OM4. You can buy MCPCs with hybrid connectors; LC at one end and ST on the other; available at many reputable suppliers.  My link to a hybrid CMCP is 62.5 microns MMF.

    I hope this helps.

  • Windows 8 and/or Surface Pro supports "connected standby mode?

    Hello

    I just read that ' a Windows 8.1 feature called connected standby mode, which allows computers to be put into mode 'sleep' and wake up instantly, is available today than in the 32-bit version "is the reason why" first Trail Bay tablets will use only the 32-bit version of Windows 8.1 ".»

    But if this is true, don't would then not it means that the Surface Pro running Windows 8 Pro 64 bit is therefore unable to use "connected pending"?

    I didn't notice the Surface Pro or the W700 Acer having problems coming out pending, then perhaps 'connected standby mode' is another type of sleep?  Can someone explain to me.  The "instant on" feature (the case of illusion, or for real) is what tablet users and so Windows 8.

    Our company has been delaying the replacement of our laptops Windows XP until the release of 2.4 GHz, 64 bit, 8 GB RAM, SSD 256/512, 4 G/LTE Mobile Broadband Bay Trail devices come to market.  As a benchmark, we are looking for a device (/ Ultrabook/Tablet laptop computer) that would be able to effectively deliver business applications, for example Adobe Photoshop, MS Powerpoint.  2 to 4 GB of RAM will not be enough.

    It will be Haswell devices without a fan, we have to buy these, even if they are much heavier and have reduced the battery life because it seems that it would not be until 2015 that see us peripheral Bay Trail capable business, see the articles below.

    http://www.TomsHardware.com/news/Atom-Bay-Trail-Valleyview, 19244.html
    Mobile Atom SoC stay 32-bit at least until 2015
    Somewhat surprising is the notion that Intel will keep its Silvermont Atom processor as a 32-bit platform until at least 2014. Customers who need the ability of 64-bit Atom will have to the Centerton Atom-S the microserver-based processor. It is not known if the successor of Silvermont, the 14 nm Airmont, will move to 64-bit

    https://www.NetworkWorld.com/news/2013/091213-Windows-81-tablets-with-64-bit-273770.html

    Buyers looking for a tablet with the new Bay Trail Atom from Intel chip and a 64-bit version of Windows 8.1 will have to wait until early next year.

    Intel executives said Wednesday the first Trail Bay tablets will use only the 32-bit version of Windows 8.1, despite the support of 64-bit on the chip.

    Tablets with OS 32 bit have a limit of 4 GB of DRAM memory, while 64-bit can actually support 512 GB. Most of the first tablets Trail Bay with Windows 8.1 will not more than 4 GB of memory, said Steve Smith, Vice President and Director of development for the tablet at Intel.

    "We have the capacity, now it's a matter of when a system of consumption needs, it's probably somewhere in the future, I would say that a few generations away ', said Smith.

    The reason is the limitation in the software of Microsoft, said Nathan Brookwood, principal analyst at Insight 64. A feature of Windows 8.1 and wake up instantly, called Eve connected, which allows computers to be put into mode 'sleep' is available now than in the 32-bit version.

    Microsoft adds functionality to the 8.1 Windows 64-bit, and it will be available in early 2014.

    Intel also does not feel 64-bit is required on consumer shelves, even if he knows what IT managers want 64-bit compatibility on all PCs and mobile devices in the enterprise.

    Intel is developing a smart Tablet Trail separate Bay scheduled for 64 bit versions of Windows 8.1, and the processor will be available in the first quarter of next year, said Chris Walker, Director general of tablets at Intel Mobile Communications Group.

    2 Surface Pro supports NOT connected to sleep, even if it uses the "Haswell" chip, which supports this mode.

    There is a world of difference between standby connected and traditional modes of 'Sleep' and 'put to sleep '. Basically, connected to standby mode, the system really is, but requests are suspended for most. See here for a Microsoft document that gives an introduction connected mode standby.

    I don't know why the 2 Surface Pro does not deliver sleep connected; I've seen several data, possible reasons for why this might be true:

    • The 64-bit Windows 8/8.1 version does not support it.
    • It is necessary that the material to be a fanless design (Surface Pro 2A fans).
    • It is necessary for the design to have TPM (Trusted Platform Module) version 2.0 (Surface Pro 2A version 1.2)

    Whatever the reason (and it can be one or more of the above), it is disappointing that a product of the so-called phare does not support the feature.

  • Limitations of architecture with replication of VM with physical RDM Mode

    What are the Limitations of Architecture with replication of VM connected with physical RDM Mode in vsphere replication. Why VMware does not support this?

    I will add some colors to the response of GS. A particular interest with regard to the physical path RDM (pRDM) works, summarize these two chips of the article:

    • Physical mode specifies minimal virtualization SCSI of the mapped device, allowing greater flexibility for SAN management software.
    • VMkernel passes all SCSI commands to the device, with one exception - the REPORT LUNS command is virtualized, so that the VMkernel can isolate the LUN to the virtual machine owner. Otherwise, all the physical characteristics of the underlying hardware are exposed.

    There is an integrated in vSphere vSphere (RV) replication agent that has several functions. In particular, she keeps track of the Scriptures to the virtual machine. When a replication cycle occurs, the changed data is replicated to the target location. The VR agent should be able to 'see' These Scriptures to follow. Given that the physical mode all SCSI commands directly to the device, the VR agent is unable to follow these changes for replication.

  • ISCSI performance with HP DL160 G6 and ESX 4.0

    I feel iSCSI performance with HP DL160 G6 and ESX 4.0 servers and would like to help with this.

    I have Setup iSCSI on 3 * ESX 4.0 host.

    Each have a corresponding single target and a single LUN on the SAN. The LUNS are formatted as fmfs3 types.

    Each host is connected to the QNAP San in the same way via a Gigabit switch.

    All NICs operate at 1 GB.

    To test the performance I use vmkfstools to clone a drive from the local store to the LUN

    On the first host (a DL140 G3) performance is good to 48 MB/s.

    On the 2 DL160 performance is very poor and barely reach 2 Mbps

    During cloning, DL160 servers save also on several occasions by the following in/var/log/wmkwarning:
    Vmkernel servername: 0:05:23:53.214 cpu2:4308) WARNING: NMP: nmp_DeviceRetryCommand: device 'naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx': waiting for updated status of fast path for blocked with e/s failover. No prior reservation is on the device.
    Vmkernel servername: 0:05:23:54.195 cpu3:4210) WARNING: NMP: nmp_DeviceAttemptFailover: try tipping unit "naa.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" world - order 0x4100051a20c0

    I made sure the servers are up-to-date:
    DL160 G6 Configuration:
    ESX 4.0.0 build-702116
    2 * NIC HP NC362i GB (firmware 1.7.2, driver 1.3.19.12.1)
    1 * smart Array P212 controller (firmware 5.14)

    The SAN server configuration:
    QNAP Ts-459u-rp (firmware Build 0302 T 3.6.1)

    I looked everywhere for an answer.
    I also tried the "esxcfg-advcfg - s 1/VMFS3/FailVolumeOpenIfAPD" as suggested on some positions.
    All to nothing does not.

    Any help / advice would be appreciated!

    is this software iscsi or nobody to support iscsi?

    Because all messages from vmhba0... Usually the software iscsi Setup with vmhba33 or vmhba36...

    Can you check vmhba0 keeps the volume...

  • Connect test mode requires Maintenance mode on?

    Connect test mode requires Maintenance mode on or I have apply with options = /hotpatch

    I apply a patch in test mode and its slightest mistake out gives error


    AutoPatch error:
    You must be in Maintenance Mode to apply the patches.
    You can use the AD Administration utility to set the Maintenance Mode.


    I ran command

    * apply$ adpatch = n *.

    EBS 11.5.10.2

    Maintenance mode is required for all series of adpatch where /hotpatch option is not specified.

    Maintenance - a new feature in 11.5.10 mode [ID 291901.1]

    HTH
    Srini

  • HP BL460c slow performance with Mez Qlogic FC.

    I am under 16 blades ESXi with Qlogic FC mezzanine cards.  Performance have been greate to the Build number:

    153840 on March 20, 2009.   After the upgrade to the Build number: 153875, qlogic module took more than 30 minutes to load and later all the modules load very, very slowly.  I tried every generation since March 20, and they all lead to very slow startup time and slow CF performance with lots of timeouts.

    Today, took me to update to the latest version of the HP BIOS for server, network cards, Qlogic and the ILO.  And I had no luck.  Does anyone have any suggestions?

    Thank you

    you use virtual connect and if so what version do you use?

  • Extremely slow performance with Radeon HD 7870

    Hello

    I use a number of Adobe programs on my new 64 bit system of Windows 8, with 16 GB of ram, a processor Intel Core 2.67 ghz i5 and AMD Radeon HD 7870 2 gig. All programs (including After Effects and Illustrator) work very well with the exception of Photoshop CS6 64 bits, which is extremely slow performance with GPU to use enabled in my preferences (Photoshop selects by default). If I disable the graphic processor use, this slowdown faints. If I change the Basic Design Mode, there might be a slightly detectable improvement during Normal and advanced, but it is still horribly slow. The refresh rate seems to be only a few frames per second. Everything is slow: brushes, zoom, panoramic, as well.

    I tried changing the settings I've seen suggested elsewhere: I went 2 level of Cache, history says 10 and the size of the tile to 128 k. No effect. Photoshop is currently the default using 60 percent of available ram. Efficiency has remained 100% overall of all my tests. In addition, this slow performance touched me from the moment that I installed Photoshop; It didn't arise after previous good performance. The problem exists regardless of the size or the number of documents that I opened. Performance is always terrible, even when I create a new blank canvas of 500 x 500 pixels and try a simple task like drawing with a brush.

    Photoshop is perfectly up to date, and so are my graphic drivers (Catalyst version 13.1). Any help would be greatly appreciated; yet performance is so bad in Photoshop it is unusable, graphic acceleration activated. Thanks in advance for the answer.

    Information on the system of Photoshop:

    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00) x 64

    Operating system: Windows 8 64-bit

    Version: 6.2

    System architecture: Intel CPU Family: 6, model: 14, Stepping: 5 with MMX, entire SSE, SSE, SSE2, SSE3, SSE4.1, SSE4.2 FP

    Physical processor count: 4

    Processor speed: 2665 MHz

    Built-in memory: 16379 MB

    Free memory: 13443 MB

    Memory available to Photoshop: 14697 MB

    Memory used by Photoshop: 60%

    Tile image size: 128K

    Image cache level: 2

    OpenGL drawing: enabled.

    OpenGL drawing mode: Advanced

    OpenGL allows Normal Mode: true.

    OpenGL allows Advanced Mode: true.

    OpenGL allows old GPU: not detected.

    OpenCL Version: 1.2 AMD - APP (1084.4)

    OpenGL, Version: 3.0

    Texture size video Rect: 16384

    OpenGL memory: 2048 MB

    The video card vendor: ATI Technologies Inc.

    Renderer video card: AMD Radeon HD 7800 Series

    Display: 1

    Limits of the display: top = 0, left = 0, low = 1080, right = 1920

    Video card number: 2

    Graphics card: AMD Radeon HD 7800 Series

    Driver version:

    Driver date:

    Video card driver: aticfx64.dll, aticfx64.dll, aticfx64.dll, aticfx32, aticfx32, aticfx32, atiumd64.dll, he's atidxx64.d, atidxx64.dll, atiumdag, atidxx32, atidxx32, atiumdva, atiumd6a.cap, atitmm64.dll

    Video mode: 1920 x 1080 x 4294967296 colors

    Legend of the video card: AMD Radeon HD 7800 Series

    Memory: 2048 MB

    Video card: 1

    Video card: driver Microsoft Basic Render

    Driver version: 9.12.0.0

    Driver date: 20121219000000.000000 - 000

    Video card driver:

    Video mode:

    Legend of the video card: rendering driver Microsoft Basic

    Video card memory: 0 MB

    Serial number: 90970078453021833509

    The application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64-bit).

    Temporary file path: C:\Users\RAFFAE~1\AppData\Local\Temp\

    Zero Photoshop has async I/O active

    Scratch the volumes:

    C:\, 931.5 G, 534,8 free G

    Required plugins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit) \Required\

    Main Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit) \Plug-ins\

    Additional Plug-ins folder: not defined

    Installed components:

    ACE.dll ACE 2012/06/05-15: 16: 32 66,507768 66.507768

    adbeape.dll Adobe EPA 2012/01/25-10: 04:55 66.1025012 66.1025012

    AdobeLinguistic.dll Adobe linguistic Library 6.0.0

    AdobeOwl.dll Adobe Owl 2012/09/10-12: 31: 21 5.0.4 79.517869

    AdobePDFL.dll PDFL 2011/12/12-16: 12: 37 66,419471 66.419471

    Adobe AdobePIP.dll 7.0.0.1686 product improvement program

    AdobeXMP.dll Adobe XMP Core 2012/02/06-14: 56:27 66,145661 66.145661

    AdobeXMPFiles.dll Adobe XMP files 2012/02/06-14: 56:27 66,145661 66.145661

    AdobeXMPScript.dll Adobe XMP Script 2012/02/06-14: 56:27 66,145661 66.145661

    adobe_caps.dll Adobe CAPS 6,0,29,0

    AGM.dll AGA 2012/06/05-15: 16: 32 66,507768 66.507768

    ahclient.dll AdobeHelp Dynamic Link Library 1,7,0,56

    aif_core.dll AIF 3.0 62.490293

    aif_ocl.dll AIF 3.0 62.490293

    aif_ogl.dll AIF 3.0 62.490293

    Amtlib.dll AMTLib (64-bit) 6.0.0.75 (BuildVersion: 6.0;) Brand: Monday, January 16, 2012 18:00) 1.000000

    ARE.dll ARE 2012/06/05-15: 16:32 66,507768 66.507768

    Axe8sharedexpat.dll AXE8SharedExpat 2011/12/16-15: 10: 49 66,26830 66.26830

    AXEDOMCore.dll AXEDOMCore 2011/12/16-15: 10: 49 66,26830 66.26830

    Bib.dll BIB 2012/06/05-15: 16: 32 66,507768 66.507768

    BIBUtils.dll BIBUtils 2012/06/05-15: 16: 32 66,507768 66.507768

    boost_date_time.dll product DVA 6.0.0

    boost_signals.dll product DVA 6.0.0

    boost_system.dll product DVA 6.0.0

    boost_threads.dll product DVA 6.0.0

    CG.dll NVIDIA Cg Runtime 3.0.00007

    cgGL.dll NVIDIA Cg Runtime 3.0.00007

    Adobe CIT.dll CIT 2.1.0.20577 2.1.0.20577

    CoolType.dll CoolType 2012/06/05-15: 16: 32 66,507768 66.507768

    data_flow.dll AIF 3.0 62.490293

    dvaaudiodevice.dll product DVA 6.0.0

    dvacore.dll product DVA 6.0.0

    dvamarshal.dll product DVA 6.0.0

    dvamediatypes.dll product DVA 6.0.0

    dvaplayer.dll product DVA 6.0.0

    dvatransport.dll product DVA 6.0.0

    dvaunittesting.dll product DVA 6.0.0

    Dynamiclink.dll product DVA 6.0.0

    ExtendScript.dll ExtendScript 2011/12/14-15: 08: 46 66,490082 66.490082

    FileInfo.dll Adobe XMP FileInfo 2012/01/17-15: 11: 19 66,145433 66.145433

    filter_graph.dll AIF 3.0 62.490293

    hydra_filters.dll AIF 3.0 62.490293

    icucnv40.dll International Components for Unicode 2011/11/15-16: 30:22 Build gtlib_3.0.16615

    icudt40.dll International Components for Unicode 2011/11/15-16: 30:22 Build gtlib_3.0.16615

    image_compiler.dll AIF 3.0 62.490293

    image_flow.dll AIF 3.0 62.490293

    image_runtime.dll AIF 3.0 62.490293

    JP2KLib.dll JP2KLib 2011/12/12-16: 12: 37 66,236923 66.236923

    libifcoremd.dll Intel Visual Fortran compiler 10.0 (A patch)

    libmmd.dll Intel(r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0

    LogSession.dll LogSession 2.1.2.1681

    mediacoreif.dll product DVA 6.0.0

    MPS.dll MPS-2012/02/03-10: 33: 13 66,495174 66.495174

    msvcm80.dll Microsoft® Visual Studio® 2005 8.00.50727.6910

    msvcm90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    MSVCP100.dll Microsoft® Visual Studio® 2010 10.00.40219.1

    msvcp80.dll Microsoft® Visual Studio® 2005 8.00.50727.6910

    MSVCP90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    msvcr100.dll Microsoft® Visual Studio® 2010 10.00.40219.1

    MSVCR80.dll Microsoft® Visual Studio® 2005 8.00.50727.6910

    Msvcr90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    pdfsettings.dll Adobe PDFSettings 1.04

    Adobe Photoshop CS6 CS6 Photoshop.dll

    Adobe Photoshop CS6 CS6 plugin.dll

    PlugPlug.dll Adobe CSXS branchezBranchez Dll Standard (64 bit) 3.0.0.383

    Adobe Photoshop CS6 CS6 PSArt.dll

    Adobe Photoshop CS6 CS6 PSViews.dll

    SCCore.dll ScCore 2011/12/14-15: 08: 46 66,490082 66.490082

    ScriptUIFlex.dll ScriptUIFlex 2011/12/14-15: 08: 46 66,490082 66.490082

    svml_dispmd.dll Intel (r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0

    TBB.dll Intel Threading Building Blocks for Windows 3, 0, 2010, 0406

    tbbmalloc.dll Intel Threading Building Blocks for Windows 3, 0, 2010, 0406

    updaternotifications.dll Adobe Updater Notifications Library 6.0.0.24 (BuildVersion: 1.0;) Brand: BUILDDATETIME) 6.0.0.24

    WRServices.dll WRServices Friday, January 27, 2012 13:22:12 build 0.17112 0,17112

    Required plugins:

    3D Studio 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Accented edges 13.0

    Adaptive wide-angle 13.0

    Angular Strokes 13.0

    13.1.2 on average (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Bas-relief 13.0

    BMP 13.0

    Camera Raw 7.3

    Chalk and charcoal 13.0

    Charcoal 13.0

    Chrome 13.0

    Cineon 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    13.1.2 clouds (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    COLLADA 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Halftone color 13.0

    Color pencil 13.0

    CompuServe GIF 13.0

    Pencil tale 13.0

    Craquelure 13.0

    Crop and straighten Photos 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Crop and straighten Photos filter 13.0

    Hatch: 13.0

    Crystallize 13.0

    Cutting 13.0

    Features dark 13.0

    Deinterlacing 13.0

    DICOM 13.0

    Difference clouds 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Glow 13.0

    Move 13.0

    Dry brush 13.0

    Eazel acquire 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Embed watermark 4.0

    Entropy 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Extrude 13.0

    FastCore 13.1.2 routines (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Fiber 13.0

    Film Grain 13.0

    Gallery of filters 13.0

    Flash 3D 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Fresco 13.0

    Glass 13.0

    Scarlet contours 13.0

    Google Earth 4 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Grain 13.0

    Graphic pen 13.0

    Halftone Pattern 13.0

    HDRMergeUI 13.0

    IFF Format 13.0

    Outlines in ink 13.0

    JPEG 2000 13.0

    Flattening coefficient 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Blur of the lens 13.0

    Correction of the lens 13.0

    Lens Flare 13.0

    Liquefy 13.0

    Operation of Matlab 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    maximum 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Mean 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Measure Core 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Median 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Mezzotint 13.0

    Minimum 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    MMXCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Mosaic tiles 13.0

    Multiprocessor support 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Neon 13.0

    Paper notes 13.0

    13.1.2 color NTSC (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Ocean Ripple 13.0

    13.0 oil painting

    OpenEXR 13.0

    Paint Daubs 13.0

    13.0 palette knife

    Patchwork 13.0

    Paths to Illustrator 13.0

    PCX 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Photocopy 13.0

    13.1.2 Photoshop 3D engine (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Photo filter package 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Pinch 13.0

    Pixar 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Plaster 13.0

    Plastic wrap 13.0

    PNG 13.0

    Pointillism 13.0

    Polar coordinates 13.0

    Portable Bit map 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Poster edges 13.0

    Radial blur 13.0

    Radiance 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    13.1.2 range (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Read watermark 4.0

    Crosslinking 13.0

    Ripple 13.0

    Rough Pastels 13.0

    Save for the Web 13.0

    13.1.2 ScriptingSupport

    Shear 13.0

    13.1.2 asymmetry (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Smart Blur 13.0

    Smudge Stick 13.0

    Solarize 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Splash 13.0

    Spherize 13.0

    Sponge 13.0

    13.0 sprayed strokes

    Stained glass 13.0

    Stamp 13.0

    SD 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    STL 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Sumi-e 13.0

    13.1.2 summons (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Targa 13.0

    Texture veneer 13.0

    13.0 tiles

    Torn edges 13.0

    Watch twirl 13.0

    Draft of 13.0

    Vanishing point 13.0

    13.1.2 variance (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    13.1.2 variations (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Water paper 13.0

    Watercolor of 13.0

    Wave 13.0

    Wavefront | OBJ 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    WIA support 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Wind 13.0

    Wireless Bitmap 13.1.2 (13.1.2 20130105.r.224 2013/01 / 05:23:00:00)

    Zig - zag 13.0

    Plug-ins option and third parties:

    DAZ Studio 3D bridge 12.0

    DazUpdateScene 12.0

    Plug-ins that could not load: NONE

    Flash:

    Mini Bridge

    Kuler

    Install TWAIN devices: NONE

    The nomenclature "7800 series" seems good.  Here is what my system shows under Windows 7 with catalyst 12.8:

    ...

    OpenGL drawing: enabled.

    OpenGL drawing mode: Advanced

    OpenGL allows Normal Mode: true.

    OpenGL allows Advanced Mode: true.

    OpenGL allows old GPU: not detected.

    OpenCL Version: 1.2 AMD - APP (938.2)

    OpenGL, Version: 3.0

    Texture size video Rect: 16384

    OpenGL memory: 2048 MB

    The video card vendor: ATI Technologies Inc.

    Renderer video card: AMD Radeon HD series 7800

    Display: 2

    Limits of the display: top = 0, left = 1600, low = 1200, right = 3200

    Display: 1

    Limits of the display: top = 0, left = 0, low = 1200, right = 1600

    Video card number: 2

    Video card: Radmin V3 driver mirror

    Driver version: 3.1.0.0

    Driver date: 20070808000000.000000 - 000

    Video card driver:

    Video mode: 1600 x 1200 x 4294967296 colors

    Legend of the video card: Radmin V3 driver mirror

    Video card memory: 0 MB

    Video card: 1

    Graphics card: AMD Radeon HD 7800 Series

    Driver version: 8.982.0.0

    Driver date: 20120727000000.000000 - 000

    Video card driver: aticfx64.dll, aticfx64.dll, aticfx64.dll, aticfx32, aticfx32, aticfx32, atiumd64.dll, he's atidxx64.d, atidxx64.dll, atiumdag, atidxx32, atidxx32, atiumdva, atiumd6a.cap, atitmm64.dll

    Video mode: 1600 x 1200 x 4294967296 colors

    Legend of the video card: AMD Radeon HD 7800 Series

    Memory: 2048 MB

    ...

    I use Catalyst 12.8 pilots at the moment and have a Windows 7 system and have a remote access utility called Radmin installed, but I don't know if seeing that Microsoft based Render driver is provided on Windows 8.  It seems that this could be the key, as the basic OpenGL implementation of Microsoft is made all in software.  If somehow driver Microsoft took control and you don't get really the GPU acceleration, then that would surely make things really slow.

    Rafaello, you have updated drivers...  You can post your top of your system information again?

    Have you tried a full, complete deletion ATI driver and reinstall from for example, 13.2 beta?  Here is the removal of ATI tool:

    http://sites.AMD.com/us/game/downloads/pages/catalyst-uninstall-utility.aspx

    -Christmas

  • SSO on OAM 2 instances with different security mode

    Hi people

    Can we did single sign on 2 OAM with two security mode different instances. An open mode and another in Simple mode.

    Both are connected to the same LDAP for user data.

    Thank you very much!

    I think it's technically "unsupported" but I can tell you that he used to work.

    The technique was to install the server in single mode components and then change the mode back to OPEN via the admin UI on component profile but not to reconfigure the mode on the installed component.

    When you have a server to identity and then telnet-ed at the port, it would open & smpl. The AAA server does not provide the same comments, but a few simple tests will tell you if it works.

    Yet once again, blend modes is explicitly warned against. Depends on your tolerance for this sort of thing.

    Let us know if it works for you.

    Mark

  • Maybe it's to rewrite the BIOS with crisis recovery mode?

    Hey everybody,

    my laptop 'freezes' during BIOS 'PHOENIX' updated 2 years ago.
    SERVICE told to change the motherboard, the price as new pc, so I bought new laptop.

    I keep looking at the toshiba forum always, so I read a lot of information on the MODE of RECOVERY from CRISIS.
    so I tried to check my laptop died after 2 years.

    My satellite M100 starts in crisis recovery mode Fn + B.
    my laptop starts up to CRISIS MODE, but do not read the USB STICK
    I did the flash with the CRISDISK 1.0.0.4 USB key program, but I'm not sure I did it way right!

    My question is:
    is it really possible to REWRITE the bios with crisis recovery mode, where I can read more information on how to do it.

    I want back my M100 :)))

    Hey,.

    As Akuma writes that you should try a USB FDD instead a USB key. Key USB is supported only on new models of laptops, but as far as I know USB FDD will be always supported.

    In any case, just for your information: you should know what you're doing. It is a delicate and risky procedure and in the worst cases you might destroy the whole ROM module but if you already have a new laptop I think that it s a problem for you. ;)

  • Equium M40x does not work with connected AC

    Hi all

    I have a laptop Toshiba Satellite M40x-189, there little about 2 years and recently I have problems with it.

    The laptop when it is connected to the Board, the green light appears, but after 5 seconds it laptop turn off. the looks of dead battery, because it does not load normally, I keep connect and disconnect the AC, so that the orange light appear sometimes, sometimes for 5 seconds only. It's frustrating. When the drums come to start getting free he takes forever to be full. just at the moment where there is a load on the battery, that I can work on the laptop, even with the connected AC, but instead to use the AC laptop running on the battery, which usually lasts less than an hour, and then it's the bit of history.

    All I need is just to work with connected AC, because I normally just use the AC.
    Well I don't know what the problem is, can someone help me please

    Hello

    For me, it looks like a problem with the electronic power supply on the motherboard.
    I don t think that there is an adapter of wit AC problem itself or with the bad connection between the power supply and the Commission.
    If the AC adapter would malfunction the battery would not charge. But charges of battery, it collects a very slowly but it charges

    Finally I n t think you can do something you go to the service of your country. In such cases you re on the right side

  • Connected standby mode

    All current machines will support connected standby mode in windows 8? Eve connected allows one machine to sleep briefly turns on, check the updates (IE twitter, facebook, emails), and then to go back to sleep. It would be cool to beable to close my W530, out for a bit and come back and see I'm new e-maisl while the machine was asleep.

    No current modles, the first devices to appear will be tablets and ultrabooks.

    Intel has yet to release all of the chips that support it.

Maybe you are looking for