Difficulties to adjust touchpad, need some hints. [SOLVED]

Hi,
Thank you to the forum community and to the Arch community for giving a really good support and strenght to the Arch project.
I am having difficulties to configure my touchpad, here are the hardware informations output from hwinfo :
PS/2 00.0: 10500 PS/2 Mouse
  [Created at input.249]
  Unique ID: AH6Q.Y_f5kDtfqz2
  Hardware Class: mouse
  Model: "SynPS/2 Synaptics TouchPad"
  Vendor: 0x0002
  Device: 0x0007 "SynPS/2 Synaptics TouchPad"
  Compatible to: int 0x0210 0x0001
  Device File: /dev/input/mice (/dev/input/mouse0)
  Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event6, /dev/input/by-path/platform-i8042-serio-1-event-mouse, /dev/input/by-path/platform-i8042-serio-1-mouse
  Device Number: char 13:63 (char 13:32)
  Driver Info #0:
    Buttons: 1
    Wheels: 0
    XFree86 Protocol: explorerps/2
    GPM Protocol: exps2
  Config Status: cfg=new, avail=yes, need=no, active=unknown
I use synaptic driver because I had issues with the mtrack drivers from the AUR ( the mouse was stoping to work.). Now i configured this way my synaptic config :
Section "InputClass"
        Identifier "touchpad"
        MatchProduct "SynPS/2 Synaptics TouchPad"
        Driver "synaptics"
        Option "TapButton1" "1"
        Option "TapButton2" "2"
        Option "TapButton3" "3"
        Option "VertEdgeScroll" "on"
        Option "VertTwoFingerScroll" "on"
        Option "HorizEdgeScroll" "on"
        Option "HorizTwoFingerScroll" "on"
EndSection
Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
EndSection
I added the following code that i run at X startup also to avoid the mouse to move  when I use the tapping feature because it s too sensitive by default :
xinput -set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 8
Now the mouse is less sensitive and doesnt move when i want to use left click tapping feature. (click without pressing the touchpad buttons).
But the problem is I need "move accross the touchpad" maybe 4 times in order to cover the entire screen. How can I have amore sensitive mouse but no change in the mouse position when I am tapping the touchpad to click.
Thanks for your help.
Last edited by maxarsys (2013-11-06 08:24:14)

Here's what I use but I don't honestly think somebody else's config is likely to be much help:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "HorizTwoFingerScroll" "1"
Option "LockedDrags" "1"
Option "TapButton1" "3"
Option "TapButton2" "1"
Option "TapButton3" "2"
Option "ClickFinger1" "3"
Option "ClickFinger2" "1"
Option "ClickFinger3" "2"
Option "FingerLow" "20"
Option "FingerHigh" "25"
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
The last part doesn't apply - it must be from the default config.
I would be astonished if this was at all helpful but you did ask!

Similar Messages

  • Need some hints on using dbms_crypto

    Hello,
    I need some hints on using the dbms_crypto package to generate some password for the OID userpassword attribute. The passwordstring is stored in a format {CRYPT}dasdasdawdww, {SHA}jfsklefjskldjkdlkldf, {MD4}dfdsfgsdgdfewwe or {MD5}fsdfsdadsgdfg where the keyword in the curly brackets describes the encryption methods. I think CRYPT means DES, SHA means SHA-1.
    The key for the DES encryption for UNIX password authentification is in the first 2 letters of the encrypted string. I wanna have an encryption function which encrypts the clear type passwords in the right format like this perl script:
    #!/bin/perl
    print crypt($ARGV[0],"HS");
    #: crypt.pl Test123 # program fetch
    HSF0Sx2zdrLoQ
    Regards
    Holger

    Hello,
    meanwhile I made some investigations on the Problem
    I tried this code:
    DECLARE
    input_string       VARCHAR2 (200) :=  'Test123';
    output_string      VARCHAR2 (200);
    encrypted_raw      RAW (2000);             -- stores encrypted binary text
    decrypted_raw      RAW (2000);             -- stores decrypted binary text
    num_key_bytes      NUMBER := 256/8;        -- key length 256 bits (32 bytes)
    key_bytes_raw      RAW (32);               -- stores 256-bit encryption key
    encryption_type    PLS_INTEGER :=          -- total encryption type
                             DBMS_CRYPTO.ENCRYPT_DES
                           + DBMS_CRYPTO.CHAIN_CBC
                           + DBMS_CRYPTO.PAD_PKCS5;
    BEGIN
            DBMS_OUTPUT.PUT_LINE ( 'Original string: ' || input_string);
            key_bytes_raw := UTL_I18N.STRING_TO_RAW ( 'HS' );
            encrypted_raw := DBMS_CRYPTO.ENCRYPT
                            src => UTL_I18N.STRING_TO_RAW (input_string,  'AL32UTF8'
                            typ => encryption_type,
                            key => key_bytes_raw
    -- The encrypted value "encrypted_raw" can be used here
            DBMS_OUTPUT.PUT_LINE ( 'Encrypted string: ' || encrypted_raw);
            decrypted_raw := DBMS_CRYPTO.DECRYPT
                            src => encrypted_raw,
                            typ => encryption_type,
                            key => key_bytes_raw
            DBMS_OUTPUT.PUT_LINE ('Decrypted string: ' || UTL_I18N.RAW_TO_CHAR (decr
    ypted_raw, 'AL32UTF8'));
            DBMS_OUTPUT.PUT_LINE ('Encrypted Char string: ' || UTL_I18N.RAW_TO_CHAR
    (encrypted_raw, 'AL32UTF8'));
    END;
    /and got these error messages:
    ERROR at line 1:
    ORA-28234: key length too short
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 3
    ORA-06512: at "SYS.DBMS_CRYPTO", line 10
    ORA-06512: at line 15In the next try:
    DECLARE
    input_string       VARCHAR2 (200) :=  'Test123';
    output_string      VARCHAR2 (200);
    encrypted_raw      RAW (2000);             -- stores encrypted binary text
    decrypted_raw      RAW (2000);             -- stores decrypted binary text
    num_key_bytes      NUMBER := 256/8;        -- key length 256 bits (32 bytes)
    key_bytes_raw      RAW (32);               -- stores 256-bit encryption key
    encryption_type    PLS_INTEGER :=          -- total encryption type
                             DBMS_CRYPTO.ENCRYPT_DES
                           + DBMS_CRYPTO.CHAIN_CBC
                           + DBMS_CRYPTO.PAD_PKCS5;
    BEGIN
            DBMS_OUTPUT.PUT_LINE ( 'Original string: ' || input_string);
            key_bytes_raw := UTL_I18N.STRING_TO_RAW ( 'HS12345678901234' );
            encrypted_raw := DBMS_CRYPTO.ENCRYPT
                            src => UTL_I18N.STRING_TO_RAW (input_string,  'AL32UTF8'
                            typ => encryption_type,
                            key => key_bytes_raw
    -- The encrypted value "encrypted_raw" can be used here
            DBMS_OUTPUT.PUT_LINE ( 'Encrypted string: ' || encrypted_raw);
            decrypted_raw := DBMS_CRYPTO.DECRYPT
                            src => encrypted_raw,
                            typ => encryption_type,
                            key => key_bytes_raw
            DBMS_OUTPUT.PUT_LINE ('Decrypted string: ' || UTL_I18N.RAW_TO_CHAR (decr
    ypted_raw, 'AL32UTF8'));
            DBMS_OUTPUT.PUT_LINE ('Encrypted Char string: ' || UTL_I18N.RAW_TO_CHAR
    (encrypted_raw, 'AL32UTF8'));
    END;
    /I got some results which have nothing in common with the perl script:
    Original string: Test123
    Encrypted string: DE5668CD7762074C
    Decrypted string: Test123
    Encrypted Char string: ?h?bL
    PL/SQL procedure successfully completed.Come to think of it I doubt if DBMS_CRYPTO is the right way to solve my problem. Any further hints?
    Regards Holger

  • Need some hints for evaluating data from Central Performance History

    Hi Experts,
    I am pretty new to all the BI-stuff and hopefully someone can provide some hints. I got the requirement to read data (CPU usage/peaks) from central performance history of "system a" into "bi system" to generate overviews/charts/etc
    Now I guess there might be a standard report/info cubes and stuff which will help to solve this.
    I would really appreciate if someone could throw me a few keywords about this topic.
    Thanks in advance!

    Hi David,
    Thanks, I hadn't looked at the note.
    Section 2 - history of all connected systems showed me what to do to collect the data. I had seen that in the setup but not understood the implications of it fully. The note explained it much clearly than the SAP help.
    Thanks again,
    Gareth

  • [Off topic] Need some hints where to start

    Hi,
    I've been out of C++ for around 9 years. (Doing java since then)
    For an upcoming project I have to get back into it.
    I've already done quite much execise with STL, boost and ICU.
    Now I'm looking for a solution for the following problem:
    I need some kind of RessourceManager, which is able to suspend
    some threads and dump their memory to disk. It must maintain
    dependencies between ressources and should be as transparanet
    as possible to the rest of the source code. It should have some config
    options like amount of memory to use, etc.
    I think a starting point would be an Allocator which is connected to
    a ResourceManager.
    Is there any standard way, which I haven't found, to do this?
    Greetings,
    Markus
    P.S.: Can someone point me which is the right mailing
    list for this kind of questions?

    A good resource for general C++ programming questions like yours is newsgroup
    comp.lang.c++.moderated

  • I need some help solving an interesting problem

    On a weekly basis, I need to understand how many invoices are in the system. I've made a couple of attempts at this and none of them have generated what I'm after. Every week we get invoices in. Some invoices carry over into other weeks, some invoices age
    out of the system.
    I've put together a table of unique weeks. There is NO tie between individual weeks and invoices other than some dates in the invoice table. I have access to three:
    created - date invoice loaded into system
    paid_date - date invoice was paid.
    due_date - date the invoice is due.
    The business rules are
    Group all available invoices per week. An invoice is no longer available if it has been paid or if it has gone past its due date without being paid. Below are some sample records. I need help writing the where clause that gets rid of unavailable invoices.
    CREATE TABLE #weeks(
    weeks_id INT IDENTITY(1,1),
    week_of_year_begin_date DATE,
    week_of_year_end_date DATE,
    CONSTRAINT [PK_weeks_id] PRIMARY KEY CLUSTERED ([weeks_id] ASC)
    INSERT INTO #weeks(week_of_year_begin_date, week_of_year_end_date)
    SELECT '2014-02-02','2014-02-08'
    UNION ALL
    SELECT '2014-02-09','2014-02-15'
    UNION ALL
    SELECT '2014-02-16','2014-02-22'
    UNION ALL
    SELECT '2014-02-23','2014-03-01'
    CREATE TABLE #invoices(
    invoice_id INT IDENTITY(1,1),
    created DATE,
    paid_date DATE,
    due_date DATE
    CONSTRAINT [PK_invoice_id] PRIMARY KEY CLUSTERED ([invoice_id] ASC)
    INSERT INTO #invoices(created,due_date,paid_date)
    SELECT '2014-2-01','2014-02-20','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-10', NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-16'
    UNION ALL
    SELECT '2014-2-01','2014-03-03',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-15',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-28','2014-02-12'
    UNION ALL
    SELECT '2014-2-01','2014-03-07','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-21','2014-02-14'
    UNION ALL
    SELECT '2014-2-01','2014-03-14','2014-02-11'
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-17'
    SELECT
    w.weeks_id,
    w.week_of_year_end_date,
    i.due_date,
    i.paid_date
    FROM #weeks w
    CROSS JOIN #invoices i
    DROP TABLE #invoices
    DROP TABLE #weeks

    Using your data, how about:
    CREATE TABLE #weeks(
    weeks_id INT IDENTITY(1,1),
    week_of_year_begin_date DATE,
    week_of_year_end_date DATE,
    CONSTRAINT [PK_weeks_id] PRIMARY KEY CLUSTERED ([weeks_id] ASC)
    INSERT INTO #weeks(week_of_year_begin_date, week_of_year_end_date)
    SELECT '2014-02-02','2014-02-08'
    UNION ALL
    SELECT '2014-02-09','2014-02-15'
    UNION ALL
    SELECT '2014-02-16','2014-02-22'
    UNION ALL
    SELECT '2014-02-23','2014-03-01'
    CREATE TABLE #invoices(
    invoice_id INT IDENTITY(1,1),
    created DATE,
    paid_date DATE,
    due_date DATE
    CONSTRAINT [PK_invoice_id] PRIMARY KEY CLUSTERED ([invoice_id] ASC)
    INSERT INTO #invoices(created,due_date,paid_date)
    SELECT '2014-2-01','2014-02-20','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-10', NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-16'
    UNION ALL
    SELECT '2014-2-01','2014-03-03',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-15',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-28','2014-02-12'
    UNION ALL
    SELECT '2014-2-01','2014-03-07','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-21','2014-02-14'
    UNION ALL
    SELECT '2014-2-01','2014-03-14','2014-02-11'
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-17'
    ;with cte as (SELECT
    w.weeks_id,
    w.week_of_year_end_date,
    i.due_date,
    i.paid_date,
    CASE WHEN i.paid_date IS NOT NULL then 0
    WHEN i.paid_date IS NULL and i.due_date <= w.week_of_year_begin_date THEN 0
    ELSE 1 END as Available
    FROM #weeks w
    INNER JOIN #invoices i ON i.created <= w.week_of_year_end_date)
    SELECT * from cte WHERE Available = 1;
    DROP TABLE #invoices
    DROP TABLE #weeks
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it. Update it to IOS 7.1.1

    Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it and still cannot be fixed. I updated it to IOS 7.1.1 recently only, does it have connection with the inconvenience I am experiencing right now? What should I do? Thanks!

    Hi Melomane1024,
    If you are still having issues with your iPhone’s speaker, you may want to look at the steps in this article -
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • I recently upgraded my IMac to Lion and have found that my mail account does not include a "mail trash" category similar to "mail sent", making it difficult to retrieve mails I might have sent to trash but find I need some information from.  Suggestions?

    I recently upgraded my IMac to Lion and have found that my mail account does not include a "mail trash" category similar to "mail sent", making it difficult to retrieve mails I might have sent to trash but find I need some information from.   I've searched in settings and preferences and cant seem to find a way to add "Trash" to my Mail categories/folders.
    Suggestions?

    I recently upgraded my IMac to Lion and have found that my mail account does not include a "mail trash" category similar to "mail sent", making it difficult to retrieve mails I might have sent to trash but find I need some information from.   I've searched in settings and preferences and cant seem to find a way to add "Trash" to my Mail categories/folders.
    Suggestions?

  • My iphone 4 has switch of itself, and cant switch on its blankout , i need some help to solve this matter, My iphone 4 has switch of itself, and cant switch on its blankout , i need some help to solve this matter

    i need some help! my i phone has switch off totally blank as if there is no baterry, i cant wsitch on anymore, i live in Africa whereby there is no any  apple offises arroung, i want to find a solution thats why i am asking for the help

    Plug in iPhone with Wall Charger for 10 minutes, it may turn on itself. If not, keep on Wall Charger and Reset, hold both Home and Power buttons until the iPhone begins to restart. This usually takes less than 20 seconds of holding both buttons.

  • Sony Vaio VGN-N27LH - some questions SOLVED

    SOLVED - I installed the sony_acpi module from AUR and run the following to dim:
    echo "4" > /proc/acpi/sony/brightness
    Would still be grateful if anyone could advise on what else I need to consider when running linux on a laptop.  My original questions/post is below.
    So I took the plunge and bought my first latop.
    However, running linux is significantly more difficult and I'm feeling somewhat swamped.  On my desktop I just installed Arch and it ran fine.  With the laptop there are issues of power management, speed-stepping,suspend to disk, ACPI, etc, which are all new terms for me.  As I say, on the desktop I just installed Arch and it ran fine.  Nothing else to worry about.
    Let's start at the beginning.  I installed the beta version as I couldn't get an internet connection with my older version.  Having done some reading I've installed a few things and added some daemons but am still struggling to lower the brightness of the laptop.
    Below are some details:
    [darrendowlut@MyBoX Linux Stuff]$ lspci
    00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS/940GML and 945GT Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI #3 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 02)
    00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) Serial ATA Storage Controller IDE (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
    02:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8036 PCI-E Fast Ethernet Controller (rev 16)
    06:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG Network Connection (rev 02)
    08:03.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller
    08:03.1 FireWire (IEEE 1394): Texas Instruments PCIxx12 OHCI Compliant IEEE 1394 Host Controller
    08:03.2 Mass storage controller: Texas Instruments 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD)
    # /etc/rc.conf - Main Configuration for Arch Linux
    MODULES=(sky2 ipw3945 sonypi speedstep_centrino cpufreq_powersave cpufreq_conservative cpufreq_powersave cpufreq_stats cpufreq_userspace freq_table)
    DAEMONS=(syslog-ng ipw3945d network cpudyn acpid hal powersaved alsa netfs !crond)
    I'll be honest, I've no idea what half of those modules and daemons do!  I just know they are installed and load fine - there are no errors when the system boots.  What's more, I haven't edited any configuration files so whether those daemons are actually doing anything is anyones guess.
    So, any ideas on how to get the brightness down?  Equally, are there issues that I need to be aware of when running linux on a laptop.  It seems to be running quite hot and I dont know whether this is normal or not?
    Please don't shoot the noob.  Help greatfully received.  Be gentle.
    Thanks.
    Last edited by Ipsofacto (2007-04-09 16:56:39)

    wiki has some info, one of the Vaio pages is written by
    although its quite outdated it might give some hints (laptop-mode-tools for example) and inspire you to writte a new wikipage
    they say kernel 2.6.21 has the vaio brightness control inside him, so I'm waiting for 2.6.22 to see how things work with Vaios
    laptops aren't more difficult than desktops, Vaios are pain in the butt (its the first and the last I'll ever buy )

  • Getting a new touch nokia , please i need some adv...

    ok , now i have an e75 nice phone , but i want a touch nokia , ok so there is the 5800 xpress music , 5530 xm , n97 , and n900 , n900 nice phone , but i am not going to use all these specifications and i am more of a media man and the n900 looks like a black laptop , so it is of the list , now we have the 5800 and the 5530 xm , 5800 and n97 i need some advice , does the contacts in the home screen on the 5800 xm have facebook ?or does it even have facebook in the home screen ? anddoes it have an email applicatiopn like the e75 , e71 n97... and can i get e-mail notifications in the home screen ? and wich one is better e75 or 5800 xpress music ?
    Reality is wrong....dreams are for real... 2pac .
    don't forget to hit that green kudos
    Solved!
    Go to Solution.

    Hi, of the phones you mentioned the N97 will give the best media experience. Now as to the previous post , it is somewhat incorrect. The phones specs are virtually Identical, but run on entirely different operating systems N97 Symbian 60 V5 and N900 Maemo a brand new Linux based operating system, probably much better for web browsing, and superior for flash content. As your interest is in music/video, and you don't want a 'black computer' probably the N97 is still your best bet of the phones you've mentioned. The N900 is as yet not fully tried and tested, but in theory with it's larger phone memory should be better for web browsing and running multiple apps, we'll see. But with v2.0 software my N97 is now running smoothly and working well as a phone and media player, and initial complaints have reduced in number and most problems seem to have been solved. Untill the N900 is truly on-line in numbers it will be hard to judge, and there are already a few problems turning up on this site. Most complex 'smartphones' have faults, check the web, people have problems with iPhone, Sony Erickson just withdrew their latest offering,Samsung has it's critics. It all boils down to personal choice. I think the N97 is now a good phone, plenty of help and advice on trouble shooting, and will improve more with future firmware updates(maybe it should have been launched 'perfect' but it wasn't,neither are other makes) Choose the one you fancy, stick with it and almost any problem you find can usually be solved by researching forums like this.
    Enjoy whatever you choose.
    Good Luck
    PS if you want to compare specific phones specification many web sites will give you side by side comparisons !
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Replaced zd8000 motherboard and need some troubleshooting help please............

    Hello All,
     I just replaced the motherboard on our HP zd8000 (pentium 4, 3.0ghz, 2gb ram, Win XP) with a used but tested good MB and need some help with the following.
    1) I now cannot play DVD movies as the error no "dvd decoder" present which was not an issue before?  Where can I go to get a free decoder that will work, as Windows only shows paid versions?  We have the dvd burner/reader with lightscribe. SOLVED! CNET HAD DECODER.
    2) The internal temperature, according to SpeedFan, is running around 140 degrees with just some Internet browsing.  Is that a normal temperature because I only have one of three fans running on the laptop?  Is there anyway of making all three fans run to be sure there are no issues?  I am positive I hooked up everything but again only one fan seems to be running?
    3) I discovered some of the pins were damaged in the card reader.  I may get the Seller to give me a discount, no intention of tearing it apart simply for that, but is there any concern of short or otherwise?
    4) Our battery stopped charging years ago, these were notorious for such, but I purchased a new one last year and hoped the replacement MB would allow charging again.  No such luck though.  Is there anything I can do, BIOS update etc, to make the battery charge?
    5) Anything you folks can think of for me to test to insure the new motherboard is working properly?
    Thanks, Ralph 
    P.S. This was a correct replacement board according to MB serial numbers.  Everything else seems to be functioning properly other than mentioned.  Our graphics went out on the original MB.
    This question was solved.
    View Solution.

    Some of the wires had pushed out of the harness that connected the other two fans.  I double checked and re-attached those so now the laptop is running quite a bit cooler.
    EVERYTHING IS GOOD TO GO!

  • Need some project titles that can be done in java servlets and jsp or ejb

    I am final year cs engg student. I have completed course in java,j2ee. I have done the library management project in servlet. I need some project titles for my final year project. My interests includes, networking, desktop applications.

    Saish wrote:
    I'm not sure how to help other than to advise you will probably have the best success with something that interests you personally. You mention desktop applications and networking. Perhaps start with something Swing (or JavaFX) and perhaps use that to monitor a network, detect intrusions, dynamically load balance, etc. Really, it's whatever will stimulate you through a long project. If you have an idea in mind, but are having difficulties with how to come up with a spiffy title, then post more detail, and we can try and help.
    - SaishThanks Saish for your nice response.
    Whether It is possible to implement the cloud computing ? Is it possible ?

  • IPhone 5 reboot loop. Need some help

    My iPhone5 suddenly reboots and it repeats that every 5-10 mins. The problem gets worse when connected to the computer. Sometimes, when battery is low, it goes off and doesnt turn on, but when connected to the computer, it shows the white apple screen and then goes off and does this repeatedly.
    On reading some blogs online, i tried to restore the software but it didnt help. I even tried restoring it through a downloaded IPSW, even that didnt help.
    Can someone please tell me what could be the solution? As my phone is out of warranty, service centre execs tell me to go for a replacement by paying an amount which is significant, dont want to spend so much. Need some urgent help.

    Restore as a NEW device (not from a backup). If the problem continues, that means you have a hardware problem and have no choice but to replace the device. If the problem is solved, that means there is some corruption in your backup file or maybe one of your apps is causing it. Try adding your apps back one at a time until the problem returns.

  • Need Help In Solving Positioning Problem

    Hi Guys,
    I have a 3 X 3 grid of JLabels of images. I constructed the grid using the grid layout.
    I would like to move a round object which represents a car and place that object in a particular cell. So the grid will be like a background.
    My questions are these:
    1) How can i position this object in a specific cell based on the rows and column values? for instance if i want to put the object in [1][0].
    2) How do i move this object to a different cell using the rows and column values. for instance if i want to move the object in [1][0] to [2][1]
    Thank you all for your help

    This question has nothing to do with Java 2D. I've removed the second thread you started in that forum.
    Thank you for providing a link to this thread in the cross post.
    db
    kap wrote:
    Hi Guys,
    I have posted a question in the Java Programming forum. This is the link :
    [positioning object|http://forums.sun.com/thread.jspa?threadID=5447680&tstart=0]
    I added the link to avoid double posts
    I am asking if someone can help me out because i need an urgent help. Some people have giving some ideas but i don't understand what they mean.
    Need help in solving it.
    Thanks.
    Edited by: kap on Aug 14, 2010 6:59 PM

  • Need some assistance in binary streaming and reading

    Hi,
    altough I studied the examples delivered with LabView (my current version is 6i) I have some challenges to face and I hope someone could help me. This challenges
    may be simple for professionals but I'm not already that experienced. I have an one channel AI input via a DAQ-card (E-series) and I want to write it to a binary file with only the really necessary headers. The data then stored in the binary shall than be displayed after user request to a graph and my client wants to have the possibility to srcoll through the hole stored data to seek some charakteristiks and then mark the area of interest with cursor to move this area to another graph for further analysis. My program is structured in a way that in a whi
    le loop I wait for user interaction i.e. buttons for saving and displaying data. It's for that, that I think I have to split the binary streaming in a sub-Vi that makes the needed preparation and another sub-Vi assosiated to the first that makes the file writuing and thats placed within the loop described above. Maybe I'm with my thoughts on the woodway and someone has better ideas. I tried many things but the result were always frustrating. I would be glad someone could give me some hints based on experience, and not just saying "Look to the delivered examples" as I already read in questions from other users. Thanks for your support.
    Chris

    I think you're going at this in a good way. One issue I see is that you are using version 6i and waiting for user input. Since Event Structures were not available in 6i, you will have to poll for user input and that could make your application slower. An upgrade to 6.1 would help you there.
    Besides that, I like your ideas. If you're sticking with 6i, use a case structure inside your while loop which executes a particular case based upon which button the user pressed. Then, in these cases, call the subVIs which you built. I hope this helps out.
    J.R. Allen

Maybe you are looking for