Problem of memory on my Tecra S1

Hello:

My Tecra S1 has been used for more than 4 years and returned to replace one of the RAMs because of the callback activity launched by Toshiba about 3 years ago. A few days ago the OS (XP) becomes very unstable and crashed. After playing with him for a while, I realize that the RAM modules have a strange problem.

In the past 3 years, these two Rams as well as the other very well, but for some reason they become incompatible type. A reminder of Toshiba activity is 256 MB DDR333, and the other is 512 MB DDR 266, which I've updated by myself when the laptop had just bought 4 years back. If I use one of them, no matter what slot, XP works great, but it becomes crazy and keeps sends me blue screens when I try to log into XP and keeps restarting by itself, if I put the two together. Moreover, I use Memtest86 to analyze the two Rams, and it has no error message about them.

Anyone had a similar experience? or any suggestion will be appreciated.

Thank you very much.

I had a similar problem on my old laptop. The portable frisottés and a BSOD appeared from time to time.
I replaced the modules because I thought one of them would be failures, but I was wrong a slot was faulty.

But I don t think that your locations are memory may be faulty there is a compatibility problem between the different modules and therefore the BSOD appears.

It might be desirable to launch Notepad with two100% similar modules

Tags: Toshiba

Similar Questions

  • There seems to be a MAJOR problem (blocking/memory leak) in "subject: House", also known as the Firefox Start Page, at 26.0 Firefox on Windows!

    There seems to be a MAJOR problem (blocking/memory leak) in "subject: House", also known as start up Firefox, 26.0 Firefox Page, Windows!

    seen on:
    -Windows 7 x 64 machine with 12 GB of RAM and high performance CPU (core i7-920)
    -Comments Machine virtual WinXP SP3 (in Oracle VirtualBox) running on the same computer
    -Intel Atom D525 netbook with 4 GB of RAM, running Win7 x 64

    None of these machines are connected through Sync or something like that. The Firefox instance on the virtual machine is a fresh install / clean.

    The problem:
    -100% of cpu usage for 10 seconds, (util in XP) memory usage goes up to 1.7 GB
    -If "subject: House" is actually the Firefox Start Page, it blocks the computer at startup of Firefox for 10 seconds
    -If "subject: House" isn't the Firefox Start Page, startup is fine - BUT if I press the "home" on the toolbar button it loads "on: House" which causes the same question once again

    Sounds that there is a problem with one of the code snippets that are responsible. I've seen several reports on this issue.

    You can set the browser.aboutHomeSnippets.updateUrl pref an empty string on the subject: the page of config to disable loading (new) checked to see if that helps.

    You can open the topic: config page through the address bar

    You must remove the ' storage\moz-security-about + origin "folder in the folder of Firefox to delete already profile stored clips.

    You can use this button to go to the Firefox profile folder:

  • problem with memory card reader

    bought an Acer C720 Chromebook in July, nine.  Now problems with memory card reader.  Sometimes he reads, sometimes it won't.  This can be corrected?

    Hi PatPeoples84,

    Yes it is possible, unfortunately it will probably come during the service.

    I recommend you contact the provider of the guarantee. In the United States, refurbished products are managed by another institution as new products. If you have any questions, thinking to send me a private message with your serial number and I'll help you get the correct coordinates.

    Thank you
    Cory

  • Problems of memory when running Solidworks.

    Original title: access to more than 4 GB of ram

    I have a computer Dell precision PWS690 under Vista Premium. It a 32-bit system. I'm having memory problems when you run Solidworks, saying: I do not have enough memory and I the hang of the program. The it guy installed an additional 8 GB, so I have now 12 GB of ram installed, but I think that it is only for access to less than 4. The Task Manager displays physical memory available to almost zero. Vista can access up to 4 GB of ram, and how to change it. It seems that I have an extra 8 GB that are not accessible. Thank you.

    Hey Sonic drill,

    1 are you facing this issue only when you run Solidworks?

    You can try to perform a clean boot and see if it helps.

    A clean boot to check if startup item or services to third-party application is causing this issue.

    You can read the following article to put the computer in a clean boot:

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    After the troubleshooting steps, please refer to clean the boot link to put the computer to normal startup mode.

    You can also read the following article and check.

    Prevention of problems of memory

    If this only happens with Solidworks, you can also get in touch with Solidworks for additional assistance.

    SolidWorks Forum

    SolidWorks is unable to get memory

    Hope this information is useful.

  • problem of memory during installation of the applet

    Hello everyone,

    I try to install an applet on TOP javacard IM GX4 card, but I have a memory problem...

    This is my code of the applet:
    package codeSimpleCompteur;
    import javacard.framework.APDU;
    import javacard.framework.Applet;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    
    public class Test extends Applet {
    
           final byte CLA_MONAPPLET = (byte) 0xB0;
           final byte INS_INCREMENTER_COMPTEUR = 0x00;
           final byte INS_DECREMENTER_COMPTEUR = 0x01;
           final byte INS_INTERROGER_COMPTEUR = 0x02;
           private byte compteur;
           byte[] tab;
         
         public Test() {
              compteur = 5;          
         }
         
         public static void install(byte bArray[], short bOffset, byte bLength)
              throws ISOException {
              new Test().register(bArray, bOffset, bLength);          
         }
    
         public void process(APDU apdu) throws ISOException {
              byte[] buffer = apdu.getBuffer();
              
              if (this.selectingApplet()){
                   return;
              }
              
              if (buffer[ISO7816.OFFSET_CLA] != CLA_MONAPPLET) {
                   ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
              }
              
              switch (buffer[ISO7816.OFFSET_INS]) {
              
              
                   case INS_INCREMENTER_COMPTEUR:
                        compteur++;          
                        break;
         
    
                   case INS_DECREMENTER_COMPTEUR:
                        compteur--;
                        break;
                   
                   case INS_INTERROGER_COMPTEUR:
                        tab = new byte[5];
                        tab[0] = compteur;          
                        apdu.setOutgoing();
                        apdu.setOutgoingLength((short)tab.length);
                        apdu.sendBytesLong(tab,(short) 0, (short) tab.length);
                        break;
              
                      default:
                        ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
              }
         }
    }
    and when I try to install it I have this error:
    install -file codeSimpleCompteur.cap
    file name codeSimpleCompteur.cap
    Command --> 80E602001C09A00000006203010C0108A000000018434D000006EF04C60202700000
    Wrapped command --> 84E60200286364A6E5E0D338639BBC807D11E7639A6D1A163A3195C79C076B3E6818C0EE2E59066D9AEAAC01ED00
    Response <-- 009000
    Command --> 80E80000EFC4820265010013DECAFFED010204020109A00000006203010C0102001F0013001F000E000B0056000C00B0000A0023000000BD00000000000001010004000B01020107A000000062010103000E010AA00000006203010C0101003306000C0080030B00010701000000430700B0000210188C00111810B0880018038801180488021805880318068804181006880518078806180888071810078808180888097A04308F000B3D8C000C181D1E8B000D7A0421198B000E2D188B000F60037A1A032510B06A08116E008D00101A042573004800000002000D00180023183D840904415B88097038183D840904435B8809
    Wrapped command --> 84E80000F812D71F1AFC82A2FDB501FF71CCEB5E29DE80D33AFFE71FF49288374F89CF6B56C0988032BB379C47534C47E9E3B3F4F45B86B7B564BB2489542CE853946DC877E011CFB1F802FEABB62D9CF84BD723763D3ED8D6E11AA9F7042912DD81EFA827BC88ED3D8938053A2AA38D52FACE16A4852DE7EE63FF85B4265AA002B31E6B63D3A4A3301B88F2A07C6E5C770235369CC984A490365AFD2A1F8FCA02C3E7E3D3DFB65088D66EBD2E167B7199EEE94FD8F9B8C034E27E2FF7C34685D82B5EDC04A8ED6D8B19EBFBBEA73863CFD0BC75C6CD42AC85975908E01477BA2DCB0FD0386C1E552BEFF92DCED548980B830D0A47767FB6BF51176BEB
    Response <-- 009000
    Command --> 80E80001EF702D181029900B870AAD0A03AE0938198B00123B19AD0A928B001319AD0A03AD0A928B00147008116D008D00107A08000A0000000000000000000005005600150200000102000002020000030200000402000005020000060200000702000008020000090200000A0200000001000000060000010380030203800A0103800303068007010680030003800A0703800A0903800A0509002300140B04040404050404050440050605090203090703000B0531040607051037080A080B00BD010001000000000B00030000000000002E011000000180030210000002800303100000038003041000000480030510000005
    Wrapped command --> 84E80001F80AA622FE5D6E75C8EC596F1B01771A23433D84FAA0E45CCF6FD98FC5AF63A1B6C71E8FAFE640E743D30BB5B628255AE9942A60A803599555942C44520B2D2B27F5981029F781D5544A0031518D3399C91F000C7AFE086ED091CF012676CE35A00A5676F087B9F3D3E6C42AEAF2CEE4848E9B751A2C9665AE16F98EEB5D2A160F8B12D9DD7B1A5849579ECF8006289B40454E3E8A8C12451FDA75F575448E41E6BDE1374C50717C872E06439A5F625267A757CB5B247D0C7A363AB3F8F85E40D696D277212E45EF6BE71F6CC43FE4BDD4ED7D6C5FB6C5F785A6926BCD71A30F381C7A11135314721EBD4AC80AE911AB23B8CF0323658AEC8F
    Response <-- 009000
    Command --> 80E880028B8003061000000680030710000007800308100000088003091000000980030A0200000A8003008100010030003000000000010900330032000E0000000007010043003E006B000000000015002C002C002C002C002C002C002C002C002C002C002EFFFF00300032002E00350037003000390037003B013001B0011004B43101200241014004B441066800A100
    Wrapped command --> 84E88002988B26EA862F2CEBBB9D85FAE96EEEA8CC7C9134BDFBC258587EC8A31D0721E35DEE8F8E80B24ADADE5B4871A291FC1A3396CE9F510A650EAB195D352E696F3450325FCEFE18DDF94C86BE8B8A268956AECA9C4E83DC6B91AF0BA0D03E9E78896769146B41578ED560409049D01202A027AF7EF73985FB65F4C0C47B45F400F4B9EDE2BC344EF09DD437D7429043821EC3EC5A6AC6CE99912400
    Response <-- 009000
    Command --> 80E60C002609A00000006203010C010AA00000006203010C01010AA00000006203010C0101010002C9000000
    Wrapped command --> 84E60C0030FE5C8C290BD6BF2BEFF1C59495E884045AB4418BAFBF48D6C41A9BACD25DE3462262C0B503564CCE38087340DAB6C8DF00
    Response <-- 6A84
    install_for_install_and_make_selectable() returns 0x80206A84 (6A84: Not enough memory space.)
    get_Status return:
    OP201_get_status() returned 18 items
    
    List of applets (AID state privileges)
    a0000000620001     1     0
    a0000000620002     1     0
    a0000000620003     1     0
    a0000000620101     1     0
    a000000062010101     1     0
    a0000000620102     1     0
    a0000000620201     1     0
    a00000015100     1     0
    a0000001320001     1     0
    a0000000030000     1     0
    a000000018100101     1     0
    a000000018100106     1     0
    a000000018100201     1     0
    a00000001830080100000000000000ff     1     0
    a00000001830080100000000000000fe     1     0
    a00000001830060200000000000000ff     1     0
    a00000001830060100000000000000ff     1     0
    a00000001830030100000000000000ff     1     0
    I can't uninstall this applet, and I'm not sure that the problem is memory space...
    you have an idea about this? There is an option with GPshell know the size of free memory on the card?

    concerning
    Alexis

    your instruction register (blabla) is bad.

    This function receives the INSTALL APDU buffer (to install [and maybe make selectable]).

    bOffset points to the offset in the table where the length of using the instance is stored in LV format (see globalplatform).

    Register() expected
    -the table where the help applet is stored
    -the offset in which it is stored
    -the duration of the assistance

    example: you are somewhere in the apdu
    ..... 06 112233445566...

    bOffset corresponds to the shift in Baker at the "06" value
    AID has length 06 and started the next byte.

    If you need to write

    Register (Baker, (short)(bOffset+1), Baker [bOffset]);

    By change, register() without parameters is done automatically.

    can you guess your mistake now? Register (Baker, bOffset, bLength) indicates that the cmdlet HELP length is the length of the full buffer, starting at an offset of zero in the buffer zone. It is a bad mistake of length to HELP, combined with excess of array subscript if the french_traveller_64 trying to copy using!

    concerning

  • Problem of memory Mac Pro 3.1

    Hello

    I have a Mac Pro 3.1. 16 GB of ram in it, but sometimes only see 14FR.

    8 x 2 GB 800 MHz DDR2 FB-DIMM

    What could be the problem? Sometimes you see all the memory and sometimes not.

    2006-2008 (1.1 - 3.1) use FBDIMM that work how and fail over time.

    When they fail if all goes well, they don't disappear that you encounter. Often, they fail when you access and which can cause a kernel panic.

    Sometimes the resettlement of the affected module solves the problem, but often this fix is only temporary and the module must be replaced.

  • I had problems of memory, lately

    15 "MacBook Pro Retina early 2013

    2.7 GHz

    16 GB memory DDR3 1600 MHz

    El Capitan 10.11

    Lately, the window open when I try to open a file as in Photoshop is either empty, or solid black. Same thing if I am recording a file, sometimes I just get a blank window. It happens with other programs in addition to Photoshop.

    Sometimes when I opened the Photos, it immediately crashes.

    So, I'll quit some programs and things return to normal. I really much opening, so I will try to figure out what might be wrong.

    Any ideas would be appreciated.

    Hi hot_spur. Download and run EtreCheck, created by one of his own assistants here in CSA. It is a diagnostic tool that is very useful for us to find problems. It will also give us additional specifications on your Mac. After his execution after the logfile here. It will never contain any personal information

  • Visoft Premium problem does not not on Tecra S10 - 17J

    Hello

    I tried to install Visoft Premium 2007/04 on my laptop Tecra several times, but alwas you have a problem, the software did not work.

    I tried to install in the newley install Windows XP Professional, Windows 7 Professional and Windows 7 Ultimate, but always the same problem, Visoft wasn't runinnig. Wher I start the program, it shows the massage "program has encountered a problem and needs to close." We are sorry for inconvinience. "In the event viewer, it shows
    "Activation context generation failed for"C:\windows\system32\conhost.exe". Load Assembly Microsoft.Windows.SystemCompatible, e processorArchit return = "x 86", publicKeyToken = "6595b64144ccf1df", type = "win32", version = "6.0.7600.16823" is not found. Use sxstrace.exe for detailed diagnosis. »

    I tried to install Visfoft Premium 2007/04 on other much older laptops and the home PC-es, but software worked OK.

    On the Tecra laptop I don't see any other problems, all other software and hardware work. I even went to the center of Toshima service, but they have not found the solution and they don't know where the problem could bee.

    Any ideas how to fix?

    Hello

    I read in some other forums as the Norton or any other Antivirus software might prevent the application startup and running on the computer
    You use these software?
    Maybe you need to disable this for testing purposes

  • Memory config for Tecra 8000 PIII/500

    Can someone clarify this for me - I guess that the memory config for it would be the same as for a PC. Can I mix and match modules memory too long that I do not exceed the maximum of 256 MB. Apart from the conflict, a 133 MHz module would just run at the 100 MHz FSB speed.

    So I could add a module of 128 MB 100 MHz for the standard 64 MB DIMM equipping the Tecra 8000 do 192 Mb or a single 256 MB 100 MHz module... OR 2 x 128 MB...

    Thank you very much

    Hello

    as far as I know the Tecra 8000 has no FSB 100 speed!

    So pay attention to your turn to mixture.

    There are a few Tecra 8000 who BusTyp: 66 MHz Front Side Bus (1.6 volts).

    Good bye

  • Satellite C660 - have a problem using memory stick 4 GB Ocz Rally2 Turbo

    Hello

    Came a cross this rolling strip [http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=217818 | http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=217818]

    Sorry my bad English,

    So I have 4 GB Ocz Rally2 Turbo memory stick, and it will not rise in the computer. My other 1 GB Fujitsu Siemens and 32GB Verbatim USB sticks work.

    It's brand new, portable 2 weeks of age. And there seems to be a problem in the hardware level.
    Windows 7 64-bit.

    Should I just send it to repair/money back guarantee?

    Hi JoneK,

    Have you tried this USB stick on another computer or laptop? The new USB is may be defective and so it doesn t work.

    At the moment I doubt s a problem of your laptop because other USB keys work correctly.
    At least, it might be a compatibility problem between the USB and the laptop but first test it on another computer.

  • Problems upgrade memory on the Satellite L30-134

    I just bought 2 x 1 GB memory for my L30-134 PC4200 and installed that they work fine in the BIOS, see and read as they should do, but when windows starts up it will crash with the two modules are installed, don't ever get to the screen with the loading bar crossing and then I get the blue screen.

    I forgot to take note of the error code, I'm afraid... (Silly I know). If I remove one of the modules and module installation original 512 with just 1 the 1 GB ones that it works perfectly. BIOS has been updated to the latest version 3.10, and again, I get the same problem...
    because everything looks good go in the BIOS I think that its more likely to be a software problem (windows) any maybe some damage data in the registry or maybe a virus... anyone have any ideas?

    In addition, the laptop is actually my step son and he really wants to have the CPU improved Celeron 410 to one that is a little faster. When we look at first in this we was told that several processors are compatible (although not really worth the hassle of installation) they were cel m 450 2 GHz, dual core t2060 and t2080 pent, as well as the core duo t2250, so he bought the t2250 and it wouldn't surprise, or should I say it power on with no display and the stopcock and just epeated cycle. So didn't take is not a genius to establish it was not compat...

    I know the t2080 are used in of the L30 and 1.73 533 FSB with 1 MB L2 cache-65nm and do walk. The t2250 is identical apart from the L2 cache is 2 MB and deepening varies from c to MB depends on when you bought it... because oe it already has the CPU it will sell and use the money to purchase one that will work. If anyone has any info that could help to ensure that it doesn't end up going round in circles I would really appreciate it...

    Oh and just to make laugh you all he was member of staff line Toshiba tech that had told him that the CPU would not work and that the L30 managed to take 2 x 1 GB memory and not once mentioned that there may be problems with two updates...
    Issues such as neither soddin work... lmao

    Are you sure;?  :|

    On the website provided in your posts, I found this info:

    _Radeon Xpress 200M_
    Memory interface:
    -UMA mode operation requires no additional memory
    -* DDR and DDR2 Support *.
    -* DDR speed * up to the * 400 mhz *.
    -* Speed DDR2 * until the * 667 mhz *.

    _Radeon Xpress 200_
    Memory interface:
    -UMA mode operation requires no external graphics memory
    -+ Variants available with single or double channel system memory support.
    -* Support for DDR or DDR2 memory *.
    -* Memory DDR * speeds * DDR400 *.
    -* Memory DDR2 * speeds * DDR2-667 *.

    concerning

  • Business PC HP Elite 8100 SFF: Problem upgrade memory with operating system to 64 b.

    I have a small form Factor Business PC HP Compaq 8100 Elite, with 2 GB RAM and Intel Core i5-650 3.2GHz (n ° 2 x 1 GB 240pin DDR3 SDRAM Unbuffered DIMM DDR3-1333 - hynix HMT112U6TFR8C-H9 https://www.skhynix.com/products/computing/view.jsp?info.ramKind=20 & info.serialNo = HMT112U6TFR8C & posM... ) The operating system is Windows 10 to 32 b.

    In the reference Guide of hardware for PC installation additional memory is reported:

    Additional memory installation

    The computer comes with a double speed 3 vivid dynamic synchronous memory (DDR3 - SDRAM) dual inline memory modules (DIMMS).

    DIMMs of memory on the system card holders can be filled with up to four standard DIMM in the industry.

    These media memory are filled with at least one DIMM preinstalled. To obtain the maximum memory support, you can fill out the card system with up to 16 GB of memory. DIMM DDR3-SDRAM

    For the proper functioning of the system, the DDR3-SDRAM DIMM modules must be:

    • ● standard 240 pins of the industry without buffer non-DDR3-1066 MHz compatible or PC3 - 10600 DDR3 - 1333 MHzcompliant
    • Unbuffered ECC PC3-10600 DDR3-1333 MHz-compatible (Z200 SFF only) ● 1.5 volt DDR3-SDRAM DIMM DDR3-SDRAM DIMMS must also:
    • support the latency CASE 7 DDR3 1066 MHz (7-7-7 calendar) and latency CASE 9 DDR3 1333 MHz (9-9-9 calendar) ● JEDEC SPD mandatory information in addition, the computer supports:
    • front and double-sided DIMMs
    • DIMMs built with devices DDR x 8 and x 16; Built with x 4 SDRAM DIMMs are not supported

    NOTE: The MFS 8100 supports 512Mbit, 1Gbit and technology memory non - ECC 2 GB.

    NOTE: The system will not work properly if you install unsupported DIMM

    I replaced the ram 2 with 4 memory 4GB PC3 - 10600 CL9 DIMM 240-PIN - Kingston KVR13N9S8 / 4 http://www.kingston.com/us/memory/search/?partid=kvr13n9s8/4.

    The BIOS recognizes correctly the installed memory (16 GB) and in the OS installed memory is 16 GB (3.49 used).

    To take full advantage of the installed memory has wanted to update the Windows 10 operating system to 64 b, but the PC goes into continuous reboot.

    I've updated the BIOS but the problem remains.

    To make full use of the installed memory wanted to update the Windows 10 operating system to 64 b, but the PC goes into continuous reboot.

    I've updated the BIOS but the problem remains.

    I also tried to install Windows 7 64B, but after loading the files to start the pc freezes

    Reinstall the original memory, 10 to 64 b windows installs without problem.

    I want to know that is not compatible with the installed memory.

    And if it is possible to avoid having to replace.

    Thank you and best regards.

    @Peppe_Valenza

    I'm not surprised by the response of Kingston.  The issue of density memory was mentioned message #2.

    Try a few other manufacturers of memory and see if you can get the own memory DIMMs.

    Thanks for posting on the forum.

  • Satellite A60: Problem of memory after update Bios V.1.9

    Hi all

    I've just updated my bios to version 1.9 last week. Previously, I've upgraded my RAM from 512 MB to 1.5 GB (P4 2.8 GHz., 40 GB HARD drive) and my phone worked perfectly with the old Bios and RAM. After the Bios Update to the new version, 1.9, my laptop does not accept the module of RAM upgrade, windows xp still shows the blue screen, and then restart.

    After upgrading RAM off, my laptop works again. I tried several ways to solve this problem as take the battery, then reinsert the RAM or even formatted my HARD drive and installed a new Windows XP, but it didn't work. So what can I do to make my laptop to accept the upgrade of RAM? How to solve this problem? For this reason I now intend to buy a new laptop, if the problem can not be solved since I simulate a program on this laptop, so it requires a lot of memory.

    Thank you very much in advance for your answer.

    [Edited by: admin]

    Hello

    I put t really know what is the problem with the new update of the BIOS. In my opinion, you should contact the after-sales Service of Toshiba partner in your country and explain to them the situation. If your new module memory is compatible with the unit you should tell you want to have the old version of the BIOS. As much I know as technicians for this.

    If they see that there is a problem with the BIOS update, I'm sure they will for free.

    Good luck!

  • Strange problem with battery on my Tecra A7

    I currently have a Toshiba Tecra A7, which currently has a problem

    With the battery connected and by pressing the power button, the battery led flashes 11 times short of what I see

    Take the battery, plug in the power adapter, and it does the same thing. Battery LED blinks 11 short

    This laptop is barely a month, I'm reluctant to open at all, as I do not want the guarantee. Which suggests a person I try to solve the problem?

    Hello

    Please don? t do anything and don? t open the unit. On this way, you will lose the warranty and you can't solve it alone. Please contact your dealer and explain the situation. According to your assignment, I assume that there is a power problem. Electronic power supply has detected an error and this way sends the hex code.

  • Problem connecting wireless with my Tecra A8

    Hello

    I have problem connecting WiFi with my laptop Tecra A8. When I opened my laptop, it does not connect to the wireless network.
    I tried several ways to solve this problem.
    I updated for active connections, then I click on the Connect button after you select my wireless LAN, but it doesn't connect.
    Or I restart my computer, but it doesn't connect.
    However, it connects to the network wireless in anytime after about 15 minutes.

    Also when I tried to connect to the network wireless at home, but I couldn't t connect. I removed the password for the connection. Then I connected without any problem.
    I wonder that there is no problem with installation? Or my wireless card doesn't work?
    Can someone help me?

    Thank you

    > Also when I tried to connect to a home wireless network, but I couldn't t connect. I removed the password for the connection. Then I connected without any problem.

    According to the statement, all looks like that you try to use a password for encryption wrong!

Maybe you are looking for