Network traffic of an End-User Experience Monitoring (EEM) Robot

Dear Experts,
our company is currently using three EEM-Robots in different countries.
After one month we noticed, that the network traffic of the robots is quite high (one robot used about 8 GB in one month).
So I checked the configuration of the robots:
Every Robot runs about five scripts, which are executed every ten minutes. Therefore every robot exectues 30 scripts in one hour.
There are four SAPGUI Scripts and one http-script. Every Script (besides the http-Script) is collecting the system data (bold letters in the monitoring) and the trace level low (parameter trace.e2etracelevel = 0).
So I start measuring the network traffic. I observed the connection with Wireshark:
The robot uses in average 4000 Byte per second, which equates to 9,66 GByte for one month.
After stopping every script and rebooting the robot, I measured the traffic again.
The robot uses without executing a script in average 820 Byte per second, which equates to 2 GByte for one month.
Are there some settings I overlooked, possibilities to decrease the network traffic? 
Is that size of network traffic within the normal range?
Regards
Alex
Edited by: Alexander Beck on Jan 11, 2012 10:57 AM

Hi  Beck,      
I am also working on End user experience monitoring.
I want to in depth details in End User Experience Monitoring. If you have screen shots please share for me.
Regards
Balaji
Edited by: Balaji Rao Bhoomraogari on Jan 18, 2012 12:19 PM

Similar Messages

  • End User Experience Monitoring Querries

    Dear Experts,
    I have a doubt in End User Experience Monitoring (EEM), I created a SAP GUI Script
    that script  execute automatically every day. How to set automatically.
    Regards
    Balaji

    Dear Experts,
    I want to know the End user Experience Monitoring in the EEM Script how to assign the Region, Location,
    then how to call the script.
    Please give me provide solution.
    Regards
    Balaji

  • End User Experience Management(EEM)

    Does any one has insight information about SAP's End User Experience Management(EEM) in Solution manager vs CA's Customer Experience management?
    Please provide me relevant information.

    Please check this:
    Link: [http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/5093bee4-27f2-2c10-869e-e523d818f2e9&overridelayout=true]
    Regards,
    Gerald

  • Recording NWBC scripts for End User Experience

    Hi Experts,
    I am recording NWBC scripts using the Netweaver Business Client GUI for loading and running it through Robots for End User Experience Monitoring. I don't see an option to "LogOff" in NWBC client while recording  the script. We only have option to "Close all session and LogOff" in NWBC client .
    When I am using this option, it closes all the sessions including the EEM Recorder also without saving the recording .
    I need to include "LogOff" as the last step so that it doesn't leave any active sessions for each run by different robots.
    I have a Solution Manager 7.1 SP10 and NWBC client 3.5 Patch 13.
    Please help me achieve this.
    Regards,
    Manish K

    Hi,
    for a browser the recommendation is to open a new, empty tab to keep the browser alive while closing the tab with the  session. All that with the hope that the backend will use the triggered event of collapsing tab to close session.
    Maybe a similar strategy works for NWBC.. but I don't know the UI in detail.

  • End-User Experience error running agent on windows server 2008 R2

    Hi,
    I have installed implemented the end-Uer experience agent in a Windows 7 without issues but when we have installed the SDM 7.30 agent and the SAP GUI 730 in a Windows server 2008 R2 and we have configured the agent as End-User experience monitoring Robot in solution manager.
    We have distributed one script without issues but the executios are failing with the message:
    "SAPGUI Compontent" could not be instantiated (sapfewse):605
    We have reviewed the bellow notes but wothout success:
    1261706 - Kill bits set for SAP GUI Scripting
    1092631 - Remote vulnerabilities in SAP GUI for Windows
    We are able to run the scripts in the server directly in the SAPGUI and even with the EemEditor.
    SAP message is open since last week, but my be you can provide a faster response.
    Could you please help me.
    Kind Regards

    Have you followed installation procedure described in the following article: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_install.html ?
    You can find troubleshooting hints in the following article: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_troubleshooting.html
    I'd reccomend to install CDA instead of AD agent (nice GUI...) but you'll have to create new (virtual) server for that: http://www.cisco.com/en/US/docs/security/ibf/cda_10/Install_Config_guide/cda_install.html

  • End User Data Monitoring?

    A number of our users are exceeding their monthly data allotments. One user for instance is already at 18gig for this month alone. Many of the users are unaware of what might be causing this ridiculiusly high usage (for instance they aren't using streaming apps so the logical explaination of the overage isn't present).
    Has anyone had success with a data monitoring tool which can inform the users of what EACH APP is using? Having the breakdown of which app is using the most data is the key, overall usage is something easily handled via the carrier but that does not help us determine what is causing the excess usage.

    I have tried the Onavo app and I was told by their support it only displays the potential "data savings" not actual data used.
    We utilize an MDM agent which shows apps currently installed, this one particular user does have the Sirius XM app which I am sure is responsible for some of their usage however other users who are going over have only our MDM (which simply acts as a connector to exchange).
    Here's the email from Onavo
    MAR 03, 2013  | 02:12PM IST
    Hi,
    Thanks for reaching out.
    Firstly, we honestly apologize for the confusion. Allow me to try and explain:
    The "Saved XX of" parameter displays the POTENTIAL data saving and not the total. For example, an HTTPS (encrypted) connection or Streaming Data cannot be compressed by Onavo.
    Meaning, Onavo displays the amount of saved data ONLY for the apps that it can compress. All the reset are ignored.
    Unlike this parameter, the iOSs total number include all data that you consume.
    Hope that it helps.
    Best regards,
    Onavo Support Team
    http://onavo.com

  • End-user experience during CREATE OR REPLACE TRIGGER

    Is CREATE OR REPLACE TRIGGER intended for you to be able to update a trigger in production while users are actively using a that table's data?
    Just wondering how it behaves. People currently in the middle of an event will use the old trigger, while new requests will use the new one?
    Thanks
    Chuck

    Actually, this one kind of surprised me. I tried:
    SESSION1 > DESC t
    Name                                      Null?    Type
    ID                                                 NUMBER
    DESCR                                              VARCHAR2(10)
    SESSION1 > CREATE TRIGGER t_bi
      2  BEFORE INSERT OR UPDATE ON t
      3  FOR EACH ROW
      4  BEGIN
      5     :new.descr := UPPER(:new.descr);
      6* END;
    Trigger created.Then, in anothe session I did:
    SESSION2 > INSERT INTO t VALUES (1, 'One');
    1 row created.Then in the first session:
    SESSION1 > CREATE OR REPLACE TRIGGER t_bi
      2  BEFORE INSERT OR UPDATE ON t
      3  FOR EACH ROW
      4  BEGIN
      5     :new.descr := LOWER(:new.descr);
      6* END;
    Trigger created.
    Just to prove no commit happened
    SESSION1 >SELECT * FROM t;
    no rows selectedI was expecting to see
    ORA-00054: resource busy and acquire with NOWAIT specified
    or something similar. So in session 2 I did:
    SESSION2 > COMMIT;
    Commit complete.
    SESSION2 > SELECT * FROM t;
            ID DESCR
             1 ONE
    SESSION2 > INSERT INTO t VALUES(2, 'Two');
    1 row created.
    SESSION2 > SELECT * FROM t;
            ID DESCR
             1 ONE
             2 twoSo, the new trigger is working. Now change it again:
    SESSION1 > CREATE OR REPLACE TRIGGER t_bi
      2  BEFORE INSERT OR UPDATE ON t
      3  FOR EACH ROW
      4  BEGIN
      5     :new.descr := UPPER(:new.descr);
      6  END;
      7  /
    Trigger created.and back to session 2
    SESSION2 > INSERT INTO t VALUES (3, 'Three');
    1 row created.
    SESSION2 > SELECT * FROM t;
            ID DESCR
             1 ONE
             2 two
             3 THREESo, it looks like whichever trigger is current at the time of the insertion or updation seems to control what gets in the database.
    John

  • ESSO - Full SSO end-user experience

    Hi all,
    I have been testing Windows authenticator and Windows V2 authenticator and I have been unable to set it up so that it does not request the password when a user first logs into the system. Is it possible to set it up so that it does not show this authentication dialog in the first login? Any hints would be appreciated.
    Thanks in advance

    hello,
    to my knowledge, i think you won't be able to prevent (at least) your first authentication for the simple reason that when FTU is done, a key is generated to encrypt your credentials and this key is generated based on your authentication.
    For subsequent use, i've found out that you can prevent recurring authentication (apart from the reauthentication timer setting) by adding a key to the registry HKLM/Passlogix/AUI/<your authentication here>/CheckForParentProcess the type of the entry being DWORD and the value being 0.
    Of course it will still ask for authentication for "password reveal" feature (but still depending on the settings you specified).
    hope it helps.
    regards

  • How to monitor end user response times?

    Hi everyone.
    I'm using Oracle Enterprise Manager 10.2.0.5.0 for monitoring our development environment. We have many products but my focus is on a web application that is running on an Oracle Application Server. I need to monitor the reponse time of every HTTP request to check if this time is in the range of our SLAs.
    I've seen that OHS monitoring shows the mean response time, resource consumption, etc. But I haven't found any that lets me do more detailed monitoring (at the level o HTTP request).
    I'm reading right now 3 books about it but it does't mention this feature (just in case):
    - Middleware Management with Oracle Enterprise Manager Grid Control 10gR5
    - Oracle Enterprise Manager Administration 10.2.0.5 (from Oracle Library)
    - Oracle Enterprise Manager Grid Contro lInstallation And Configuration 10.2.0.5.0
    ¿Does anybody knows if Enterprise Manager have this feature?
    Thanks in advance.

    Hi.
    Sorry for a long delay.
    The answer was so generic and didn't help too much. But today, after several days of research I found how to monitor the user perceived performance by using "End-User Performance Monitoring". In theory this feature lets me register a Web Server and monitor its access log and also create a SLAs monitor based on it.
    Right now I'm reading a lot about it just and trying of enable it to an OHS. I did it for an Oracle Web Cache.
    Anyway, thanks a lot for your interest and if someone find it useful, when I get more functionality working, I'll post something here.
    Best regards.

  • Introducing the Microsoft Intune End User Enrollment Guide

    Help Your Users Get Their Devices Enrolled in Microsoft Intune with the End User Enrolment Guide
    Choosing how you manage mobile devices within your organization is just one of many steps involved in protecting your corporate data while enabling a great end user experience on the devices they choose.
    Now, you need to encourage your users to enroll their devices into Microsoft Intune to be managed. We’ve created the Microsoft Intune End User Enrollment Guide to help get you started. This two-page document helps explain to your users the importance of protecting corporate data, as well as their own, by letting your IT department manage their devices. It explains what may happen on their devices (installation of apps, security policies applied, etc.) and what will NOT happen on their devices (collecting personal information like phone and...
    This topic first appeared in the Spiceworks Community

    Depends which Guide you're looking at in 1.9.
    You can choose the Full Guide (in Standard or Classic) views, Channel Guide, Half Guide or Mini Guide.
    7xxx HD
    Full Guide Standard = 7 channels (hit Guide once)
    Full Guide Classic = 5 channels (available option in Television settings menu)
    Channel Guide = 7 channels horizontally (hit Guide twice)
    Mini Guide = really just one channel at a time (hit the down arrow on live TV)
    Half Guide = 6 channels (hit the up arrow on live TV)
    2500 / 6xxx / 7xxx SD
    Full Guide Standard = 6 channels (hit Guide once)
    Full Guide Classic = 4 channels (available option in Television settings menu)
    Channel Guide = 6 channels horizontally (hit Guide twice)
    Mini Guide = really just one channel at a time (hit the down arrow on live TV)
    Half Guide = 5 channels (hit the up arrow on live TV)

  • OIM approval -  End User Experiance

    Hello,
    In my configuration for OIM resource request :
    * 1st level of approval goes to manager -> user could login and check status of his request and could understands that it is pending on manager and verify his manager name in the request pending status. This is good. :)
    * 2nd level of approval goes the resource owner - (which is implemented as a group - the approval request goes to member of the group). What user sees is that the request is pending on the approval-group. He don't know whom to reach and eventually ends up talking to OIM admin to understand the current approver for the request.
    A valid use case is - in case resource approver changes then dynamically all the pending requests should move to the new approver. This works best in the current configuration (group member approval).
    How to enhance end user experience when the request is pending on 2nd approval step.
    thanks,

    But i don't think this will automatically re-assign the request to new approver in case of approver change.I didn't understand this line. What do you mean by Automatically Re-assign to new approver in case of approver change.
    How approver will get changed? Someone has to reassign the task to other person/group ?
    What is your Use Case ?

  • Network Traffic Part 2

    Hi Joe,
    I am monitorring again the network traffic output of my rhel4 server, using the script you gave me,
    and I got the following:
    11/04/10 00:00:07,RXbytes:761952,TXbytes:427484
    11/04/10 01:00:07,RXbytes:1253865,TXbytes:903771
    11/04/10 02:00:07,RXbytes:561288,TXbytes:126774
    11/04/10 03:00:08,RXbytes:614364,TXbytes:327579
    11/04/10 04:00:08,RXbytes:626030,TXbytes:581122
    11/04/10 05:00:08,RXbytes:448505,TXbytes:3935
    11/04/10 06:00:07,RXbytes:363288,TXbytes:256
    11/04/10 07:00:08,RXbytes:418344,TXbytes:512
    11/04/10 08:00:07,RXbytes:3075147,TXbytes:20871024
    11/04/10 09:00:08,RXbytes:21268121,TXbytes:96990878
    11/04/10 10:00:07,RXbytes:28459877,TXbytes:311859635
    11/04/10 11:00:08,RXbytes:7230007,TXbytes:37973840
    11/04/10 12:00:08,RXbytes:6117714,TXbytes:41316205
    11/04/10 13:00:08,RXbytes:9299506,TXbytes:59563899
    11/04/10 14:00:07,RXbytes:12474670,TXbytes:46555827
    11/04/10 15:00:08,RXbytes:12471005,TXbytes:129434535
    11/04/10 16:00:08,RXbytes:7906737,TXbytes:64104023
    11/04/10 17:00:08,RXbytes:29303369,TXbytes:145990135
    11/04/10 18:00:08,RXbytes:14466168,TXbytes:44081112
    11/04/10 19:00:07,RXbytes:16192064,TXbytes:52467858
    11/04/10 20:00:08,RXbytes:1668065122,TXbytes:1358371970
    11/04/10 21:00:08,RXbytes:1232966,TXbytes:685626
    11/04/10 22:00:07,RXbytes:982910,TXbytes:477852
    11/04/10 23:00:07,RXbytes:761526,TXbytes:218669
    11/05/10 00:00:07,RXbytes:809886,TXbytes:982614
    11/05/10 01:00:08,RXbytes:642301,TXbytes:126982
    11/05/10 02:00:07,RXbytes:635841,TXbytes:218607
    11/05/10 03:00:07,RXbytes:740963,TXbytes:1008036
    11/05/10 04:00:07,RXbytes:624231,TXbytes:394317
    11/05/10 05:00:08,RXbytes:448494,TXbytes:3653
    11/05/10 06:00:08,RXbytes:415485,TXbytes:640
    11/05/10 07:00:07,RXbytes:389860,TXbytes:512
    11/05/10 08:00:07,RXbytes:26640050,TXbytes:353528988
    11/05/10 09:00:07,RXbytes:17023417,TXbytes:209170566
    11/05/10 10:00:07,RXbytes:48096899,TXbytes:592254609
    11/05/10 11:00:07,RXbytes:29606627,TXbytes:-4094024665
    11/05/10 12:00:07,RXbytes:14057405,TXbytes:94579667
    11/05/10 13:00:07,RXbytes:11446821,TXbytes:42764768I still got negative at 11am todate, I know I didnot edit the program ne more :(
    Don;t you think it is the peak ( highest period)?
    Thanks a lot

    Hi Dude :)
    I did not know the "sar" has also network traffic monitoring, until you gave me the docs link which is:
    http://www.linux-tutorial.info/modules.php?name=News&file=article&sid=3230
    I got this network traffic statistics from the "sar" default monitoring system.
    23:00:01        IFACE   rxpck/s   txpck/s   rxbyt/s   txbyt/s   rxcmp/s   txcmp/s  rxmcst/s
    23:10:01           lo     68.40     68.40  14143.49  14143.49      0.00      0.00      0.00
    23:10:01         eth0      3.86      1.90    528.59    363.05      0.00      0.00      0.00
    23:10:01         eth1      0.27      0.03     22.40      2.09      0.00      0.00      0.00
    23:10:01         eth2      0.25      0.00     21.17      0.39      0.00      0.00      0.00
    23:10:01         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
    23:20:01           lo     62.71     62.71  11910.61  11910.61      0.00      0.00      0.00
    23:20:01         eth0      2.70      0.64    292.53    134.17      0.00      0.00      0.00
    23:20:01         eth1      0.27      0.03     22.85      2.00      0.00      0.00      0.00
    23:20:01         eth2      0.25      0.00     21.30      0.39      0.00      0.00      0.00
    23:20:01         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
    23:30:01           lo     66.57     66.57  13785.36  13785.36      0.00      0.00      0.00
    23:30:01         eth0      1.97      0.24    168.32     35.51      0.00      0.00      0.00
    23:30:01         eth1      0.50      0.06     36.43      3.99      0.00      0.00      0.00
    23:30:01         eth2      0.43      0.00     32.03      0.39      0.00      0.00      0.00
    23:30:01         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
    23:40:01           lo     67.49     67.49  14342.50  14342.50      0.00      0.00      0.00
    23:40:01         eth0      1.81      0.24    155.01     35.56      0.00      0.00      0.00
    23:40:01         eth1      0.26      0.02     21.75      1.49      0.00      0.00      0.00
    23:40:01         eth2      0.23      0.00     20.00      0.39      0.00      0.00      0.00
    23:40:01         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
    23:50:01           lo     68.37     68.37  13966.97  13966.97      0.00      0.00      0.00
    23:50:01         eth0      1.73      0.24    161.67     35.50      0.00      0.00      0.00
    23:50:01         eth1      0.38      0.03     29.16      1.99      0.00      0.00      0.00
    23:50:01         eth2      0.34      0.00     26.79      0.39      0.00      0.00      0.00
    23:50:01         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
    Average:           lo    147.36    147.36  13546.40  13546.40      0.00      0.00      0.00
    Average:         eth0     15.85     14.84   1627.46  10663.56      0.00      0.00      0.00
    Average:         eth1      1.73      1.65    144.72   1133.77      0.00      0.00      0.00
    Average:         eth2      0.32      0.00     25.54      0.39      0.00      0.00      0.00
    Average:         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00Do you think its the similar with the eh0stat.sh you gave me? do you think I have to use this one instead? or do you think this one is more accurate? :)
    What does "lo" mean?
    23:00:01        IFACE   rxpck/s   txpck/s   rxbyt/s   txbyt/s   rxcmp/s   txcmp/s  rxmcst/s
    Average:           lo    147.36    147.36  13546.40  13546.40      0.00      0.00      0.00Thanks

  • Unknown network traffic / router traffic monitoring

    So I got a new PC with windows 7 on it, and I installed this gadget that monitors network traffic, and it shows a lot of traffic that my local PC isn't showing, so I am thinking there is something running on the LAN that I can't see. I was looking to find a live, better program to monitor the actiontec router, for traffic. anyone know of anything that can maybe show me who is using all the bandwidth on my network?
    i have found software for Linksys, but nothing for the Actiontec.
    Thanks,
    Quasimodem
    Fios in Florida
    Solved!
    Go to Solution.

    Keep in mind that when looking at Wireshark (sniffer) software there are different types of traffic:
    Unicast
    Broadcast
    Multicast
    Unicast is traffic between two devices.  You will see the traffic between the PC with wireshark and another device on your local network such as a printer, another PC or the Router.  You should not see traffic between another PC and the Internet for example.  Using a phone as an example some calls you and the conversation is between you and the person on the other end of the phone.  This is unicast traffic.  Using defaults of the actiontec, IP address seen will be 192.168.1.1 for the router and 192.168.1.2-99 for devices on your network.  If you have the TV service, 192.168.1.100-1xx is used for the cable boxes.
    Broadcast traffic is traffic sent to all devices.  Its not directed toward a particular PC but rather usually looking for information.  In a sniffer trace you will see broadcast traffic. Going back to the phone example, someone makes an announcement on an overhead intercom system that is broadcast traffic.  Broadcast traffic will be seen as 192.168.255.255
    Multicast traffic is traffic from one device for many devices.  Usually used in video feeds.   Using the phone system as an example someone wishes to tell a group of people something so instead of calling each person up and telling them each person who wants the information joins a conference bridge.  Anyone is allowed to listen but only those that wish to get the information receive it.  Generally how multicast works.  Multicast traffic will be seen as IP address 224.x.x.x or something of the sorts where the address will be 2xx.x.x.x.  
    I hope this makes sense.  Probably more information than you needed but at least it will help you understand what wireshark is telling you.

  • Monitoring network traffic from large queries to client

    Hi, is there any way to monitor the volume from network traffic from the server to the client, the statistics SQL*net message to client and SQL*net message from client don't show a full picture.
    I have a query that sends several GB of data to a client but the SQL*net statistics done show anything like this, is there any way I can see the volume of traffic from the RDBMS statistics?
    Regards.

    Alan Wilson wrote:
    Hi, is there any way to monitor the volume from network traffic from the server to the client, the statistics SQL*net message to client and SQL*net message from client don't show a full picture.
    I have a query that sends several GB of data to a client but the SQL*net statistics done show anything like this, is there any way I can see the volume of traffic from the RDBMS statistics?
    Sounds like you're looking at the Wait events only - you need to check the instance (or session) activity - v$sysstat/v$sesstat for the following stats:
    NAME
    bytes sent via SQL*Net to client
    bytes received via SQL*Net from client
    SQL*Net roundtrips to/from clientIt's worth pointing out, by the way, that SQL*Net can do "compression" on the fly by comparing columns across rows of data sent, so the volumes you see in these stats may not match the volume you finally see arriing in the client code. ( http://jonathanlewis.wordpress.com/2010/05/07/sqlnet-compression/ )
    If you need to optimise the transfer rate, look at the SQL*Net configuration (at both ends) for the Session Data Unit (SDU) and the o/s transmit and receive buffers.
    Regards
    Jonathan Lewis

  • Monitor connected front end users

    Hi ,
    I have an application with access control list and table which holds application users / used for authorization etc ...
    at the database level I would like to see and know which session belongs to which fron end users!
    at the database level I can only see session id's and application's username which is htmldb_public_user.... and its unique for every user..
    lookin at Utilities>Database Monitor>Sessions page I can only see one developer connected! but cant see session or session id for front end users? is there anyway to find out the session info for this user?
    Thanks

    its the same question with a diffrence that he is trying to have diffrent applications login as diffrent username so he can trace applications individually(which is what im intrested in too) where as im more intrested in knowing the session id for each front end users who are viewing/inserting or deleting data through the applications! hope this makes sense!
    I dont undrestand below response!
    Bill,
    FYI, the engine does this for each database session:
    begin dbms_application_info.set_client_info(g_user); dbms_session.set_identifier(substr(g_user,1,(64 - length(g_instance)-1))||':'||to_char(g_instance)); dbms_application_info.set_module('APEX:APPLICATION '||to_char(g_flow_id),'PAGE '||to_char(g_flow_step_id)); exception when others then null; end;
    ...where g_user is the authenticated user, g_flow_id is the application ID, g_flow_step_id is the page ID, and g_instance is the Application Express sessionID. I don't know where to tell you to look for these markers but they will be associated with the database sessions that you're seeing which are owned by APEX_PUBLIC_USER.
    We are looking to move to a 4 RAC environment which is creating many questions concerning APEX architecture.
    I've seen all your other posts about this and IMO, there are no questions to be answered about the architecture of Application Express vis-a-vis RAC, and vice versa.
    Thanks
    Message was edited by:
    friendlier

Maybe you are looking for

  • Pages 5.0 won't open Pages files

    OK, this is weird. Since upgrading to Mavericks with the free Pages 5.0 upgrade last week, all of my Pages files have been opening in Pages 5.0 just fine -- until today. An update dialog opened today November 4 2013 around 3pm saying there was a Page

  • Mpd clients disconnecting too often

    For about a month I can see a weird issue with mpd: from time to time (about 10 to 10 minutes) sonata (and any other client) loses connection to mpd, then reconnects. Yesterday I installed mpdscribble for submitting my tracks to last.fm and watching

  • Looking for a good FHD external monitor

    What are people using for external monitors? I'm looking for a FHD (1920x1080) monitor to connect to my W520 system. I'm interested in something between 22 and 24". Suggestions. Thanks W520, i7-2820QM, BIOS 1.42, 1920x1080 FHD, 32 GB RAM, 2000M NVIDI

  • Unable to view a PDF made with another program

    I have a .pdf file made by GNUCash that cannot be viewed by Adobe Reader Ver. 9/Vista. It can be viewed just fine in versions 7 and 8 and with .pdf viewers under Linux. What is the problem and how do I fix it?

  • Export selection

    Is there a procedure for exporting the outline of a selection from one copy of an image to another copy of the same image. I want to export only the size and shape information, not the content of the selection.