I am asking help for set up.

I have a 2wire connecting to my internet. I bought a Linksys wireless-G ehternet bridge with the purpose of coonecting it to another computer downstairs wirelessly.
I don't know how, no matter how I tried to figure everything out.
Do I lack anything, or did I buy the right thing?
Please help.
Loven

It will work with Printer .... but in that case you need to connect the Printer directly to the Ethernet Bridge using CAT5 cable ... not USB cable ..... If you want to use any device that works with printer ... i will suggest you to use wireless print server (WPS54G) ... It connects using either USB cable or Ethernet cable to the Printer ... & communicates wirelessly with router .....

Similar Messages

  • Already have wireless network, need help for set up of time capsule for wired backup only.

    Hello all -
    I have a time capsule that plugs into wall and used a wireless network to back up computer.  It would always mess up internet afterwards so I would unplug the time capsule and reset internet until the next back up.  my time capsule now will not link into my computer. It just flashes amber.  Spoke with apple and was told to come on here and ask for help for setting up time capsule for a wired backup only and to mention that I have a wireless network.
    Hope any of this makes sense.
    Thank You!!

    Spoke with apple and was told to come on here and ask for help
    Really?  The paid professionals at Apple told you to post on a forum where users.....just like you....are trying to answer questions?  We'll try to help, though.
    For starters, please tell us the make and model of the modem/router that you have now that is providing your wireless network.

  • Activity app did not ask me for set up

    When I launched the activity app for the first time, it did not ask me for my stats (gender, etc.) it it should have according to the guided tour. Hard tapping on the app only allows me to customize calorie goals.
    How do I set this app up?

    Hi mapex_venus,
    After reading your post, I went through the Apple Watch User Guide and found the steps to adjust your personal info:
    https://help.apple.com/watch/#/apd7d17e9500
    Apple Watch uses the information you provide about your height, weight, gender, and age to calculate how many calories you burn, how far you travel, and other data. In addition, the more you run with the Workout app , the more Apple Watch learns your fitness level—and the more accurately it can estimate the calories you’ve burned during aerobic activity.
    Your iPhone GPS allows Apple Watch to achieve even more distance accuracy. For example, if you carry iPhone while using the Workout app on a run, Apple Watch uses the iPhone GPS to calibrate your stride. Then later, if you’re not carrying iPhone, or if you’re working out where GPS is unavailable (for example, indoors), Apple Watch uses the stored information about your stride to measure distance.
    Update your height and weight.  Open the Apple Watch app on iPhone, tap My Watch, tap Health, Weight, or Height, and adjust.
    Thank you for contributing to Apple Support Communities.
    Take care,
    Bobby_D

  • Getting help for setting up a "good" network

    Hi all,
    I've been "managing" our network and doing the IT stuff even though I'm not a "true" IT guy, just a graphic artist dabbling in the stuff. I want to get some help on moving our multiple public IP address network to a more secure single Public IP address. I don't know where I can get that help so I'm taking my chances here even though this is not specific to Apple server.
    Here's the equipment we have:
    Apple Extreme dual band
    Apple Server 10.6.3 for file services, iCal, iChat, DNS, Open directory, Address book, Web.
    FTP server using CrushFTP on a Mac Pro running 10.6.3
    Two ADSL modem from same ISP, one 16 Mbps the other 10 Mbps
    a Peplink Balance 310 for load balancing the traffic (and it's not working as advertised as far as I could configure it.
    30 static IP addresses hooked to the 16Mbps modem/router
    a gigabit switch ASANTE Intracore IC36240
    a 100 mbs switch ASANTE intracore 3524
    I'd also like to be able to log into any machine remotely with ARD. Right now, it's a peace of cake with everyone having it's own public IP address, but how will I make this work with DHCP? I'd also like to be able to have VPN enabled.
    I have no idea how to make the best of this equipment so if you have any insight or know where I can get some help to set that up, that'd be great!

    There are as many 'good' networks as there are network requirements and hardware combinations.
    Get a server-grade firewall, if that peplink router can't provide that function.
    Figure out what's up with the peplink router.
    If the peplink isn't working and if it doesn't have firewall capabilities (I've not read the specs), I'd replace it with a firewall with dual uplinks.
    Once you get DHCP going, you'll have two IP subnets, and you'll have to set up subnet routing for your gear. Other than that (and with that external server-grade firewall), the remote connections are straightforward.
    The server-grade firewall should have VPN end-point servers for pptp and l2tp, and probably ssl, and probably a DMZ. RADIUS support, likely. For this case, dual uplinks and support for running both.
    Stay out of 192.168.0.0/16 for your private stuff.
    I'd likely set up the public static IP for the router, the DMZ, and key stuff that needs to be public facing. I might well run the rest of the stuff in a private IP block.
    None of which involves Mac OS X.

  • Asking help for INSERT, DELETE, UPDATE, SELECT

    I have to build a program that is like a bridge from the dabase hsqldb and the final user.
    So the user has the options of SERCH, EDIT, INSERT or DELETE a register/field/row whatever.
    Remember that the values are entered by the user, so I don't know the field to be edited, deleted, etc...
    I would thank a lot if you could put some code to do all these operations.
    But please, if you won't post the codes please don't post nothing else.
    I need the example codes!
    Thanks if you can give me a hand.

    I Just need to understand what's wrong with my code:
    // call this when user presses insert button...
    public void insertRegister() {
    String title = "Inserting new register...";
    String tempId = JOptionPane.showInputDialog(null, "Enter ID Client:", title, 3);
    int id = Integer.parseInt(tempId);
    String name = JOptionPane.showInputDialog(null, "Enter name Client:", title, 3);
    String tel = JOptionPane.showInputDialog(null, "Enter tel Client:", title, 3);
    try {
    // Setting up the PreparedStatement
    PreparedStatement preparedStatement = connection.prepareStatement("INSERT INTO CLIENTS (id_client, name_client, tel_client) VALUES(?,?,?)");
    // Now we insert the real values for PreparedStatement and execute it!
    preparedStatement.setInt(1, id);
    preparedStatement.setString(2, name.toUpperCase());
    preparedStatement.setString(3, tel);
    preparedStatement.executeUpdate();
    catch(SQLException s) { s.printStackTrace(); }
    // call this when user presses delete button...
    public void deleteRegister() {
    try {
    // Setting up the PreparedStatement
    PreparedStatement preparedStatement = connection.prepareStatement("DELETE FROM CLIENTS WHERE id_client = ?");
    String tempId = JOptionPane.showInputDialog(null, "Enter ID Client to be deleted:", "Deleting register...", 3);
    int id = Integer.parseInt(tempId);
    preparedStatement.setInt(1, id);
    preparedStatement.executeUpdate();
    catch(SQLException s) { s.printStackTrace(); }
    // Of couse I don't want anyone coding for me...
    // But if I'm not asking too much, just please someone tell me what's wrong with my code, and how to fix it. That's all.

  • Ask help for install solaris 7

    When I Install solaris 7 in my server sun140(ultra 1), This
    Message display on my screen:
    ---------------------------------------hereinafter----------------------------------
    ok boot
    Boot device:net File and args:
    Timeout waiting for ARP/RARP packet
    Automatic network cable selection successed:Using TP Ethernet Interface
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    Timeout waiting for ARP/RARP packet
    ----------------------------------------hereinbefor-------------------------------
    What's wrong? What shalld I do.
    Thanks
    **** merry christmas and Happy New Year***

    Hi,
    At the ok prompt, type 'printenv' make sure the last variable 'diag-switch' is set to false. If its true, set it by using setenv diag-switch? false
    also, what is your boot-device set to? is it disk, can you see your disk?
    try 'probe-scsi' to make sure you have a disk to boot off. It may be your disk is not bootable, therefore its trying to boot off the network
    Hope this helps.
    M

  • Help for set classpath

    Dear Sir \ Madam
    I have download javamail-1.4.zip and jaf-1.1.zip from sun at c:\j2sdk1.4.1 directory
    Then I extract these files in same directory with folders javamail-1.4 and jaf-1.1. These folders have mail.jar and activation.jar file
    I am confused to set correct path
    Please help me

    You could have looked into installation instructions bro!
    anyways classpath looks like this
    C:\j2sdk1.4.1_03\jre\lib\rt.jar;.;%classpath%;C:\Tomcat 4.1\common\lib\servlet.jar;
    Give your jar file location after lib. Set the PATH variable too, which would look similar to this:
    C:\j2sdk1.4.1_03\bin;C:\Tomcat 4.1\common\lib\servlet.jar;.;
    You can go to
    http://java.sun.com/j2se/1.3/install-windows.html
    or
    http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/classpath.html
    for detailed notes.
    Hope it helps.
    Rk.

  • Asking help for patch

    Hi,
    Could some body please help me!!
    I need patch for installing oracle under Redhat Enterprise3 and dont have an account to login to oracle metalink.
    could some body send me the patch??
    ( i need p3119415_9203_LINUX.zip and opatch Release 2.2.0 (p2617419_210_GENERIC.zip))
    I need this patch because after applying patch 3006854, I tried to install Oracle Universial Installer 2.2.0.18.0 and can be installed succesfully after that i tried to install Oracle9iR2 Patch Set 3 9.2.0.4.0 but the installation could not be finished with error say nothing to be patch.
    I ignore it and run ./runInstaller for install database but the GUI terminate without an error contain in file /oracle/OraInventory/logs
    Thanks and Regards,
    Ed

    Dong,
    there's no shortage of problems with the O9iAS installation on W_2000. It's certainly not for the faint hearted but it can be made to work in the end. I thought I had the same problem as you and I too aborted it. After dropping the schemas and restarting the configuration it happened again but completed OK when I left it alone.
    It took several hours but worked OK afterwards or at least I had a different set of problems. There was a previous entry which mentioned this in one of the discussions
    which suggested it may be a bug. Try searching for "90%".
    S.

  • Plz help  for set focus in the table column

    hi
    I have aproblem like i want that when i click on submit button aftr filling tables column value if there is any error the error massage displaying after that click on masaage ok button get focus of my cursor on the same column where i was not fill any value .
    i am giving a piece of code also with this also
    thanks in advance
    else if(!checkResources())//check if all resource brackets are set
    JOptionPane.showMessageDialog(this, "Resource Brackets are not correct or complete." , "Error", JOptionPane.OK_OPTION);
                   //resourceTable.requestFocus(true);
              return;
    private boolean checkResources()
    try
                   float number = -999999999.0F;
              float[] lowerRange = new float[ resourceModel.getRowCount()];
              float[] upperRange = new float[ resourceModel.getRowCount()];
              allResource.setVisible(false);
              overlapRes.setVisible(false);
              for( int i =0; i< resourceModel.getRowCount(); i++)
                   if(((Boolean)resourceModel.getValueAt(i,4)).booleanValue())
                        lowerRange[i] = -999999999.0F;
                   else
                        lowerRange[i] = ((Float)resourceModel.getValueAt(i,2)).floatValue();
                   if(((Boolean)resourceModel.getValueAt(i,5)).booleanValue())
                        upperRange[i] = 999999999.0F;
                   else
                        upperRange[i] = ((Float)resourceModel.getValueAt(i,3)).floatValue();
              for(int i =0; i<lowerRange.length-1 ; i++)
              {     int temp =i;
                   for(int j= i+1; j<lowerRange.length; j++)
                   {     if(lowerRange[temp] > lowerRange[j])
                             temp = j;
                        else if(lowerRange[temp] == lowerRange[j])
                             if(upperRange[temp] > upperRange[j])
                                  temp = j;
                   if(temp != i)
                   {     float swapt = lowerRange[i];
                        lowerRange[i] =lowerRange[temp];
                        lowerRange[temp] = swapt;
                        swapt = upperRange;
                        upperRange[i] =upperRange[temp];
                        upperRange[temp] = swapt;
              for(int i=0; i<lowerRange.length; i++)
              {     if(lowerRange[i] != number )
                   {     if(lowerRange[i] < number)
                             overlapRes.setVisible(true);
                        else
                             allResource.setVisible(true);
                        return false;
                   number = upperRange[i];
    if(number != 999999999.0F)
              {     allResource.setVisible(true);
                   return false;
              return true;
    catch(Exception e)
    CAT.error("Error in checking wheather resource Bracket is complete or not",e);
    return false;
    this code belongs to action perform method....
    the function for chek rong value is ritten insisde checkresources() function
    plz help

    plz help ASAP

  • Need Step-By-Step for help for setting up accruals for online payslip.

    Thank you in advance for any help you are able to provide.
    I am attempting to setup accruals to show on the online payslip in 11.5.10.2. I have read through the documentation and followed the steps, however the vacation accruals continue not to show on the online payslip. Consultants implemented this system originally but did not setup vacation accruals to show on the online payslips. Online Payslips are working, but the accruals are not showing, they were never set up to.
    We have done the following:
    -US Super HRMS Manager-Work Structures- Organization- Description
    -Selected our Organization- Others- Payslip Information
    -Under Additional Organization Information- Setup the vacation accrual as:
    Type: Element
    Element Name: Vacation accrual
    Input Value: Hours
    Display Name: Vacation accrual
    -We have run a payroll in TEST and viewed the online payslip for an employee, but the vacation accrual portion does not show.
    Are there additional steps I am missing?
    Thank You!
    Keisha

    You don't say which router you use but I guess it is not a VLAN Router. The SRW is a L2 switch. It separates VLANs on ethernet level. If you want to make some sense out of that you'll need a VLAN router or L3 switch to which you trunk all those VLANs and which routers the traffic to the internet and between the VLANs. The SRW cannot do that. It separates the VLANs but it cannot join them or route traffic between them. Routing is a task of a router or L3 switch.

  • Ask help for OID on Linux

    I installed OID which come from the download version of Oracle 8i 8.1.7 on redhat linux 6.2. I use universal installer installed the software code and run postcfg script in $ORACLE_HOME/ldap/postcfg to generate the database and LDAP schema. After correct some
    bugs manually in the postcfg(it is better to add one sentence of oidmon -start) and bugs in oidadmin(script in $ORACLE_HOME/bin, one is it point to a wrong place of jre, the other is it use a switch that only worked on sparc), I finally started the oidadmin.
    BUT, I still can not login the OID from oidadmin. Can any guy kind give me some info on what is the initial password for oidadmin of OID? I have tried all combos that listed on the on-line help, like: cn=orcladmin, oracladmin, etc. it doesn't work. I also use sqlplus as system to search it in the tables
    of the OID database, but find nothing.
    Thanks for any info or hint!
    null

    Hello:
    Sorry it took so long to respond to your question. I was exhibiting OID at AppsWorld in Paris and New Orleans for the past 2 weeks.
    Assuming you have followed the installation procedures from the "OID Installation Guide" there is one small bug patch that needs to be applied to the Linux versions. You can obtain a copy of this patch from the Oracle Metalinks web site:
    http://www.oracle.com/support/metalink/index.html
    Assuming that OID is up and running you should be able to start a gui JAVA tool from the command line prompt by typing in "oidamdin" or from your Linux Window console. The super user account name is "orcladmin" and the default password is "welcome". The default port number is 389. Also make sure you put in the host name of your machine.
    Let me know if any of this helps. If not Ill try to help you reinstall OID to make sure it is installed properly. I am unable to fully understand where you are stuck from your description of the problem.
    thanks,
    Jay
    null

  • Request help for setting Globalization Parameters

    Hi all,
    I have a test database(oracle9i) running on Redhat linux with the following Nls database settings.
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET US7ASCII
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 9.2.0.4.0
    I created a temporary table as
    Create table Temp1(str nvarchar2(1000));
    Now I inserted some japanese characters into Temp1 table through script(script saved with encoding UTF-8).
    When I am trying to access the data through Crystal Reports, The data from Temp1 table is displayed as "?????".
    Which parameters I need to set in the database to implement this.
    Any links/suggestions will be helpful
    Thanks in Advance,

    Have you tried the UNISTR() function?
    There are no parameters in Oracle9i that would allow you to insert Japanese data from SQL*Plus into NVARCHAR2 column using SQL text literals, if your database character set is US7ASCII. This is because literals are always converted first to the database character set.
    You could do this only in SQL*Plus 10.2 connecting to Oracle Database 10.2 by setting environment variable ORA_NCHAR_LITERAL_REPLACE=TRUE and using NCHAR literals: n'text' or nq'#text#'. In Oracle 9.2, you have to simulate this functionality yourself by using the UNISTR function.
    If you now run SELECT DUMP(<your column>,1016) FROM <your table>, you will see that the column contains only question marks ( 00, 3F ).
    -- Sergiusz

  • PLease I need "electric drum" help for set-up

    I am trying out an electric drum set. I tried going into my pre-amp then into GB, but it was just the "trigger" noise.
    I then was given a Yamaha PTX8 Percussion Tone Geneator box to create the sounds, however I know nothing about the box and it is not producing good "user-ability" for us.
    Is there not a way to just go from the "drum" into the pre-amp, (by passing the Yamaha box)?
    Can garage band not simulate what the box is doing, is there not a way to set a snare in GB for the "snare" electric drum?

    You seem to be talking about two completely different things.
    If you're going through a preamp, you're recording audio, but it sounds like you think you're triggering MIDI events.
    If you're going through a preamp, then you'd want to create a New Basic Track in GB to record the sound you're sending to GB.
    Also:
    http://www.thehangtime.com/gb/gbfaq2.html#recordlinein

  • Asking help for insert anydataset(CLOB type) into anydataset col please.

    I am using anydataset as a column type. after referring to the demo anydset.sql:
    can run then following correctly:
    declare
    as1 Sys.AnyDataSet;
    at1 Sys.AnyType ;
    cl1 clob ;
    begin
    Sys.AnyDataSet.BeginCreate(DBMS_TYPES.TYPECODE_CLOB,at1,as1);
    for i in 1..2 loop
         as1.AddInstance();
         cl1 := to_clob(rpad('Clob',i*10,'Clob')) ;
         as1.SetClob(cl1) ;
    end loop ;
    as1.EndCreate();
    --anydataset_display_value(as1);
    end ;
    while if just added one sql to update the cell value to as1 as following:
    declare
    as1 Sys.AnyDataSet;
    at1 Sys.AnyType ;
    cl1 clob ;
    begin
    Sys.AnyDataSet.BeginCreate(DBMS_TYPES.TYPECODE_CLOB,at1,as1);
    for i in 1..2 loop
         as1.AddInstance();
         cl1 := to_clob(rpad('Clob',i*10,'Clob')) ;
         as1.SetClob(cl1) ;
    end loop ;
    as1.EndCreate();
    --anydataset_display_value(as1);
    update dumatmp.tbad set colanydataset1 = as1 where id = 0;
    end ;
    I got :
    ERROR at line 1:
    ORA-22370: incorrect usage of method AnyData Insert
    ORA-06512: at line 14
    why? I know that we did not support embedded LOBs in anydata, is it the same for anydataset and documented?
    Thanks a lot, hope can got response asap, happy Christmas!

    Also, you should always close your resources in finally blocks. So not this:
    try {
      st.executeUpdate(query);
      st.close();
    } catch (SQLException ex) {
      Logger.getLogger(Parqueadero.class.getName()).log(Level.SEVERE, null, ex);
    }because if executeUpdate throws an exception, the close() method is not called. Do this instead:
    try {
      st.executeUpdate(query);
    } catch (SQLException ex) {
      Logger.getLogger(Parqueadero.class.getName()).log(Level.SEVERE, null, ex);
    } finally {
      st.close();
    }That way the close method is always called no matter what happens.
    I'm also a bit confused by a method which closes a resource which it didn't create. The general rule of thumb is that if you (some piece of code) create a resource, you should also close it. But your statement object is being created by a static method from some other class. For all I know that could be getting a statement from a "statement pool" of some kind and you shouldn't be closing it in this method.
    Of course there are plenty of exceptions to that rule of thumb, but I'm not convinced that this code is one of them.
    And it is completely normal for new programmers to finish a project and then immediately want to improve it by rewriting and redesigning. And that's not limited to new programmers, either. Management advice of the form "Be prepared to throw away the first version" dates back at least to the 1970's. However, you should beware of the "second system effect" which is described in [The Mythical Man-Month|http://en.wikipedia.org/wiki/The_Mythical_Man-Month].

  • Ask help for implement MPC in Labview

    Hi,
    I want to implement the MPC controller in the Labview, to simulate a simple first-order system with time delay. The system is a SISO system.
    I totally have no idea about it.  Can anyone help me with the project and send me an example?
    Appreciate for your time and help.
    Regards.

    Hello njutcgj,
    It looks like you're using a custom subVI to generate your histogram. Are there resource that guide you through it's implementation? Where did you get this VI, or did you write it? It might be useful to post a screenshot of the graph displaying the freak behavior you describe.
    If you would like some guidance on getting more familiar with the LabVIEW environment, a great collecting of learning tools are available here. There are curve fitting VIs built into LabVIEW that more people on these forums will familair with, is there an advantage of this custom subVI?
    It might also help to go through the troubleshooting steps you've tried and the results you've encountered. The community will be able to help you in a much more targeted way if we know what your problem solving approach has been thus far. I hope that you'll be able to take full advantage of this resource and we can help steer you towards a solution.
    Verne D. // LabVIEW & SignalExpress Product Support Engineer // National Instruments

Maybe you are looking for

  • SOAP error!! while activating or running an existing Adobe form

    Hi, I am working on Adobe forms in ECC6.0 server. I am getting a SOAP error while I run existing forms or trying activating a Z* form. <i>Error: ADS: SOAP Runtime Exception: CSoapExceptionTransport :(100101)</i> I am trying to run an existing form in

  • Vista Beta 2 and SB PCI

    When Windows Vista Beta 2 was first installed, it installed a generic driver for the PCI52 sound card. However, since the driver is generic It has limited functionality. I am not able to enable the quadraphonic option in Control Panel under the "Audi

  • Upgrading instance from compatible 8.1.6 to 9.2.0.7

    Hi, I have an instance that is running under 9.2.0.7 binaries, but is running in 8.1.6 compatibility mode (COMPATIBLE=8.1.6). How do I upgrade the instance to 9.2.0.7? I have read that direct upgrade from 9.2.0.7 is only supported from 8.1.7 and on.

  • ICloud shared calendars aren't sharing

    Hey all! So a friend sent me an invitation to subscribe to his iCloud calendar. I opened up the email in Outlook 2010 and clicked subscribe and it imported into my Outlook calendar. But, for some reason it won't show up at all on my iCloud calendar?

  • Can I set up credentials for Dreamweaver to authenticate against an htaccess file system on the server?

    Hi all! I'm trying to keep my website secured while developing; I love the Live View feature in Dreamweaver, but if I set up a htaccess file on my server, Dreamweaver can't seem to handle authentification. Any thoughts? If this isn't possible, what a