Switching between the firewire connection and USB 2.0 Connection

Is it possible to switch between the firewire connection and USB 2.0 Connection on a portable external hard drive? I've tried unsuccessfully to use the firewire connection on my external hard drive after using the 2.0 connection. No machine will read the drive if it is connected via the firewire port. Using USB 2.0 it works as intended.

Hello Grizzly Marmot,
Thank you for the feedback. So probably my old MAXTOR enclosure is playing me tricks ....
Last night the backup on my USB 2.0 was terribly slow ??? The incremental duplication of my hard drive (372.9 MB of data from 35GB of complete data) gave me these stats:
Copied : 6232 files, 372,9 Mo
Average : 8,8 Mo/minute (4,5 copying, 148,1 verifiying)
Just to analyse the drive it takes ±45 minutes ??? Also could the energy saving mode be a slow down factor (the suspension of the computer is NEVER) ???
I still wonder what speed I could experience for a wireless backup to a NAS drive ??
Thanks for helping.
Robert

Similar Messages

  • Switching between the Classic View and the Tree View in transaction FEBA

    Hi All
    I would like to know how to switch between the Classic View and the Tree View on transaction FEBA for post processing of bank statements. I have a scenario where in the DEV client the transaction is calling up the Tree View and in my QA environment it calls up the Classic View, and I would like to know if there is a way to easily switch between the two views.
    I'd appreciate your assistance.

    Hi,
    I think you can do the same using transaction codes FEBA and FEBAN.
    Thanks
    Aravind

  • Ipod nano 4th generation switches between the Apple logo and the menu

    I have a 4th generation 8 g iPod Nano that probably has about 1 hour of use since my wife won it in a raffle over a year ago. When I went to recharge it yesterday, the only thing that happens is that the display, when connected to the computer, flips back and forth between the Apple logo and the menu screen. Whenever either one of them appears, it will disappear in a few seconds, then repeat the sequence. I have done a reset and restore,and installed the latest software version but the same thing happens over and over again. If the iPod is detached from the computer, ie, its power source, NOTHING happens on the display. It black and you can't get it to show anything. My theory was that the battery needed to be replaced even though it wasn't used much in the year since she got it. In fact. the absence of use and recharging it and discharging it may have lead to this problem in the first place. However, my one issue with that theory is that, when connected to a power source, like the computer, I would think I could get it to function normally, which I can't. I was able to get to the "service menu" which won't disappear when I move about different choices, as long as its connected to the computer. Again I can get nothing if its not connected to a power source.. does anyone think that this problem could be solved by replacing the battery or does it seem like that is only part of the problem? Thanks for any help and suggestions you may have to offer.
    Geoff

    Despite the Nano only being used for an hour or so, the battery needed to be replaced= problem solved!!

  • How to switch quickly between the native soundcard and USB speakers?

    My computer has two sound devices: one, the native sound card (which I use for my headphones), and an external pair of USB speakers. However, switching between them is a complicated task, mainly because I find almost no programs to do it:
    * GNOME Control Center, Sound section: What currently works for me, but can only be used within GNOME Shell or Cinnamon. It can be used from other sessions, though (for example Spectrwm), but it's very heavyweight to have the whole GNOME desktop solely to switch between sound cards.
    * KMix: Works only within KDE and nowhere else. What's more, to actually do the switch one must open the program, go to the options menu and select the soundcard (unlike GNOME, which is two clicks away from the status bar).
    * Pavucontrol: Kind of works, but only in a per-application basis. That is, I can't tell the system to start all current and future sound streams in X device. What's worse, I must wait until the application is open to actually do the switch.
    * XFCE4 Mixer: Doesn't work from outside XFCE. Even there, switching cards is not possible without literally editing a configuration file each time.
    * Alsamixer and GNOME Alsamixer: Can't switch sound cards at all.
    So, I'm still on the search of a lightweight program that can allow me to do something as simple as switching between my USB speakers and native headphones without much hassle. Is there anything else besides GNOME that can do the trick?

    The script I use with pulse.
    #/bin/bash
    # paswitch 2011-02-02 by Ng Oon-Ee <[email protected]>
    # I can't remember where I found this script, can't locate the original author.
    # Please inform me if you know, so that I can give proper attribution.
    # CHANGES: Added auto-move all inputs to new default sound card.
    # WAS: Pulse Audio Sound Card Switcher v1.0 2010-01-13
    # Switches between soundcards when run. All streams are moved to the new default sound-card.
    # $totalsc: Number of sound cards available
    totalsc=$(pacmd "list-sinks" | grep index: | wc -l) # total of sound cards: $totalsc
    if [ $totalsc -le 1 ]; then # Check whether there are actually multiple cards available
    notify-send -u critical -t 5000 "Nothing to switch, system only has one sound card."
    exit
    fi
    # $scindex: The Pulseaudio index of the current default sound card
    scindex=$(pacmd list-sinks | awk '$1 == "*" && $2 == "index:" {print $3}')
    # $cards: A list of card Pulseaudio indexes
    cards=$(pacmd list-sinks | sed 's|*||' | awk '$1 == "index:" {print $2}')
    PICKNEXTCARD=1 # Is true when the previous card is default
    count=0 # count of number of iterations
    for CARD in $cards; do
    if [ $PICKNEXTCARD == 1 ]; then
    # $nextsc: The pulseaudio index of the next sound card (to be switched to)
    nextsc=$CARD
    PICKNEXTCARD=0
    # $nextind: The numerical index (1 to totalsc) of the next card
    nextind=$count
    fi
    if [ $CARD == $scindex ]; then # Choose the next card as default
    PICKNEXTCARD=1
    fi
    count=$((count+1))
    done
    pacmd "set-default-sink $nextsc" # switch default sound card to next
    # $inputs: A list of currently playing inputs
    inputs=$(pacmd list-sink-inputs | awk '$1 == "index:" {print $2}')
    for INPUT in $inputs; do # Move all current inputs to the new default sound card
    pacmd move-sink-input $INPUT $nextsc
    done
    # $nextscdec: The device.description of the new default sound card
    # NOTE: This is the most likely thing to break in future, the awk lines may need playing around with
    nextscdesc=$(pacmd list-sinks | awk '$1 == "device.description" {print substr($0,5+length($1 $2))}' \
    | sed 's|"||g' | awk -F"," 'NR==v1{print$0}' v1=$((nextind+1)))
    #notify-send "Default sound-card changed to $nextscdesc"
    dbus-send --session --type=method_call --reply-timeout=10000 \
    --dest=org.freedesktop.Notifications /org/freedesktop/Notifications \
    org.freedesktop.Notifications.Notify string:"paswitch" uint32:1 \
    string:$icon_name string:"Default sound card is now" string:"$nextscdesc" \
    array:string:"" dict:string:string:"","" int32:3000
    exit
    # Below text was from original author and remains unaltered
    # CC BY - creative commons
    # Thanks God for help :) and guys lhunath, geirha, Tramp and others from irc #bash on freenode.net

  • How do I switch between the tint slider and CMYK slider under the colour palette?

    I have a number of process colours loaded in my swatches palette and when I select a colour and have the colour palette on show it defaults to the tint slider. I have the option from the flyout to change to CMYK but when I do this how do I change back to the tint slider?

    Once you edit the color of the object in the Color panel using the sliders you no longer have the swatch applied because you've change the color as a local override. You could add the new color to swatches, or if your intent is to globally change a swatch you sould do it in the swatch definition dialog.

  • Is it possible to connect an older Power Mac (running OS 10.5.8) to an iMac running 10.9.5. I want to share the monitor, keyboard and mouse and switch between the two computers.

    Is it possible to connect an older Power Mac (running OS 10.5.8) to an iMac running 10.9.5. I want to share the monitor, keyboard and mouse and switch between the two computers.

    as far as I know then the target display mode is not an option with such an old mac

  • HT4623 after the ios 7.0 update my iphone 4s and ipad keep switching in between the home screen and the apple loading screen, can anybody help?

    Can anybody help with the above?
    i.e
    both my iphone 4s and ipad switch in between the home screen and the apple loading screen
    Many thanks

    I would connect each device to a power source, and then reset them by holding the power button and the home button until they turn off.
    If it keeps happening, I would put the devices in recovery mode and restore them with iTunes.
    This article will help with that if needed:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808

  • What is the recommended length of the cable in between the GPIB instrument and GPIB-USB card.

    hi,
    we are planning to use GPIB-USB Controller in our application by replacing the existing GPIB-PCI controller. Our GPIB instrument doesn't have the standard IEEE GPIB Connector. So, we will have to connect one more cable in between GPIB-USB controller and the GPIB Instrument. I just want to know what is the recommended lenth of the cable that can be connected in between the GPIB instrument and the GPIB-USB card. Could anybody please help me?
    Thanks,
    Rajaram

    Page 730 in the 2001 catalog gives detailed cabling requirements for the GPIB bus. It's usually best to keep the length 2meters or less.
    Randy Solomonson
    Application Engineer
    National instruments

  • If I have an airport extreme and a time capsule is it possible for seamless switching between the 2 when a signal is weak or drops Main reason is as I move from my first floor to my attic office and would like to place one (airport extreme)downstairs and

    If I have an airport extreme and a time capsule is it possible for seamless switching between the 2 when a signal is weak or drops
    Main reason is as I move from my first floor to my attic office and would like to place one (airport extreme)downstairs and time capsule upstairs to get complete coverage

    In theory, yes. If you configure the two base station into either an extended or roaming network configuration, you should be able to walk a laptop between routers and the laptop should attempt to connect/reconnect to the base station providing the stronger signal ... but, in reality, this is not always 100% true.

  • HT201406 when ipod is switched on the screen shows a usb cable symbol and itunes symbol, why is this

    when ipod is switched on the screen shows a usb cable symbol and itunes symbol, and it wont let me switch it on even though it is fully charged up, why is this?

    It is either an erased iPod or an iPod that has a problem. The screen is telling you to connect the iPod to your computer via the USB cable and restore via iTunes. For how to restore see:
    iTunes: Backing up, updating, and restoring iOS software

  • I'm using apple's bluetooth keyboard and I need an easy way to switch between the text and numbers fields instead of tapping on the screen

    I'm using apple's bluetooth keyboard and I need an easy way to switch between the text and numbers fields instead of tapping on the screen

    While not in edit mode:
    - if start typing numbers, then it enters number mode.
    - if start typing text, then it enters text mode.
    Using the arrow keys exits edit mode. So this should work for you:
    1 Type text into a cell, which enters text mode.
    2 Press Return to move to the next cell.
    3 Press right arrow key to exit edit mode.
    4 Press left arrow key to get back to the cell.
    5 Type a number, which enters number mode.
    Another method that requires more planning ahead of time is to format the cells as text or number before starting the data entry. Then when you navigate to a cell while in edit mode, you will be in the appropriate mode (without having to exit edit mode).
    This all works fine for me. Hopefullly it does for you also.

  • I have connection problems between the mini ipad and my powerbook g4, you are not allowed to see or share applications.

    I have connection problems between the mini ipad and my powerbook g4, you are not allowed to see or share applications.

    That is not possible.

  • HT1918 hi I'm travelling between two countries and i have a credit card and address in both, can i set up my itunes account to switch between the respectice i tunes stores

    hi I'm travelling between two countries and i have a credit card and address in both, can i set up my itunes account to switch between the respectice i tunes stores

    Not a single account, no, at least not easily. It would be better to set up individual iTunes Store accounts, one in each country. Your computer and devices can quite happily deal with two accounts, and then you can just log into the appropriate account when you're in the applicable country. You'll need a second email address to able to create a new Apple ID.
    Regards.

  • Compatibility between the iPhone 6 and certain vehicles, and the hands free connectivity in those vehicles?

    How can I findout about the compatibility between the iPhone 6 and certain vehicles, and the hands free connectivity in those vehicles?
    I am interested in the iPhone 6 but have several meetings that have to call into for work.  Where can I find out about the compatibility with iPhone 6 and if there are issues I need to be aware of for connecting to hands free option in the car?
    Please point me to the right direction. The dealership was useless in helping me. I figured Verizon can be more helpful.

        ShaM1,
    I understand the importance of the bluetooth compatibility between your new device and your car.  What make and model is your vehicle? 
    Here is the information that Verizon Wireless has on Bluetooth Car Kit compatibility; http://www.verizonwireless.com/support/how-to-use-bluetooth-car-kit-compatibility/.  However, Apple does not have any information listed here.  We can assume that the latest and greatest iPhone 6 has the technology to be compatible with most vehicles.  If you'd like to discover further information I'd suggest contacting Apple directly; 800-275-2273.
    Let us know if you need anything else!
    TrevorC_VZW
    Follow us on Twitter @VZWSupport

  • How do you scroll up and down on the library and playlists? I can only see an up arrow at the top of the first column on the left and it only switches between the top 28 songs and the bottom 28.

    How do I scroll up and down playlists and library on the new iTunes format.? When I ckick on the arrow in the box at the top of the far left column it only switches between the top and bottom 28 songs.

     Hi
     I looked at the specs for your laptop and there is no HDMI out port for this model but RGB & Headphones out jack should work. Here is the link for closeup views of the ports.
    http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/modelContent.jsp?modelFilter=L555D-S7005&rpn=PSL...
    Click on product tour.
    Qosmio X505-890=i7-740QM-6GB DDR3-64 GB SSD-500 GB SATA-
    BR-Rom-DVD Burner-HD 18"Display-GTS360M-1GB-GDDR5
    HP 17 Envy 3wks Returned
    DIY Desktop Builds

Maybe you are looking for

  • How to export photos from mac to ipad?

    I have made an album of  photos I would like to export to my iPad. How???

  • Help with basics

    Hi How do I make a transition between 2 clips. I highlight the 2 clips and go to the transitions box and select cross disolve and nothing happens. Is it me or is this the most complex piece of software since Logic 7? Just to get a bit of perspective

  • Can't hear text-to-speech through USB DSP headset

    MBP5,3 OSX10.7.1 Using a noise canceling Plantronics USB headset (DSP-500), I've noticed that text-to-speech audio disappears (or is badly garbled) when  played through the headset. Interestingly, changing voices among several choices in the Speech p

  • Capital One VentureOne Approval and QS CLI

    Hey folks, So today marks my 4th months since opening my Quicksilver card so I decicded what the heck and went ahead and hit the CLi button wasnt expecting anything seeing on how discover keeps denying me CLI's but to my surpise i got a $1k increase.

  • Etre check results...."killed" entries

    I have entries that say "killed"  how do I fix that? EtreCheck version: 2.1.7 (114) Report generated January 31, 2015 at 2:11:35 PM EST Download EtreCheck from http://etresoft.com/etrecheck Click the [Support] links for help with non-Apple products.