Getting vsftpd up and running[SOLVED]

hi folks,
        i'm trying to set up ftp via vsftpd so i can connect to my home box from my android phone to download media files and such (no uploading from the phone). vsftpd appears to be up and running but i just cannot seem to connect to it from my android. my setup is this :
arch64 box hardwired to a router, and my android phone which can connect to the router wirelessly or has my phone providers internet service.
i've added vsftpd to my rc.conf, and it starts at boot time no problem. here's a copy of my vsftpd.conf
# Use this to use vsftpd in standalone mode, otherwise it runs through (x)inetd
listen=YES
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
#anonymous_enable=YES
# Uncomment this to allow local users to log in.
local_enable=YES
# Uncomment this to enable any form of FTP write command.
write_enable=YES
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
#local_umask=022
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
# go into a certain directory.
dirmessage_enable=YES
# Activate logging of uploads/downloads.
xferlog_enable=YES
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
# You may override where the log file goes if you like. The default is shown
# below.
xferlog_file=/var/log/vsftpd.log
# If you want, you can have your log file in standard ftpd xferlog format.
# Note that the default log file location is /var/log/xferlog in this case.
xferlog_std_format=YES
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
#ascii_upload_enable=YES
#ascii_download_enable=YES
# You may fully customise the login banner string:
ftpd_banner=you're in dipshit!.
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd.banned_emails
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
#chroot_local_user=YES
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd.chroot_list
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
# When "listen" directive is enabled, vsftpd runs in standalone mode and
# listens on IPv4 sockets. This directive cannot be used in conjunction
# with the listen_ipv6 directive.
listen=YES
# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
# sockets, you must run two copies of vsftpd with two configuration files.
# Make sure, that one of the listen options is commented !!
#listen_ipv6=YES
userlist_enable=YES
userlist_file=/etc/vsftpd.user_list
i think i'm right that vsftpd allows me to connect with users that are already set up on my machine, so i created vsftpd.user_list and justr added my normal login name to that. thats what i'm going to login with. my router i set up to forward ports 20/21 from my arch box's ip (192.168.2.6). it also has a setting for private port range, but i just left that the same as the other range. so thats the router sorterd i think. finally i have the settings for my ftp client, in this case Andftp.
hostname - external ip adress of router
protocol - ftp
port - 21, but have tried 20 too
username - my linux login
password - linux pass
local dir - /sdcard
remote dir - /home/myusername
when i try to connect via my phones internet it just times out, ive always tried these settings with my file browsers ftp client. and when i try to connect over wifi, it just refuses to log in. i'm not sure if can be logged into my box at the same time as trying to log in from my phone with the same username. so i tried while being logged out of my box. still no joy. thats about as much info as i can give, apologies for the length of this post, and thanks for taking the time to read it
Last edited by yabasta (2010-12-08 19:01:59)

ok, after some tinkering (router was blocking) i've managed to be able to connect via my ftp client. now though, the connection times out after entering passivemode.
here's the sequence of messages i keep getting :
220 youre in! (my dir message)
USER me
331 please specify the password
PASS **** (entered and accepted)
230 login successful
PWD
257 "/"
NOOP
200 NOOP OK
CWD /
250 directory successfully changed
SYST
215 UNIX Type : L8
PASV
227 entering passive mode (192,168,2,2,155,168)
LIST
425 failed to establish connection - times out here
seems like i'm getting close, any ideas? here's a revised vsftpd.conf
# Example config file /etc/vsftpd.conf
# Use this to use vsftpd in standalone mode, otherwise it runs through (x)inetd
listen=YES
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
anon_world_readable_only=YES
listen_port=20
# Uncomment this to allow local users to log in.
local_enable=YES
# Uncomment this to enable any form of FTP write command.
write_enable=YES
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
#local_umask=022
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
# Activate logging of uploads/downloads.
xferlog_enable=YES
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
# You may override where the log file goes if you like. The default is shown
# below.
xferlog_file=/var/log/vsftpd.log
# If you want, you can have your log file in standard ftpd xferlog format.
# Note that the default log file location is /var/log/xferlog in this case.
xferlog_std_format=YES
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
#ascii_upload_enable=YES
#ascii_download_enable=YES
# You may fully customise the login banner string:
ftpd_banner=you're in dipshit!.
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd.banned_emails
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
chroot_local_user=YES
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd.chroot_list
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
# When "listen" directive is enabled, vsftpd runs in standalone mode and
# listens on IPv4 sockets. This directive cannot be used in conjunction
# with the listen_ipv6 directive.
listen=YES
# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
# sockets, you must run two copies of vsftpd with two configuration files.
# Make sure, that one of the listen options is commented !!
#listen_ipv6=YES
userlist_enable=NO
pasv_enable=YES

Similar Messages

  • How to Get In & Out of Match, Get your Downloads and Run

    How to Get In & Out of Match, Get your Downloads and Run 
    So you have read the marketing hype, and are thinking what you really want is to pay for the service to upgrade your low quality bitrate files to a bit better 256KBPS rate easily, as don’t fancy rebuying/ reimporting or other method
    This guide should show you the fastest route to achieve you upgrades
    It assumes you’re working from your main music library, and know something about IT, and have <25k of music files
    Backup your music files
    If you know how to do this, its simple right – so once done then move to step 2, if not read below so you don’t blame me for a loss
    Transfer Hardware
    your choice the transfer hardware, suggest offline harddrive via USB3.0 (blue USB connector/eSata/ 1494b/1GB NIC/etcetera but your call
    If you use USB2.0/ 100MB NIC/1394a or other lower transfer method, accept the time hit
    Don’t use Time Backup/local disk backup software unless you have RAID 5 setup or better (and if wondering what that is, you almost certainly don’t then)
    Don’t use  internet backup service unless you live next door to the hosting company, with stunning internet connection to envy 99.9% of the human race, remember this is the fast method folks)
    Transfer Software
    I am assuming you know how to do a copy n paste/ robocoby/xcopy/drag n drop or whatever method turns you on via finder/explorer/cmd window ect
    Caveat #01: If not sure how to do above, then stop now as you are not IT literate ready for this
    Find your music files and back them up
    Now keep the computer running, preferably with nothing else running from this point for ease of use bar an active internet connection, and power saving switched off
    If you know where the files are great, backup the files, but some don’t so for them as below
    Caveat #02: if you don’t know how to find them your most likely on default settings, or sitting with a legacy from a past upgraded machine - below should help but you might want to stop now if you have never been curious about the location before
    Within iTunes , go to [Edit/Preferences/Advanced] and note down the location shown for Itunes Media Location
    In the same location of preferences, hit [Keep iTunes Media Folder organised] and let the application do its stuff.  You will end up with the location in 1ciii a ready to copy location which for simplicity of topic, copy the whole folder and its subfolders.  You may end up with some extra copies of music files (an iTunes safety mechanism, but it won’t show in the folder location, and we can ignore later on)
    Enable Match (after paying for the service)
    Run Match
    Accept that the Apple iTunes process is not perfect, may crash/stop/pause and reboots will be needed, and we can move on so to speak. Key here is you cannot do an unattended script or assume no end user interaction needed L
    Turn on iTunes Match, notice the new ITunes Match on the left hand sidebar, click it, then hit the Start button – if it works and you eventually get to STEP 3 perfect.
    If it fails before getting to STEP 3, reboot and restart
    If this still fails to get to STEP 3, then create a new iTunes database (browse forums on how to do), read your media files from the location in 1civ
    Stop MATCH  (the upload process only, not the service)
    Once STEP 3 starts, CLICK STOP - ASAP, as all this does it upload data, and you don’t want to do this, just get your upgraded files (remember the title of this entry your reading!)
    This also avoids future issues with Album art lost
    Delete Matched low bitrate files
    Create a NEW SMART playlist, with two criteria
    Show all files with bitrate is less then 256
    Show all files where iCloud status is MATCHED
    In the new playlist, click it and it shows the files we want to blow away. 
    Click Edit / Select All then
    Click ctrl in windows/apple  (cmd) logo in mac, and press delete button, ensuring you do NOT tick the delete from iCloud Option.  Now want a few mins for it do do its stuff.
    Download Upgraded BitRate Files
    In the same location as 5, reselect all, and right click, and select the option to download all, and off it goes
    On the lefthand sidebar in iTunes, click Downloads, and you will then see in the middle bottom screen an option for simultaneous downloads (select it)
    Your done Just let the app now do its stuff. I would ignore the message saying you can get on with other things, and use anther machine, preferably not using the same internet connection.
    Optional Steps:
    Click randomly from the Itunes/Matched/256KBPS listed files, and play them.  Not all the files, one every 30 or so, and just the start, then last few seconds to check not dead or corrupt files.
    Update your Step 1 backup with the new files, which is going to take up more space, guess at 40%.
    Kill your iTunes Match account (both the recurring automatic subscription, and  the account if not continuing to use the store part of iTunes)

    bump

  • I'm trying to get itunes up and running on new computer. I have lots of music I've purchased from Itunes...and they show in my account.  But only some of them have the cloud next to them.  The rest say "downloaded" and it won't let me download them again.

    I'm trying to get itunes up and running on new computer. I have lots of music I've purchased from Itunes...and they show in my account.  But only some of them have the cloud next to them.  The rest say "downloaded" and it won't let me download them again.

    I believe that all audiobooks are supplied to Apple by audible.com, so I assume that it's them requiring the one-time only download. This is the link for contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How to get Adobe up and running?

    This download then go back and sign some agreement is stupid and it is not evident that there is anything to sign. I have clicked on agree several times and am still unable to get it to work. This is a Macbook Pro computer and I'm tired of not being able torun PDF's. Please help me get this up and running. there has to be a better way to go about this. Michael Allison

    Not sure what you mean by "sign agreement"; do you mean accept the license agreement?  To do that you must open Reader by itself and accept the EULA, before you can use it online.
    If I misunderstood, please clarify.

  • Webutil with IE=native, can't get it up and running

    Hi,
    I'm impressed on the WebUtil functionality. Got it up and running smoothly using JInitiator. Great Stuff!
    My problem appears with a customer that wants me to deploy this functionality through native JVM of IE6.0.
    Did anyone of you manage to get Webutil up and running not using JInitiator but the native IE JVM??
    (When will webutilbase.htm be included in WebUtil?)
    Any help would be appreciated!!
    Kind Regards, Marc Vahsen
    =====================================================
    Details:
    I managed to:
    - create cab files for webutil.jar and jacob.jar, resulting in webutil.cab and jacob.cab
    When I try to invoke the first form that uses the webutil object group, I get errors:
    - FRM-92100 (connection to server lost)
    - Details: FRM-92040 Java class not found, javax.swing.JLabel
    Trying to analyze this with my restricted java knowledge, I see that this class is present in rt.jar, which is added to my (server) classpath in default.env.
    Should I make a cab file for this one also??
    Further analysis shows that the webutiljini.htm contains an extra "section" that calls oracle.forms.webutil.common.RegisterWebUtil.
    As the file 'webutilbase.htm' is missing in webutil_102.zip, I tried to create this htm file myself, with extra section:
    <!-- Registration applet definition (start) -->
    <APPLET CODEBASE="%codebase%"
    CODE="oracle.forms.webutil.common.RegisterWebUtil"
    WIDTH="0"
    HEIGHT="0">
    <PARAM NAME="cabbase" VALUE="webutil.cab,jacob.cab">
    <PARAM NAME="serverURL" VALUE="%serverURL%">
    <PARAM NAME="networkRetries" VALUE="%networkRetries%">
    </APPLET>
    <!-- Registration applet definition (end) -->
    This however does not work, and reduced my left options to 1: post a topic on OTN!

    Extra information:
    The code section that is unreadable in the topic description above (without the less than / greater than signs reads:
    APPLET CODEBASE="%codebase%"
    CODE="oracle.forms.webutil.common.RegisterWebUtil"
    WIDTH="0"
    HEIGHT="0"
    PARAM NAME="cabbase" VALUE="webutil.cab,jacob.cab"
    PARAM NAME="serverURL" VALUE="%serverURL%"
    PARAM NAME="networkRetries" VALUE="%networkRetries%"
    /APPLET

  • Can't get console up and running in eclipse

    Hi tried to get the system.console() up with a console object, using code from java tutorial, here: http://java.sun.com/docs/books/tutorial/essential/regex/test_harness.html
    But when I try to run the code, the console never pops up and the return is null. I am using eclipse with java 1.6 installed. I have programmed on this with many other classes before and have not had a problem.
    I am using the fall 07 version of eclipse on windows vista home premium.
    Please advise
    Thanks
    -Z
    Edited by: zhuberg on Aug 16, 2008 9:19 PM
    Edited by: zhuberg on Aug 16, 2008 9:22 PM

    Hi tried to get the system.console() up with a console object,Do you mean you invoked System.console()? If so, you should take the [API docs|http://java.sun.com/javase/6/docs/api/java/lang/System.html#console()] at face value: "Returns the unique Console object associated with the current Java virtual machine, if any". If any.
    If I compile and run the following within Eclipse:
    public class ConsoleEg {
        public static void main(String[] args) {
            System.out.println("System.console()=" + System.console());
    }then I get the output:
    {noformat}
        System.console()=null
    {noformat}The [Console documentation|http://java.sun.com/javase/6/docs/api/java/io/Console.html] elaborates: "Whether a virtual machine has a console is dependent upon the underlying platform and also upon the manner in which the virtual machine is invoked. If the virtual machine is started from an interactive command line without redirecting the standard input and output streams then its console will exist and will typically be connected to the keyboard and display from which the virtual machine was launched. If the virtual machine is started automatically, for example by a background job scheduler, then it will typically not have a console.
    If this virtual machine has a console then it is represented by a unique instance of this class which can be obtained by invoking the System.console() method. If no console device is available then an invocation of that method will return null."
    Perhaps you should use the other methods for I/O: buffered reader and the print stream methods.

  • HT1529 Upon startup my iMac has a popup that says: "talagent wants to use the local items keychain."  New to me--can't get anywhere.  How do I get out of this and get things up and running again?

    Upon startup my iMac (OSX Mavericks) has a popup (that I can't get rid of!) that says: "talagent wants to use the local items keychain."  I never set this up, don't want it, and want my iMac to start up with my desktop in place and ready to work.  I'd appreciate some help please.  How do I get rid of this?  Thanks.
    Larry

    I found this and it fixed my issue..
    I was suffering with this same problem, I followed these steps and everything returned to normality:
    1.- I opened KeyChain app and run the FirstAid (from the KeyChain app Menu)with my user Password (this do work) because the problem is not with your password. If there is any trouble with your keychain file this will fix it.
    2.- Opened Disk Aid and run Fix Persmissions just in case there was left some wrong file permissions during the upgrade.
    3.- Went back to the Key Chain App and Locked and Unlocked the Keychain using the Lock in the top left corner of the app. When asked for my password I simply typed my User password.
    After this everything worked fine. These are the steps that I followed but I really think that #3 did the trick here. You could try to do only #3 directly and it might fix your problem, but fixing the Keychain and fixing OS permissions is never a bad Idea.
    Good Luck friends.

  • Firefox cannot be launched code: -0661. I do not have another web browser on my computer. computer is old 10.4.11 How can I get firefox up and running?

    When I turned on my computer today, Firefox had a circle with a line through it. Clicking on it I got an error message which reads "Firefox cannot be launched - 0661". I am running an old powerbook G4 OS 10.4.11. There is no other browser on my computer. I have a desktop with internet access. How can I get my laptop up and running?

    Disregard the above since Firefox 10 (or any version after Firefox 3.6) won't work on Mac OS 10.4.11. You will have to download Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html and copy it to your old powerbook G4 OS 10.4.11
    Ref: [[Firefox will not start]] link: https://support.mozilla.org/en-US/kb/Firefox-not-start#w_firefox-will-not-start-on-os-x-10-4-or-earlier-or-with-a-powerpc-processor

  • New Computer..how to get Ipod up and running

    my old computer broke down and I have a new one. No access to old computer. How do I get my ipod up and running with new comp? I get a message saying my ipod is synched with another computer (the broken one)?

    Synching to the new computer will wipe everything off the iPod.
    If you have it enabled for disk use, mount it as a drive then copy off all of the hidden folders into your new iTunes. The hidden files will have nonsense names, but all the music is there, and iTunes will rename everything if you have it set to copy to your new library.
    Otherwise, try these links from another thread (thanks PT):
    *Copying from iPod to Computer threads...*
    http://discussions.apple.com/thread.jspa?threadID=1534227&tstart=0
    http://discussions.apple.com/thread.jspa?threadID=893334&tstart=0
    http://discussions.apple.com/thread.jspa?messageID=797432&#797432
    *Also these useful internet articles...*
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/
    http://www.engadget.com/2004/11/02/how-to-get-music-off-your-ipod/
    http://playlistmag.com/secrets/2006/12/twowaystreet20/index.php
    http://playlistmag.com/help/2005/01/2waystreet/

  • Tried to install new update to itunes now receiving error message telling me to reinstall itunes.  What do I need to do to get itunes up and running and to get my library back?

    Can someone help me figure out how to get my library back after installing itunes update.  I am not very tech savy.  I need my library I'm a dance instructor and all my music is on there.  Thank you for your help!

    Solving MSVCR80 issue and Windows iTunes install issues.

  • New iMac arrived today, but before I get it up and running...

    New iMac: 21.5" iMac: OS X Snow Leopard; 3.33GHz Intel Core 2 Duo; 8 GB RAM; and 2TB Serial ATA Drive.
    I will be calling AppleCare and have them walk me thru various steps to get the new machine going. One of the things I'll want to do is bring files and applications from my "old" iMac onto the new one. But....
    My present (old) iMac has been running very slowing for a couple of months, at least. By that I mean internet usage. Programs don't seem to be a problem. Don't know if it's the browser or what. (Using FireFox 2.0 mostly. Takes forever to load a page.) Wondering if it's possible I have a virus. Thought that wasn't a problem for Macs, but it does, apparently happen.
    If that would be the case, could I corrupt my new iMac by bringing in files and/or applications from a possibly infected machine? Or, do viruses mainly affect the System folder and things like that. (I intend to bring in tunes from iTunes, music from GarageBand 2 and Band-in-a-Box, photos, and documents).
    Another quickie, albeit possibly dumb: how do you insert a CD/DVD into this new iMac? Little book that came with it doesn't tell; machine itself gives no indication. So, should the label side of CD/DVD face me (as I'm looking at the screen), or should it face the wall behind the computer?
    Anticipating more questions until I get everything squared away.
    Thanks

    HI,
    My present (old) iMac has been running very slowing for a couple of months, at least.
    Make sure there is enough free disk space. Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you always have a minimum of 10% to 15% free disk space at all times.
    do viruses mainly affect the System folder and things like that.
    There are no Mac viruses in the wild. And.. read here regarding anti virus and malware protection in Snow Leopard. http://www.apple.com/macosx/security/
    (I intend to bring in tunes from iTunes, music from GarageBand 2 and Band-in-a-Box, photos, and documents).
    If you install and 3rd party software such as Band-in-a-Box, check the vendor site to make sure it is compatible with Snow Leopard 10.6. Also, if you want to connect peripherals such as printers/scanners/copiers/cameras/external drives. Check those vendor sites to make sure the software/hardware is compatible with 10.6
    You may have applications that run on a PowerPC that won't run on an Intel based iMac. You can
    install Rosetta from the install disc that comes with your iMac in order to run those apps. Read here.
    If you need to install Rosetta
    Carolyn

  • What's it take to get LabView up and running?

    Hello. I'm new to LabView and in the process of learning what I can about it by working through a couple of training books. Anyway, what do I need to get LabView 6.1 to control Agilent and Anritsu test equipment -- specifically voltage supplies, a network analyzer, and a spectrum analyzer. I presently have a GPIB card in the computer. Is any other hardware required to get this operational? Where do I find drivers? Thanks for any response.

    Assuming you've got cables to connect your GPIB card to your instruments, I don't think you need any additional hardware in order to use LabVIEW to automate the control of the instruments.
    I'll assume that your GPIB card is installed and functional if not, try its self-tests or go to http://www.ni.com/support/gpib/ for help.
    To install LabVIEW instrument drivers for your instruments, go to http://ni.com/idnet and browse or search your way to the drivers you need. This will give you a suite of LabVIEW VIs to programmatically control your instruments from LabVIEW.
    After you download and install the drivers (instruction links on the driver pages), you can get up to speed by examining the Application Example that will likely appear in the palettes for your i
    nstruments. There's also a CD available of all of our instrument drivers; you can request one from your NI sales engineer.
    As a final note, the LabVIEW Basics I training course (http://ni.com/training) does an excellent job of teaching this topic (the final day of the course) as well as teaching LabVIEW programming fundamentals.
    Best of luck,
    John Lum
    National Instruments

  • How do we get this up and running?

    Hi guys
    A mate's son has just obtained a G3 iMac, I think a Bondi, and father and son are even bigger technological hooligans than I am, so we would be grateful for any help!
    He has no startup disks.
    I have all the disks that came with my Snow iMac back in 2001, the OSX disks that I got with the voucher shortly thereafter, and my Panther disks.
    For various reasons too complicated to go into here I'm unlikely to be able to go and sort this myself, so I need to give him what he needs along with idiot proof instructions.
    So, what disks do I need to give him, and how should I tell him to proceed?
    Many thanks for any help.
    Hely

    Hely,
    Well if you just look at it you can tell if it's a tray or slot loader. The slots have a slot in the front where the CD goes in. If it's a slot does it have firewire? (look on the side)
    Trays have a tray. Hold down the mouse and push the start button. Does it start up? Tray come out? Screen light up? Flashing ? mark?
    If all that's OK then start it up in open firmware:
    "Start the target machine while holding down the O, F, Option, and Command keys. (O, F stands for Open Firmware.)
    3. Wait until you see:
    Open Firmware, 1.0.5
    To continue booting the MacOS type:
    BYE
    To continue booting from the default boot device type:
    BOOT
    ok
    0 >
    (This prompt will vary depending on the version of OF running on the machine. For example, some newer machines, OF version is 2.0.x.)"
    That first number is the firmware version for the machine.
    Now refer to this:
    http://docs.info.apple.com/article.html?artnum=86117
    I you're thinking of trying to load Panther in it you'll definitely need to upgrade the firmware. Especially if its a slot loader. If it's a slot and you try to load 10.2 and above the machine will lose video and will be hard to resuscitate. The firmware needs to be 4.1.9.
    Also is the Panther the retail version? Black with silver lettering? If so it will work.
    The catch here is that you need to have an operating system in the machine to do this. 9.1 to 10.1
    Post back.
    Richard
    Message was edited by: spudnuty

  • Hey all,  i have an old iphone 3G and would like to get it up and running for my wife...  thoughts/suggestions about which iOS will work best/at all?

    help

    OK, try this: First make sure that all anti-virus software & any firewalls are completely turned off...nothing running. Then do the following:
    Turn your phone off...in your case, it's already off, so proceed: Leave the USB cable connected to your computer, but NOT your phone, iTunes running, press & hold the home button while connecting the USB cable to your dock connector, continue holding the home button until you see “Connect to iTunes” on the screen. You may now release the home button. iTunes should now display that it has detected your phone in recovery mode, if not quit and reopen iTunes. If you still don’t see the recovery message repeat these steps again. iTunes will give you the option to restore from a backup or set up as new.

  • My daughter has locked herself out of her ipod touch.  Ironically the computer it is synced to just crashed, is it possible to get her up and running from another computer?

    My daughter set a password and forgot it, she has locked herself out of her ipod touch.  The computer the ipod was synced w/ has crashed, is it possible to restore her settings from another computer?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

Maybe you are looking for

  • Email and text messages notifications

    I was wondering is there any way to set the iphone so that as soon as you get an email or a text, you are notified immediately. It seems that I am only notified when I update my mail and that's when the phone tells me how many mails I have received.

  • How can I listen to music from iphone5 on my TV - without an Apple TV?

    I am clueless with technology.  Is there a specific cable I can buy that will allow me to do this?  Having searched the questions it seems the only way is to buy an Apple TV?! Many thanks!

  • AssertionError when trying to integrate weblogic 10.3.4 with WSO2 ESB 4.6.0

    Hi, I am trying to integrate WSO2 ESB 4.6.0 with weblogic 10.3.4 to use weblogic as a JMS message store. The connection seems to be established at startup according to the console output from the WSO2 ESB. I did create a ConnectionFactory and Queue a

  • Picture message help!

    I tried to send a picture message but it wouldn't go through.  I turned off iMessage and set it to go through SMS, but it still wouldn't go through.  I then turned on cellular data and it worked. Why is data connection needed? (I'm new to iphone)

  • Another darn pagination question

    OK, I know we've all heard enough on this subject, but darn it I just cannot get this to work. Could it be something in my set-up? This is almost identical to the code CJJ posted earlier. But all i get is the first list and links at the bottom. When