How to install FTP

I have to write an XML message from PI to a remote file system using file receiver adapter.
As i understand , i have to use FTP for doing this. Can anybody give me details about where to download this and how to install FTP? And on which box it has to be installed?

Hi,
If it is a real development then do not do it by yourself, take a help of your BASIS consultant, because he is the one who will do all these installtion and authorization stuff.
Regards,
Sarvesh

Similar Messages

  • How to install ftp service on the system?

    OS: SuSE Linux Enterprise Server 8
    How to install ftp service on the system?
    How to check and modify to use it?
    I am not able to use FTP.
    Regards,
    D

    Rohit,
    If its about installation/Deployment of Agent- then its through SDM,
    'configuration' can be manual or Atuomatic:
    Manual-> refer the installation Guide which digesh has mentioned -(from page 20).
    Automatic- Its through Diagnostics Setup through Solman -(Its bit easy).
    Thanks,
    Jagan

  • How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit

    How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit
    I ran Coldfusion 8 on SBS 2003 Premium for 6 months with no problems.  When we finally decided to cut over to SBS 2008, that’s when everything went to hell.  I tried for weeks to get Coldfusion 8 to install properly on the new SBS 2008 64-bit box.  During the course which, I found bits and pieces of information for Vista 64-bit and Windows Server 2008 64-bit installations.  There are some distinct differences, however, with SBS 2008 since it runs core Web applications like OWA, RWW and Companyweb.  After countless unsuccessful attempts, one of which completed corrupted the box, I found the solution.
    I have attempted in this white paper to detail the steps to assist others who may be in a similar situation.  I don’t make any warranty for the information, but so long as you follow the steps carefully you should be fine.  BTW, for those of you who say Adobe offers free technical support for licensed users, that’s not entirely true.  Like I said, I purchased CF8 and originally installed it on an SBS 2003 Premium box.  After we cut over to SBS 2008 and encountered problems, Adobe wouldn’t provide any technical support without charging.  Moreover, based on my initial conversations with Adobe’s technical team, no one seemed to know much about running 64-bit on SBS.
    From my understanding, only two versions of Coldfusion 8 can be installed in 64-bit: Enterprise and Developer.  The “normal” install (which I paid a grand for) can only be deployed in 32-bit mode – gee, THANKS Adobe!  By the way, in Developer mode only two distinct IPs can access the site in addition to the localhost.  Any additional IPs will result in a CFML error message stating that the maximum number of IPs have been exceeded.  At any rate, take your time and follow the steps to achieve a successful installation. 
    PRE-INSTALLATION TASKS
    Back Up SBS
    It’s always a good practice to backup your server before deploying any kind of major system changes.  Although this step is optional, I recommend it in case you need to restore your server for any reason.  Bear in mind, if your system ever gets totally corrupted, you cannot restore back from the twice daily incremental backup images alone.  You will need a full backup with system recovery information to restore.  Here are the basic steps:
    Click: Start > Programs > Administrative Tools.  Right-click “Windows Server Backup” and choose “Run as administrator”.
    Click “Backup Once” under Actions in the right-hand pane.
    Choose the “Different Options” radio button under Backup Options.
    Choose the “Custom” radio button.  What we’re primarily interested in here is backing up the OS – not your data partitions or attached drives.
    Select the “SYSTEM (C)” checkbox, uncheck any others.  Also, ensure that the “Enable system recovery” checkbox is selected before continuing on.
    Under ‘Specify Destination Type’, I usually select the “Local drives” radio button and point it to a Terrabyte USB drive I use for backups.  You can point this to a tape drive, or select the “Remote shared folder” radio button if you map to a UNC path to store your backup images.  Just remember, make sure that whatever path you select can readily be accessed in the event of an emergency.  Also, make sure the “Verify after writing (recommended)” checkbox is selected.
    Under ‘Specified Advanced Option’, I usually select the “VSS full backup” radio button instead of the default since I don’t use a 3rd party backup product.  If like me you rely solely on SBS for your backups, choose the full backup option.
    Confirm everything and click “Backup”.  This process may take several hours depending on the size of your system.
    Verify ISAPI Filters:
    In IIS Manager, double-click the server instance in the left-hand pane.
    In the center pane under IIS, double click the “Modules” icon to verify that the ISAPI native modules are already installed for IIS.  If it’s set up correctly you should see two entries:
    IsapiFilterModule              %windir%\System32\inetsrv\filter.dll
    IsapiModule                        %windir%\System32\inetsrv\isapi.dll
    If either of these modules are missing, you will need to re-install these (google for a solution).
    Set Up Development Environment
    Create a directory for your CFML files outside of the default Windows location (e.g., default is usually C:\inetpub\wwwroot\).  For the purpose of our install, I created a directory on a separate disk called: D:\DEV.
    Copy and paste your CFML files and directories into the new DEV root Web directory.  This will eventually be the directory where the Coldfusion installer places the CFIDE and CFDOCS folders. 
    Open IIS Manager and double-click the server instance in the left hand pane.  Expand the “Sites” folder.  Right-click the Sites folder and select “Add Web Site”.
    Enter a name in the “Site Name” box (e.g., “test-site”).  You will notice that the system will automatically create a corresponding Application Pool with the same name.  NOTE: this is important to prevent conflicts between the DefaultAppPool (needed for SBS Web apps like OWA, RWW, etc.) and the application pool needed for Coldfusion to function properly in SBS 2008.
    Point the “Physical Path” to the directory you created in step #1 above (e.g., “D:\DEV”).
    Don’t worry about testing the connection.  If you click “Test Settings” you may receive a warning that IIS cannot verify access to path (D:\DEV).  Don’t worry about this for the time being.
    Under “Host name”, enter a DNS path to your site (e.g., “dev.test-site.com”).  Click “OK”.
    Configure Application Pools for Installation
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “False” to “True”, and then click “OK”.  NOTE: if you skip this step, Coldfusion will not properly create the required mappings during the install. We will change this setting back after the installation completes – more on this later.
    Modify the application.host.config File for 64-Bitness
    Click: Start > Programs > Accessories.  Right-click “Notepad” and choose “Run as administrator”.
    Open the config file from within Notepad – default location: C:\Windows\System32\inetsrv\config\applicationHost.config
    Do a search and change this one line from:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" />
    To this:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" preCondition="bitness64" />
    Restart the IIS Admin service.
    Set HTTP Compression
    According to some threads I read, the http compression module can cause errors if you don’t disable it globally. To remedy this, perform the following:
    Click: Start > Programs > Accessories.  Right-click “Command Prompt” and choose “Run as administrator”.
    At the command prompt, change directory to intetsrv by typing: cd inetsrv
    Run the following command:
    C:\Windows\system32\inetsrv>appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']
    This will turn off HTTP compression for all sites in IIS.
    In IIS Manager, double-click the server instance in the left-hand pane.  Double-click the “Compression” icon in the IIS section of the center pane.
    Uncheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Recheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Restart the IIS Admin service.  This should enable compression and coldfusion to work at the same time.
    NOTE: if for some reason you need to reverse this, run the following command from the command prompt:
    C:\Windows\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /+[name='xpress',doStaticCompression='false',dll='%windir%\system32\inetsrv\suscomp.dll']
    INSTALLATION TASKS
    Download the 64-bit installation package from Adobe – filename: coldfusion-801-wind64.exe.
    Right-click the file and select “Run as administrator”.
    Accept the terms of the License Agreement.
    If you have an Enterprise license, enter it.  For our purposes, just click the “Developer Edition” checkbox.
    Select “Server configuration” – the default radio button.
    I deselected all subcomponents and can’t guarantee that you’ll arrive at the same results if you select additional items like “.NET Integrated Services”.  It should be fine, particularly if you install documentation.  My preference was to keep the install as plain vanilla as possible.
    Select the directory path for Coldfusion to install into – default is :C\Coldfusion
    THE NEXT TWO STEPS ARE CRITICAL TO YOUR SUCCESS.  Unselect “All IIS Websites” and select the “Configure specific IIS Website or another web server” radio button.  Click “Add”, and then select your test Web site (e.g., “test-site”) under “IIS Web Site”.  Hit “OK”.
    Do NOT use the default directory path for the CF Administrator location (e.g., default path: “C:\inetpub\wwwroot”).  Instead, point the installer to your new DEV root Web directory (e.g., “D:\DEV”).  The bottom line, you want the installer to place the CFIDE directory and files within this folder, alongside your other CFML files and folders.
    Enter an Administrator password.
    Choose to Enable RDS, or not.  I enable this by preference but it is not required.  This allows you to make updates to files using a CFML editor directly vs. having to move/FTP the files over if you’re working remotely.  Opponents to this argue that it’s potentially less secure, but for a lower environment I don’t see this as a major concern.
    Confirm everything to kick off the install.
    If all goes well you should see a message at the end stating that the install was successful.  I recommend you uncheck the box that asks you to open the CF Administrator in the default Web browser after the install.  NOTE: we will open it a different way during the post-installation tasks.  The worst thing that will happen if you forget to uncheck the box is that you might receive an error that the command prompt hung – not a big deal – just close it and move on to the next (final) steps.
    POST-INSTALLATION TASKS
    Verify CF Installation:
    The installation will create a new folder in your program group: Start > Programs > Adobe > Coldfusion 8.  The default “Administrator” link will not work because it points to the wrong path: http://127.0.0.1/CFIDE/administrator/index.cfm. The “127.0.0.1” or “localhost” path as you may recall in IIS, points by default to the “C:\inetpub\wwwroot” directory.  Our CFIDE files, however, are located within: D:\DEV.
    To bring up the CF Administrator logon page, open up a Web browser and replace the “http://127.0.0.1” part of the path with the DNS path name to your CF environment (e.g., http://dev.test-site.com/CFIDE/administrator/index.cfm).
    This should bring up the Coldfusion Administrator Login screen.  Enter in the Administrator password you created during the install to log in and configure your application server.
    Verify that your test-site renders correctly by typing in your test URL into a Web browser (e.g., http://dev.test-site.com).
    Fix Application Pool Defaults to Re-enable SBS Web Applications:
    At this point, Coldfusion Administrator and your test CMFL Web site should be working properly.  The problem is, default SBS Web applications like OWA, RWW and Companyweb will throw errors and fail to start.  Fortunately, this is easily remedied by performing the following steps:
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “True” to “False” this time.  This should re-enable the SBS applications, which would otherwise result in 500 errors (e.g., OWA, RWW, Companyweb, etc.).  There is no need to restart IIS.
    Open a Web browser and test that you can once again connect to OWA, RWW and Companyweb successfully.
    In IIS click to highlight the application pool for your new site (e.g., “test-site”).  In the right-hand pane, click “Advanced Settings”.  Ensure that “Enable 32-Bit Applications” – second item from the top – is set to “True” for this application pool specifically.
    Lastly, jump up and down for joy!  Hopefully now, everything is working.  Best of luck!! ..Paul D (MCP).

    First, it would be a good idea for you to specify what distro of Linux you're using, as not all are supported by Adobe.
    Second, this is probably your problem right here:
    http://askubuntu.com/questions/40416/why-is-lib-libc-so-6-missing
    In a nutshell, CF expects the 32-bit version of libc.so.6 to be in /lib, but it's probably not. You might be able to modify the installer to point to the correct location for that file, or you might be able to create a symlink to the file - but as the above link describes, creating a symlink might have negative consequences.
    As for installing CF 8 64-bit, that's only available with Enterprise, not Standard. If you want CF Standard 64-bit, you need to upgrade to CF 9.
    Dave Watts, CTO, Fig Leaf Software

  • Adobe Bridge in Photoshop - How to install Bridge and camera raw? And what is it all about?

    Hi everyone! I am actually in love with this adobe photoshop. I used PSCS2 before, but later on upgraded to CS4. But I feel tired in upgrading to CS5.
    One time, I found a tutorial in youtube about camera raw, and would really want to use it. But I was wondering how to install the camera raw. I believe camera raw is a plugin? so I downloaded the plugin here, installed it in my PS. I downloaded a file Camera Raw.8bi and paste it on my C drive - C:\Program Files\Adobe\Photoshop CS4\Plug-ins\File Formats.
    I now am very confused, how will I open it? I do not have adobe bridge!  After I installed the camera raw, I opened my PS. I clicked the file>then browse in bridge. I had an error, it's "error 2 photoshop11 undefined". Which is what I thought, I might have done something wrong with installing it.
    My question is, do you still need adobe bridge installed in order to use camera raw?
    If yes, how does it work? How am I suppose to open camera raw?
    If no, how am I going to open camera raw without bridge?
    And also, where will I download adobe bridge? I cannot find one here for CS4, only adobe bridge for CS5. I am wondering, is it okay to install adobe bridge CS5 and use it with my PS CS4?
    I badly need help!

    WebDAV (Web-based Distributed Authoring and Versioning) is a set of extensions to HTTP/1.1.
    The main difference from FTP as far as I can see is that it allows you to edit documents on a remote web server.
    WebDAV was used by the Apple server - MobileMe but is not generally supported by hosting services.
    Using WebDAV you can mount a directory locally. This was how iDisk worked on your Mac and you could drag files onto it to upload them to the remote directory.
    With WebDAV, a number of users can share a directory which is why its used in local networks but presents security problems when using a remote server.
    If you are into file sharing rather than publishing, Dropbox or its new rival SugarSync are more appropriate.

  • How to install JDBC 8.1.6???

    Could someone tell me how to install the Oracle JDBC drivers
    ver 8.1.6?
    The compiled FAQs at
    http://technet.oracle.com/tech/java/access/info/jdbc_faq.htm
    are great, but offer no insight on how to install JDBC.
    Is there info on the web site about it other than
    the following very old still unsolved problem below:
    Product: JDBC
    Report Number: 654140
    Last Updated: 09-APR-98
    Component: JDBC Version: 7.3.4
    RDBMS Version: 0
    Operating System: MS Windows NT Version 4
    Affects: All supported platforms.
    Please update the kittings of the JDBC drivers found on
    www-aurora and the
    external FTP sites. These kittings of the JDBC Drivers say "Use
    the Oracle
    Installer" causing customers to call in immediately after
    downloading it and
    asking "How do I install it???"
    Also, the internal copies of the drivers' documentations say the
    same things
    and they do not have .PRD files for an Oracle Installer either.
    When an
    internal employee downloads this he goes to the main page on
    Aurora and sees
    to call into Oracle Support for any questions on JDBC, and this
    causes
    even more unnecessary calls from Oracle Employees that could have
    easily
    been advoided.
    Status:
    Open. More information may be available at a later date.
    null

    That is quite impossible to give you an aswer. We have to few information. For example, when did you get the error message? Is there an associate error number with this message? Try to explain what you did.
    Bye, Aron

  • How to install & use x509 certificate in XI 3.0

    Hi gurus,
    Somebody knows as install a x509 certificate in XI 3.0? Is it in Visual Admin?
    Is There some guide?
    When this installed, how we test it? What configuration we must do in Communication Channels and the Receiver Agreement/Sender Agreement? What tool we can use to test the scenario?
    Kind regards

    Hi,
    This is used when you are using FTPS in your communicaiton channel. The Certificates are installed in the visual administration. I have not seen any guide on how to install this. But you have a detailed step  by step procedure of how to install in this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/53/b221e3b466b346860715a550ca987d/content.htm
    Apart from this you may also need to install SAP Java Cryptographic Toolkit. You get some help on this at this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/cb71b8046e6e469bf3dd283104e65b/content.htm
    Once when you do this your certificates can be seen from the communicaiton channel. In your communication channel in the FTP Conneciton parameters you have to select Conneciton security as FTPS and check the check box X.509 certificates. In keystore if you press F4 you will see the keystore which were installed earlier. Select the keystore and the X.509 Certificate.
    Once you are done with this run your scenario. If you have any errors you will see in communicaiton channel monitoring.
    ---Satish

  • How to enable FTP service in Solaris 10

    Hello, Everybody
    I installed my first Solaris 10 today, but I have a problem with FTP process, I found I could not ftp to my new server from other equipments. It seems that FTP service is disabled by default.
    Could you any guy tell me how to enable FTP in Solaris 10?
    Thanks in advance.
    -jason

    Since the OS is Solaris 10, how about using SMF's svcadm tool to enable/disable ftp service.
    eg.,
    # svcadm disable /network/ftp
    # ftp localhost
    ftp: connect to address 127.0.0.1: Connection refused
    Trying ::1...
    ftp: connect: Network is unreachable
    ftp> bye
    # svcadm enable /network/ftp
    # ftp localhost
    Connected to localhost.
    220 sunfire.anonymous.com FTP server ready.
    Name (localhost:giri): 331 Password required for giri.
    Password:

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • How to install firefox 4Rc in linux (ubu) .I need help

    I am using '''ubuntu''' os .
    I already have''' firefox 3.6.'''
    I have '''firefox 4RC file''' but I don't know how to install that file
    help me to install that .

    I suppose that you downloaded the tar.gz file from Mozilla's .com or ftp site. I don't think that it is packaged with an installer. There are several ways to run FF4RC depending on what you want if for. Several of these options can be found in this thread:
    http://ubuntuforums.org/showthread.php?t=330386
    If you want daily builds you should add the repository to synaptic (although I heard that this can be unstable). You can find discussion in Ubuntu Documentation here:
    https://help.ubuntu.com/community/FirefoxNewVersion
    I don't really want to fool around with daily builds, and am OK running 3.6 as my default browser until FF4 comes out with its final release. For now, I just extracted my tar.gz file with FileRoller and created a launcher for 4RC on my desktop. This launcher is linked with the ''firefox'' file found within the extracted folder. This isn't much of an answer, but I hope that these links help you get this great browser working on your machines.

  • How to install Swing for JDK 1.1.8? (Emergency)

    I encounter a problem in developing application software now. Would you give me help? Thanks a lot.
    I'm using PersonalJava with JDK 1.1.8 to develop PDA application. And I need to import some classes such as Swing and com.sun.ftp, but I do not know how to install and import Swing. So please tell me what I can do for it.
    Thank you for your help. I'm looking forward to hearing from you soon. :)
    Have a nice day!
    Best regards,
    Chris Wong

    Hi,
    there is an instruction on http://forum.java.sun.com/thread.jsp?forum=56&thread=280486
    The steps in short are.
    Copy the swingall.jar on your pocket pc
    Edit the registry key for "Java Class File" and add the swingall.jar to it
    If you need some other classes, then do the same.
    Btw. I have encountered a problem with the Sun Runtime. If the classpath in the registry is too long, it will ignore the whole classpath. So you maybe will put all classes into a single jar file.
    Hope that helps,
    FReAK

  • How To Install internal Mac Pro Bluetooth?

    Could anyone draw me a picture in my head of how to install this bluetooth device before I get it and put it in pretty quick? Users guide is no joy. Can';t be too hard? I'm softwared up and external now. Keyboard connectivity is not what I'd like... maybe on account of the third party external usb/bluetooth.
    I've been elbow deep in my lovely old G4.
    Gracias
    Pro, 2 gig   Mac OS X (10.4.9)  
    old lovely g4 tower   Mac OS X (10.4.7)   dual giga processors, 40+80Gig HD's, Radeon 8500

    That little antenna is difficult to connect.<<<</div>
    Say what?
    http://www.dlink.com/products/?pid=34&sec=0
    ftp://ftp10.dlink.com/pdfs/products/DBT-120/DBT-120_ds
    .pdf
    The title of this discussion including the word "internal"; external dongies is not what I was referring to. Thanks though. Already got one of those.
    07 Mac Pro   Mac OS X (10.4.9)   2 gigs

  • How to Install SAP j2ee server

    Hi,
       can anybody guide me as to how to install j2ee server on the local machine.
    1. Where can i get the Installation version from.
    2. wat r the config entries to be changed.
    3. How can i make my own web console.
    Note: The main aim is to use my own web console and delegate the request to ABAB stack remotely.
    Regards
    Anubhav

    Hello Anubhav,
    For installing SAP Web AS (Java) copy the following
    two archives to your local machine:-
    ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/NW04SneakPrevJavaSP11.part1.rar
    ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/NW04SneakPrevJavaSP11.part2.rar
    Steps:
    1. Download both the .rar files in the same directory
    Note: The path name length of the destination directory should not exceed 10 characters.
    If you exceed the 10-character limit, the extraction process will fail.
    2. You can erase the contents of this archive after the installation process.
    3. A folder "NW04SneakPrevJavaSP11" is created after extraction.
    Execute <b>start.bat</b> file in this directory to start the installation.
    =====
    For creating Web Console refer the <b>Additional Programming Techniques</b> section of the
    SAP Web AS help documentation :
    http://help.sap.com/saphelp_nw04/helpdata/en/60/fcbc3d16f39e33e10000000a11405a/content.htm
    Please feel free to ask in case you face any problems.
    Regards,
    Tarun

  • How to install user 'hwd' from CD (SOLVED)

    Forgive me, but I've searched on how to install a user program. Namely I want to install 'hwh'
    I have remade the Don't Panic CD with 'hwd-4.8.2.bin.tar.gz' inside the arch/pkg directory
    on the cd. pacman see's it, but won't install it.
    I know using the internet is the easiest way, but the pc I'm trying to install it on doesn't have
    internet access. I noticed it is missing the .pkginfo and .filelist files that the other orignal one
    have. I guess my question is how do I install "user" packages without using the internet.
    I'm trying to get Arch installed using the below guide, and shows using hwd :
    file://localhost/C:/Documents%20and%20Settings/Administrator/Desktop/Arch%20Voodoo%20Install.mht
    Should I have put the hwd file on my /home somewhere, or will this work. I don't know enough about
    Arch and/or pacman to direct its path. I have manage to alter pacman.conf inside /etc to point to the
    cdrom to get the other stuff off of it. I now have a working video but I would like to see how or
    what 'hwd' does.
    Thanks for any help, and please excuse my ignorance.
    Last edited by verndog (2007-09-25 21:35:09)

    tomk wrote:
    hwd-4.8.2.bin.tar.gz is not an Arch package - that's why pacman doesn't like it.
    Get hwd-4.8.2-1-<arch>.pkg.tar.gz from any Arch mirror (<arch> is i686 or x86_64, as required).
    Question answered, so now the advice: you don't need hwd. Arch's default hardware detection is better.
    Thanks, I found it here:
    ftp://mirrors.unixheads.org/archlinux/extra/os/i686/
    Confusing for new user. Because I found the other one here:
    http://www.archlinux.org/packages/3946/
    Even though at the top of the header it states hwd 4.8.2-1
    but in the sources it had hwd 4.8.2 ONLY.
    In future I'll follow the ftp mirror.
    Edit: Oh, I see. I think your advice is referring to this package:
    hwdetect-0.8-8.pkg.tar.gz
    If so, I thought 'hwd' added something this one didn't. Accoring to the guide I had listed.
    Thanks for your help.
    Last edited by verndog (2007-09-24 23:06:41)

  • I can't figure out how to install Firefox 4.0 in Ubuntu Linux!

    I have an Ubuntu 10.04 desktop that I wish to install Firefox 4.0 on, but I don't know how to install from a .tar file. Please help me with this, I really love 4.0, I have it on a vista computer and now I want it in Ubuntu but I cannot figure out how to do so.

    With Firefox 6.0, Fire FTP 1.99.5
    To access FireFTP - Click Tools, then Web Developer, then FireFTP.

  • Does anyone have a step-by-step on how to install fireFox 3.5.5

    Greetings to All!,
    I have a very limited knowledge working with Solaris. I need to install Firefox 3.5.5 so that I can use a GUI based FTP client. I have downloaded the program but I
    don't know how to install it and I hate to break my system. Please help.
    I'm running SunOS CyberJet 5.10 Generic_141445-09 i86pc i386 i86pc
    Thanks in advance,
    Ramon

    From where did you download what you have? What format is it in? If you got it from Mozilla, it will be either in 'tar' or 'pkg' format.
    See your system documentation on how to manage these formats.

Maybe you are looking for