How can I run the firmware of WRT54G ?

I bought Wireless WRT54G ver6 in U.S and it worked well. But now I have business in Vietnam so I carried on but the power light is blinking, I used adaptor with input 220V and output 12V, 500mA. I also downloaded  the firmware WRT54Gv5v6_v1[1].02.0_fw.bin as I read in FAQ but how can I open that file, I can not use Winzip to open. Thank you for helping me

You cannot open .bin file, first off all let me know is power light is still blinking?? If not…check the IP address of computer that is getting from router, try to ping 192.168.1.1 (default IP of router), If you are getting replies you can upgrade the firmware… you can use TFTP application, logon to following link and download tftp.exe… ftp://ftp.linksys.com/pub/network/  

Similar Messages

  • How can I choose the time in WRT54G

    Hi
    Problem:
    How can I choose the time in WRT54G?
    Data:
    WRT54G v5.1, firmware 1.0.9
    Thank you for your attention

    I don't think that you can actually "choose the time" on your router, that is, you cannot set it to an arbitrary time.  The router's clock is set from the internet.
    However, you can choose your "time zone" and whether or not to use "daylight saving time".  To do this, open your web browser and point it to address 192.168.1.1.  Enter your router password.  This will take you to your router's web setup page.  You can set the time zone on the bottom of this first page.  Then click "Save Settings".  Exit your browser.  When your router has internet access, it will set itself to the correct time.

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

  • How can I update the firmware all at once

    I'm a tech support in a school, approximately our school has over 500 laptops, how can I update the firmware on all laptops at once?

    Apple Configurator is the software you want - and it's free from Apple. However, I'm dubious that firmware can be updated all at once.
    http://help.apple.com/configurator/mac/1.4.1/

  • Help:How can I run the J2EE Client Application? Thanks

    Help:How can I run the J2EE Client Application that will access the remote J2EE1.4 application server which runs on another host computer?
    I have developped a stateles senterprise java bean name converter and deloyed it in the j2ee1.4 application server on the host machine A. The converterbean provides the remote home interface and remote interface. At the same time I have developped the j2ee application client named convertappclient. When I access the conveter bean at host computer A through the script 'appclient.bat' as 'appclient -client convertappclient.jar', the client can access the bean sucessfully. Now I want to access the bean through the script 'appclient.bat' at host computer B,what files should I copy from host computer A to host computer B;and what the command line should be like? Thanks!
    The following are the code of the enterprise java bean and it's home interface .
    The client code is also provided.
    The enterprise java bean:
    package converter;
    import java.rmi.RemoteException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import java.math.*;
    public class ConverterBean implements SessionBean {
    BigDecimal yenRate = new BigDecimal("121.6000");
    BigDecimal euroRate = new BigDecimal("0.0077");
    public ConverterBean() {
    public BigDecimal dollarToYen(BigDecimal dollars) {
    BigDecimal result = dollars.multiply(yenRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
    public BigDecimal yenToEuro(BigDecimal yen) {
    BigDecimal result = yen.multiply(euroRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
    public void ejbCreate() {
    public void ejbRemove() {
    public void ejbActivate() {
    public void ejbPassivate() {
    public void setSessionContext(SessionContext sc) {
    The bean's remote home interface :
    package converter;
    import java.rmi.RemoteException;
    import javax.ejb.CreateException;
    import javax.ejb.EJBHome;
    public interface ConverterHome extends EJBHome {
    Converter create() throws RemoteException, CreateException;
    The bean's remote interface:
    package converter;
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    import java.math.*;
    public interface Converter extends EJBObject {
    public BigDecimal dollarToYen(BigDecimal dollars) throws RemoteException;
    public BigDecimal yenToEuro(BigDecimal yen) throws RemoteException;
    The j2ee application client:
    import converter.Converter;
    import converter.ConverterHome;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.rmi.PortableRemoteObject;
    import java.math.BigDecimal;
    public class ConverterClient {
    public static void main(String[] args) {
    try {
    Context initial = new InitialContext();
    System.setProperty("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
                   System.setProperty("java.naming.provider.url","jnp://10.144.97.250:3700");
    Context myEnv = (Context) initial.lookup("java:comp/env");
    Object objref = myEnv.lookup("ejb/SimpleConverter");
    ConverterHome home =
    (ConverterHome) PortableRemoteObject.narrow(objref,
    ConverterHome.class);
    Converter currencyConverter = home.create();
    BigDecimal param = new BigDecimal("100.00");
    BigDecimal amount = currencyConverter.dollarToYen(param);
    System.out.println(amount);
    amount = currencyConverter.yenToEuro(param);
    System.out.println(amount);
    System.exit(0);
    } catch (Exception ex) {
    System.err.println("Caught an unexpected exception!");
    ex.printStackTrace();
    }

    Surprisingly I find an upsurge in the number of posts with this same problem. I recently found a post which gave a nice link for this. Follow the steps and it should help:
    http://docs.sun.com/source/819-0079/dgacc.html#wp1022105

  • How can i erase the firmware of cisco 7912 phone ?

    how can i erase the firmware of cisco 7912 phone ? the firmware is crashed in this 7912 phone , i want it to download another copy from CUCM8.5 .
    the way i did on 7911phone doesn't work on 7912.

    https://supportforums.cisco.com/discussion/10797901/reset-factory-default-ip-phone-7912
    You can try that procedure but I'm not sure how far that factory reset goes on those phones.  I know the 7940/60 series you can blow out everything except the CNU which would do exactly what you are looking for.

  • How can i run the example programme without hardware

    Hi,
         We are using NI-9233 for our Project. We would like to run the example programme, the NI-9233 getting started(host).vi ... I would like to ask that how can i run the Programme without Hardware.& How shall i get the input signal (simulating signal)?because we would like to test it while we are waiting for the hardware to be delivered . 
    thanks
    Best regards

    As Mike indicated , " you can use MAX to simulate some (not all) DAQmx devices. There's a NI-USB-9233 device that you can probably use. Open MAX, then expand "My System", the expand "Devices and Interfaces", then right-click on "NI-DAQmx Devices" and select "Create New NI-DAQmx Device -> NI-DAQmx Simulated Device". Select the device from the list. See the online help for MAX for further help.
    If you don't see "NI-DAQmx Devices" in MAX you need to install NI-DAQmx. You can download it from NI here. "
    hi,
         the link you gave me to download is "NI-DAQmx Devices" ... There is no software to download for Labview 8.2.1. So should i use 8.1 or 8.3 instead of 8.2.1 ? If not, can you tell me the CD no. that includes the "NI-DAQmx Devices" folder of Labview 8.2.1 version? Because we can get the cd from our school's component store. Thank you so much.
    Best Regards,
    Su

  • How can i run the java bean sample program download from OTN

    hello to all
    i have a p[roblem. i have downloaded the sample progam from oracle web site which is a java code that connect with the oracle and shows a form. how can i run the from.
    can any body help me pleaSEEE
    thanks
    kamran ahmed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi Darryl.Burke
    So your telling, we cannot run our Java Program when system shutdowns...In my application, when user has schedule for next days and he shutdown his PC. On the next day when System Started i should able to get back my schedule on the Specified time(I'm TimerTask class in Java)... How can i achieve this using Java? can u tell me clearly..

  • How can I run the "Find my Iphone" app in my Itunes?

    How can I run the "Find my Iphone" app in my Itunes?

    Find my iPhone App can only run in iPhone and not iTunes.  If you have activated iCloud and set Find my iPhone to ON, you can sign in to https://www.icloud.com to run Find My iPhone there.

  • How can i update the firmware on HH5

    I imagine the answer is probably that you cannot do it manually .
    I have only just started to reuse my Home hub 5 last week after initail problems wheni first got it .
    It is running the following firmware from 26/03/14
    How can will it be before the firmware updates automatically .. if ever ..... or can i download tne latest version from somewhere and install it  ?
    BT Home Hub 5 (Type A) | Software version 4.7.5.1.83.8.173.1.6 | Last updated 26/03/1

    there have been a few other posts previously where the hub appeared to take ages before it updated.  you could try a factory reset and then leave conencted and see if that triggers the automatic update
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • 1 app, 3 devices, 1 iCloud - how can I run the same game on different devices?

    My wife and I share one iTunes account and one iCloud account for 2 iPhone 5's and an iPad.  Our home laptop is a PC running windows 7.  We are not able to both play the same game (specifically Carcassone) at the same time on different devices which is frustrating, how can I make this happen?  Do I need two separate accounts?  Can I have two accounts with a PC?  We don't want to sacrifice the photostream to get it though.
    Thank you,
    Jacob

    Go to iTunea>Preferences>Devices and see if there is a backupright at the time you did the update. Then try restoring from that backup. If the apps are in your iTunes library, any app data will be restored to the iPod.
    When restoring from an iOS 4 (or later) backup, if the device had a passcode set, iTunes will ask if you want to set a passcode (and remind you that you had protected your device with a passcode). iTunes will not ask you to set a passcode when restoring from iOS 3.x and prior backups.
    Therefore, remembe the passcode that you enter this time.
    It appears that if you restore from a backup, that backup is not subseqyently overwritten by the next backup.

  • HT1237 How can I install the firmware without an installed operating system?

    I'm trying to update the firmware on a mid2010 macbook pro whose hard drive failed.  In order to use Internet Recovery I need to update the firmware.  I don't have an OS to boot to YET so I'm no sure how to use the DMG file via a direct boot.

    paulpoteat wrote:
    I started down this path because as per http://www.apple.com/macosx/recovery/ it says "if your Mac problem is a little less common — your hard drive has failed or you’ve installed a hard drive without OS X, for example — Internet Recovery takes over automatically".  After doing some research I see that in order to get Internet Recovery to work you need an upgraded firmware, hence my opening question.  Also at that link it says "Not all Macs running OS X Lion are enabled for Internet Recovery. But Apple still has you covered with the Recovery Disk Assistant." so I tried going down the Recovery Disk path.  To be honest, w/o the original restore media, I wasn't expecting any of this to work, but the language on the macos/recovery site makes it seem like it is possible.
    It is very possible but you need to create the Lion Recovery Disk Assistant, Recovery HD USB drive, on the computer it is going to be used on from the Recovery HD partition that is on that computer when Lion and the R-HD is on that system.
    In all honesty Apple should have a method and instruction on how to create a REAL Lion Install Thumb drive or DVD if you like. In stead of this STUPID Download system.

  • How can I run the C program which will interact with user

    hi, all
    I wanna run a C program whose function is that just show a line of characters, waiting for user input and finally show what user has entered. The C can run correctly in command window. But when I use Runtime class, it can not run correctly. My question is that how I can emulate that C program just by invoking Java method. The code I have written below, thank.
          String command = "cmd /c a.exe";  // a.exe is that C program
          String s;
          try {
             Process process = Runtime.getRuntime().exec(command);
             InputStream input = process.getInputStream();
             BufferedReader bufferedReader =
                new BufferedReader(new InputStreamReader(input));
             while((s = bufferedReader.readLine()) != null)
                  System.out.println(s);
          catch(IOException e) {
             System.err.println("IOException: " + e.getMessage());
          }

    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Process.html#getOutputStream()

  • HT201257 How can I run the hardware test when my USB ports and bluetooth doesn't work?

    The USB ports and the Bluetooth suddenly will not work on my Mac Mini (2008). There is very little I can do except using Remote Desktop. To run the Hardware Test, the D key has to be pressed during startup. I got no key to press. Is there any other way to do this?

    Sorry, focused on bluetooth issue. If USB and bluetooth are knackered, try an SMC reset:
    Shut down the computer.
    Unplug the computer's power cord.
    Wait fifteen seconds.
    Attach the computer's power cord.
    Wait five seconds, then press the power button to turn on the computer.

  • How can i run the ie extension in compatibility mode

    I have installed the IE extension but I need to view a web page in IE Compatibility Mode. Does anyone know how to do that? Thx in advance.

    Maybe the extension's author can answer that. Usually there is a support link on the download page on the Add-ons site.
    On another subject, the forum software detected your Firefox as version 15. Is that correct?
    Version 15 is not secure; Mozilla discloses [https://www.mozilla.org/security/known-vulnerabilities/firefox.html security flaws] after each new release. Is something holding you back from upgrading to Firefox 26? Please let us know so we can suggest solutions or workarounds.
    If Help > About Firefox shows Firefox 26.0, you may need to clear the preference that is misreporting your version number. See: [[Websites say that Firefox is outdated or incompatible even though it's the latest version]].

Maybe you are looking for

  • SG300 not authenticated in Configuration Assistant

    Hello, I am fairly new to the Cisco Switches and just recently received an SG300-28, I have changed it to L3 and setup the IP along with 3 LAGS and everything is working great, I am currently setting up 3 SG300-10P that will connect to the 28 and was

  • So slow, want to return it so badly

    Hello, Does anyone have a remedy for my Blackberry Torch? It is extremely slow and browsing websites is impossible (so slow you just want to turn it off).  Do you know anything about the warranty? Giving it to service to renew the phone or return it?

  • IPhoto09 "Quit unexpectedly"

    Hi guys, recently i have accidentally deleted my iPhoto and cleared the trash can. I have tried to reinstall iPhoto. However, after reinstallation, iPhoto continuously quits unexpectedly when the program is running. I tried many solutions such as del

  • Addresses slow to appear when first letter or two are entered

    When writing an email I'll enter the first one or two letters of the addressee's name and the computer cycles for several seconds looking for the name choices. My old macbook pro and my wifes computer don't do this. Why is it so slow identifying the

  • Garbage Collector seems not to run

    Hi! I have a problem with the garbage collector: To free memory, I regularly run the garbage collector in my app ( System.gc() ) after releasing resources by setting the reference variable to "null". But after some time I get an "out of heap memory"