Remove directory with force?

What is the command to remove directory with force?

for this question, the appropriate answer is: man rm a small portion of the manpage:             -r, -R, --recursive              remove directories and their contents recursively
            -f, --force                         ignore nonexistent files, never promptroot has an alias for 'rm' after a default installation, which aliases 'rm' to 'rm -i'. using 'rm -rf', with 'f' (force) rm does not signal confirmation for every single file.

Similar Messages

  • A process by the name of avgcmgr is loading the CPUs by up to 100 percent. At least 5 of them have appeared on the activity monitor. I've removed them with forced quit but they return! How do I permanently get rid of them? CPUA temp is now 194F.

    A process by the name of avgcmgr is loading the CPUs by up to 100 percent. At least 5 of them have appeared on the activity monitor. I've removed them with forced quit but they return! How do I permanently get rid of them? Three of these processes has now driven the CPUA temp to 194F.
    Ray

    Hi Ray-
    I'm having the exact same problem and have searched the web for hours looking for a solution (multiple spawned avgcmgr processes that consume cpu).
    Did you find any solution?
    Thanks so much!
    Steve

  • Relative path for Download directory folder.I created a firefox profile and i wanted to use this profile in multiple machines.I wanted to use a relative path for download directory with respect to the profile folder.I need this on Linux machines

    I have a use case where I need to use different download directories with different firefox profiles.I need to use this profiles in multiple linux machines.
    I need to have a relative path to my download directory with respect to the profile folder.
    Ex: I have a selenium test which opens a website and downloads it to my machine.I want this downloaded file to go into some specific folder relative to this profile folder.How do I do this??

    That is not a practically empty xinitrc - that file only needs one line: exec WM.  Other things are entirely optional, and some of them very useful, but I'd encourage you to stick with the simplest xinitrc that will do what you require.
    Is slim involved?  Probably.  That is the source of many problems.  But to start narrowing this down, I have 3 suggestions:
    1) temporarily (at least) change your inittab to default to runlevel 3 ... actually, is it currently set to 5 or 3? if it is currently 3 that would explain why slim doesn't start.
    2) at a tty in runlevel 3 use "xinit" instead of "startx".  Startx is fine most of the time, but it is essentially just a complex wrapper for xinit.  That complexity can often iadd useful functionality, but it *always* makes troubleshooting more difficult.  So for now just use a vanilla 'xinit'.
    3) remove dbus-launch from your exec line in xinitrc.  This is done by console-kit so it is redundant and potentially problematic.  Further BOTH of these are taken care of by slim, so I'd even suggest getting both a jump start on being ready for slim and simplifying troubleshooting by removing both of them.  Just make that line "exec openbox-session"
    Edit: adding one more:
    4) temporarily switch out openbox-session for openbox.  I suspect the reason feh's setting of the background is getting overridden is due to a script or setting in openbox's autostart settings - many of these are only invoked when "openbox-session" is called, while "openbox" starts *just* the window manager itself.
    Last edited by Trilby (2012-10-03 17:30:36)

  • Removable devices with UTF-8

    Hi is there a way how to make HAL mount removable devices with iocharset=utf8 option?
    I tried this file:
    cat /etc/hal/fdi/policy/uf8.pdi
    <?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
    <deviceinfo version="0.2">
    <device>
    <match key="block.is_volume" bool="true">
    <match key="@block.storage_device:storage.hotpluggable" bool="true">
    <merge key="volume.policy.mount_option.iocharset" type="string">utf8</merge>
    </match>
    <match key="@block.storage_device:storage.removable" bool="true">
    <merge key="volume.policy.mount_option.iocharset" type="string">utf8</merge>
    </match>
    </match>
    </device>
    But no success.

    As a problem may have several solutions, I propose another method to mount removable medias with chosen mount options and at a chosen mount point.
    The advantage of that method, I think, is that only one file is used and easily edited, and nothing else has to be modified in the system (no .fdi files are touched).
    Here is the batch file which I named mountusb :
    #!/bin/bash
    # Script mountusb by Bernard Baeyens (berbae) 2009-06-18
    # to mount plugged in removable medias, using hal and pmount
    # without knowing the device name
    # without modifying the /etc/fstab file
    # without needing to create a fixed directory under /media
    # The device name attributed by udev is transmitted to hal and can be accessed
    # with the utility hal-get-property.
    # So with this method it doesn't need to be a fixed name.
    # The user must maintain the three lists below, for the removable medias he uses.
    # List of the variable part of the hal udi for the removable medias
    UDI=(0000_0002 DA8E_98E0 68E8_9D1A)
    # List of the corresponding desired pmount options
    OPTIONS=("--sync --noatime" "--sync --noatime" "--sync --noatime")
    # List of the corresponding label used to mount the device under /media
    # pmount will create the /media/<label> directory itself
    LABEL=(sony stick1 stick2)
    NB=${#UDI[*]}
    for (( I=0;I<$NB;I+=1 )); do
    DEVICE=$(hal-get-property --udi=/org/freedesktop/Hal/devices/volume_uuid_${UDI[$I]} --key=block.device 2>/dev/null)
    MOUNTED=$(hal-get-property --udi=/org/freedesktop/Hal/devices/volume_uuid_${UDI[$I]} --key=volume.is_mounted 2>/dev/null)
    if [ a$DEVICE != a ] && [ -b $DEVICE ] && [ a$MOUNTED != a ] && [ $MOUNTED == false ]; then
    echo "Executing command : pmount ${OPTIONS[$I]} $DEVICE ${LABEL[$I]}"
    if pmount ${OPTIONS[$I]} $DEVICE ${LABEL[$I]}; then
    echo "To unmount the device use : pumount /media/${LABEL[$I]}"
    fi
    fi
    done
    # To unmount before plugging out the media : pumount /media/<label>
    # The command will remove the /media/<label> directory after the unmounting
    The values in the file correspond to a Sony walkman and two memory sticks of mine.
    The UDI values can be determined by plugging in the removable media and consulting the output of the lshal command.
    I hope that this batch could be useful to someone.
    Edit : Added a test to execute pmount command only if the volume is not already mounted.
    Last edited by berbae (2009-06-20 09:25:06)

  • [SOLVED] cd to directory with spaces zsh

    When I try to cd to directory with spaces zsh I get an error:
    cd:cd:6: string not in pwd:
    Here is my .zshrc
    # Auto Completion And Additional Settings
    autoload -U compinit
    compinit
    zstyle ':completion:*' menu select
    export HISTFILE=~/.zsh_history
    export HISTSIZE=50000
    export SAVEHIST=50000
    eval `dircolors -b`
    setopt autopushd pushdminus pushdsilent pushdtohome
    setopt autocd
    setopt cdablevars
    setopt ignoreeof
    setopt interactivecomments
    setopt nobanghist
    setopt noclobber
    setopt HIST_REDUCE_BLANKS
    setopt HIST_IGNORE_SPACE
    setopt SH_WORD_SPLIT
    setopt nohup
    setopt completealiases
    setopt correctall
    #Colored Prompt
    autoload -U promptinit
    promptinit
    #Colors
    autoload -U colors && colors
    # allow approximate
    zstyle ':completion:*' completer _complete _match _approximate
    zstyle ':completion:*:match:*' original only
    zstyle ':completion:*:approximate:*' max-errors 1 numeric
    #zstyle ':completion:*' special-dirs true
    # tab completion for PID :D
    zstyle ':completion:*:*:kill:*' menu yes select
    zstyle ':completion:*:kill:*' force-list always
    #compdef _gnu_generic
    #zstyle ':completion:*:processes-names' command 'ps c -u ${USER} -o command | uniq'
    compdef _pids cpulimit
    compdef _pids ps
    compdef _pids appuptime
    # cd not select parent dir
    zstyle ':completion:*:cd:*' ignore-parents parent pwd
    #Special Keys
    typeset -g -A key
    bindkey '^?' backward-delete-char
    bindkey '^[[1~' beginning-of-line
    bindkey '^[[5~' up-line-or-history
    bindkey '^[[3~' delete-char
    bindkey '^[[4~' end-of-line
    bindkey '^[[6~' down-line-or-history
    bindkey '^[[A' up-line-or-search
    bindkey '^[[D' backward-char
    bindkey '^[[B' down-line-or-search
    bindkey '^[[C' forward-char
    # completion in the middle of a line
    bindkey '^i' expand-or-complete-prefix
    #Directory Colors
    LS_COLORS='rs=0:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:';
    export LS_COLORS
    #History Search
    bindkey "^[[A" history-search-backward
    bindkey "^[[B" history-search-forward
    #Aliases
    alias -s txt=$EDITOR
    alias -s conf=$EDITOR
    #alias -s zshrc=$EDITOR
    #alias -s bashrc=$EDITOR
    alias -s png=eog
    alias -s jpg=eog
    alias -s gif=eog
    alias -s svg=eog
    alias cpulimit='sudo cpulimit -l 60 -p'
    alias wiki='firefox /usr/share/doc/arch-wiki/html/index.html'
    alias appuptime='/home/dodo3773/Documents/Scripts/appuptime.sh'
    #Moved From Bash
    #CLI editor
    export EDITOR="nano"
    #Update System
    alias update='sudo pacman-color -Syu && yaourt -Su --aur'
    # dvdauthor
    export VIDEO_FORMAT=NTSC
    ## Aliases
    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
    alias ls='ls --color=auto'
    alias sudo='sudo '
    alias pacman='pacman-color'
    alias tcpkill='sudo tcpkill -i wlan0'
    alias hist="fc -l 1 55000 | grep "
    alias vim="/usr/bin/vim"
    alias grepmod='lsmod | grep'
    alias peggle='padsp wine /home/dodo3773/Games/PopCap/pegglenights/PeggleNights/PeggleNights.exe'
    #Colorize Man Pages
    export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking
    export LESS_TERMCAP_md=$'\E[01;31m' # begin bold
    export LESS_TERMCAP_me=$'\E[0m' # end mode
    export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
    export LESS_TERMCAP_so=$'\E[01;44;33m' # begin standout-mode - info box
    export LESS_TERMCAP_ue=$'\E[0m' # end underline
    export LESS_TERMCAP_us=$'\E[01;32m' # begin underline
    #Del send to trash
    alias del='mv -t ~/.local/share/Trash/files'
    ### FUNCTIONS
    # Easy extract
    extract () {
    if [ -f $1 ] ; then
    case $1 in
    *.tar.bz2) tar xvjf $1 ;;
    *.tar.gz) tar xvzf $1 ;;
    *.bz2) bunzip2 $1 ;;
    *.rar) rar x $1 ;;
    *.gz) gunzip $1 ;;
    *.jar) jar xf $1 ;;
    *.tar) tar xvf $1 ;;
    *.tbz2) tar xvjf $1 ;;
    *.tgz) tar xvzf $1 ;;
    *.zip) unzip $1 ;;
    *.Z) uncompress $1 ;;
    *.7z) 7z x $1 ;;
    *) echo "don't know how to extract '$1'..." ;;
    esac
    else
    echo "'$1' is not a valid file!"
    fi
    #List All Available Commands
    function lac
    echo -n $PATH | xargs -d : -I {} find {} -maxdepth 1 \
    -executable -type f -printf '%P\n' | sort -u
    function lac
    COMMANDS=`echo -n $PATH | xargs -d : -I {} find {} -maxdepth 1 \
    -executable -type f -printf '%P\n'`
    ALIASES=`alias | cut -d '=' -f 1`
    echo "$COMMANDS"$'\n'"$ALIASES" | sort -u
    #Custom Terminal
    #PROMPT="%* %~$ "
    PS1="%{%F{green}%}%* %{%f%}%{%F{white}%}%~ %{%F{green}%}>> %{%f%}"
    #Syntax Highlighting
    source /home/dodo3773/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
    Has anyone else came across this? Is there something wrong with my zshrc?
    Edit: "chdir" still works. I guess I could use an alias.
    Last edited by dodo3773 (2011-09-07 08:54:30)

    I've just installed zsh and did some minimal config and cd works, so try commenting out your config one by one until you find the culprit ... or wait for somebody who actually knows something about zsh :-)
    [karol@black ~]$ cat .zshrc
    # Lines configured by zsh-newuser-install
    HISTFILE=~/.histfile
    HISTSIZE=1000
    SAVEHIST=1000
    # End of lines configured by zsh-newuser-install
    # The following lines were added by compinstall
    zstyle :compinstall filename '/home/karol/.zshrc'
    autoload -Uz compinit
    compinit
    # End of lines added by compinstall
    Edit:
    # cd not select parent dir
    zstyle ':completion:*:cd:*' ignore-parents parent pwd
    What does it do?
    Edit 2: I can cd just fine using your config. (should have tried it earlier ...) The only difference is I'm not using the syntax highlighting
    source /home/dodo3773/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
    because the path doesn't exist on my computer.
    Last edited by karol (2011-09-07 08:43:15)

  • Install Oracle 11gR2 RAC : Cannot remove directory bootstrap under /tmp

    Folks,
    Hello. I am installing Oracle 11gR2 RAC using 2 Virtual Machines (rac1 and rac2 whose OS are Oracle Linux 5.6) in VMPlayer and according to the tutorial
    http://appsdbaworkshop.blogspot.com/2011/10/11gr2-rac-on-linux-56-using-vmware.html
    I am installing Grid infrastructure. I am on step 7 of 10 (verify Grid installation enviroment) and get this error:
    "Free Space: Rac2: /tmp
    Cause: Could not determine mount point for location specified.
    Action: Ensure location specified is available.
    Expected value: n/a
    Actual value: n/a "
    In order to fix the above error, I run "cluster verification utility" according to
    http://docs.oracle.com/cd/E14072_01/rac.112/e10717/cvu.htm I run the following command:
    [ora11g@rac1 \]$ /home_grid/runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verbose
    Output:
    /bin/rm: cannot remove directory '/tmp/bootstrap': Operation not permitted
    ./runcluvfy.sh:line 99:/tmp/bootstrap/ouibootstrap.log: permission denied
    From the above output, we can see the directory bootstrap under /tmp causes the problem. The solution is to remove the directory bootstrap. I run the 2 commands:
    [ora11g@rac1 tmp]$ rmdir bootstrap
    Output: Operation not permitted
    [ora11g@rac1 tmp]$ rm -rf bootstrap
    Output: cannot remove bootstrap: Operation not permitted.
    [ora11g@rac2 tmp]$ ls
    Output: there is no 'bootstrap' directory.
    My questions are:
    First, does "cannot remove boostrap in rac1" cause that /tmp in rac2 could not be determine mount point ?
    Second, can any folk help to remove the directory bootstrap under /tmp ?
    Thanks.

    Folks,
    Hello. Thanks a lot for replying. I have just run the 2 commands:
    [root@rac2 \]# chown -R ora11g:dba /u01
    [root@rac2 \]# chmod -R 775 /u01
    ora11g is the user who installs the Grid and /u01 is the directory where Grid is installed and dba is the group.
    I go back to Grid Installer Step 7 of 10 in rac1 and check again and see as below:
    Free Space: Rac2 : /tmp
    Cause: Could not determine mount point for location specified.
    Action: Ensure location specified is available
    Expected Value: n/a
    Actual Value: n/a
    The problem is not solved after run the above 2 commands in rac2.
    In addition, I have run Cluster Verification Utility using the command:
    [ora11g@rac1 grid]./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -r 11gR2 -orainv ora11g -verbose
    Output: All of items for rac2 are passed. There is only one item for rac1 is failed as below:
    Check default user file creation mask:
    NodeName: rac1
    Available: 0002
    Required: 0022
    Comment: failed
    As we see above, the result of CVU command is not the same with Grid Installer step 7 of 10 (Installation Environment Verification):
    CVU command doesn't find /tmp mount point problem for rac2 that Grid Installer does.
    Grid Installer step 7 of 10 doesn't find user file creation mask problem for rac1 that CVU command does.
    I have tried to find out whether creation mask failed for rac1 causes /tmp problem for rac2. I have changed the line "umask 002" to "umask 0022" for rac1 in each of the 3 files below and run CVU command each time for each file:
    rac1:
    /etc/bashrc
    /etc/profile
    /etc/csh.cshrc
    But chang the line "umask 002" to "umask 0022" for rac1 in each of the above 3 files does not solve the problem.
    My questions are:
    First, why is the result of CVU command not the same with that of Grid Installer step 7 of 10 ?
    Second, why change the line "umask 002" to "umask 0022" in 3 files can't solve creation mask problem for rac1 ?
    Third, how to solve /tmp problem for rac2 and creation mask problem for rac1 ?
    Thanks.

  • Hello,  I have iMac from Oct, 2010 and have OS 10.6.7 and multiple users.  Mail icon was accidently removed along with program.  Mail 4.4 is on other users but when I reloaded software my user got Mail 4.3. Mail 4.3 did not work with latest OS. Ideas?Matt

    Hello,  I have iMac Itel i3, from Oct, 2010 and have OS 10.6.7 and multiple users. 
    About 3-4 days ago the Mail icon in dock had question mark and was accidently removed, along with program on my user.  Oops.
    1. Mail 4.4 is on other users and works fine, but for me it does not work and tells me V4.3 does not work with latest OS X. 
    2. I reloaded software from my user with original disks  (Oct, 2010) and got Mail 4.3 again. Mail 4.3 did not work with latest OS.  I am unable to load Mail.  Gives Yellow error message.    
    "  You have Mail version 4.3 (1081/1084). It can’t be used on Mac OS X Version 10.6.7 (Build 10J869). For more information, click the Help button."
    3. Tried to update software and look for update for mail 4.3 on Apple site to no success.
    Hate to go to MS-Entorage ( I may need to learn something new and alien) mail program since contracts are in Mail/Address Book.
    Ideas?
    MattDeeds

    Matt,
    I would download and run the 10.6.7 combo update.
    http://support.apple.com/kb/DL1361
    Regards,
    Captfred

  • UPLOAD A DIRECTORY WITH N NUMBER OF DATA FILE

    Hi Experts
                               In my scenario i need to upload a directory with n number of excel file from my presentation server to application server . Please do help on that (note : directory with many file not an single file )

    Hi,
    Here is the Code for List of Files from the Specific Directory to Application Server(SAP)..
    REPORT  ZDIRFILES    .
    PARAMETER: p_fdir            type pfeflnamel DEFAULT '/usr/sap/tmp'.
    data: begin of it_filedir occurs 10.
            include structure salfldir.
    data: end of it_filedir.
    *START-OF-SELECTION
    START-OF-SELECTION.
    Get Current Directory Listing for OUT Dir
      call function 'RZL_READ_DIR_LOCAL'
           exporting
                name     = p_fdir
           tables
                file_tbl = it_filedir.
    List of files are contained within table it_filedir
      loop at it_filedir.
        write: / it_filedir-NAME.
      endloop.
    Girish

  • Moving a file from a directory with the same name to the parent

    Hello,
    I created a directory with the name a.txt and put a file in there called a.txt.
    (This was an accident, I had originally tried to just save a file a.txt in the a.txt directory's parent directory.)
    So I had parent->a.txt->a.txt.
    Then using finder I dragged the a.txt file into the parent directory.
    The replace file dialog came up, as I would expect, to replace the a.txt directory with the a.txt file.
    I clicked replace.
    Then both the directory a.txt and the file a.txt went missing.
    They're not in the Trash.
    The a.txt file is not in the parent directory.
    I understand that there is an underlying process behind moving/replacing/etc., and I understand what I was trying to do is unusual, but this is just crap design.
    PS: I can replicate the problem.
    PSS: I'm using Lion.
    Ian

    Yes.  I also reproduced this.  Looks like a bug.
    You can file a bug report at: http://www.apple.com/feedback/macosx.html

  • Making a Directory with alumni information...Templates to use?

    I am making a directory with alumni information for my high school reunion. In one part of the book, I want to list bio information along with a current pix. In the back of the book, I want to alphabetize everyone's name and address and then cross-reference which page their bio is on. Can anyone tell me how to go about doing that? I want the end result to be a booklet (with 81/2 inch by 11 inch paper folded in half). I tried using one of the Pages templates (I believe it is the one for cooking because it was the only one I could find in the brochure section that was not a tri-fold). I am finding that it took so long to put just one page together. I need to be able to do it rather quickly since there are over 100 people already attending and I can't take forever to do this project. I would appreciate any input from anyone on this subject.
    Thanks in advance.

    I would start on a Word Processing blank document, Not a Page layout document. I'd use A4 paper size but I guess you'll have to use the US letter size.
    When I have created the bios of the people I would use a Heading style for their names. By doing this I can make a Table of Contents of there names. Don't forget adding page number.
    The table of Contents (TOC) will be created in the beginning of the brochure. Select the TOC and copy the content. Open TextEdit and Paste. To alphabetise you need to get the free app WordServices from [http://www.devon-technologies.com/products/freeware/services.html]
    do the alphabetising and copy and paste the text in the end of your Pages document. The TOC is the very last thing you should do before making the booklet.
    Save the document. I hope you have done that many times during the process creating it. And also save it as a PDF document.
    To make the booklet get either the app BookLightning 1.7.2 or Create Booklet PDF Service 1.1
    These application will take your document and create a booklet with the right pagination.

  • Create View  with Force and No Force

    Can Anyone Tell me how to create view with force and no force i have very little idea about this

    This is the syntax.
    CREATE [OR REPLACE] FORCE VIEW view
    [(alias[, alias]...)]
    AS subquery
    [WITH CHECK OPTION [CONSTRAINT constraint]]
    [WITH READ ONLY [CONSTRAINT constraint]];You can see interesting threads about this topic here.
    Re: Creating view forcibly
    Creating View forcefully
    Cheers
    Sarma.

  • Add a new directory with hyphen (-) in the domain name

    Dear All,
    I'm trying to add a new directory with hyphen (-) in the domain name (default domain *.onmicrosoft.com). As a result I keep getting a validation error: "The domain is not unique". I've tried several
    combinations with really awkward words and a hyphen. Such domain names must be unique. I think that the error message is misleading.
    Is it a well known behavior? Is it possible to use a hyphen in the domain name?
    Thank you for your help,
    Artem

    Dear Arvind,
    Thank you for your effort and time in validating the described behavior.
    According to the
    Regexp for subdomain question on SO, 'Each subdomain part may contain hyphens (dashes), but may not begin or end with a hyphen'. That been said, the validation error, on your screenshot is appropriate. On the other hand, the validation error
    with a hyphen (dash) in the middle is misleading.
    It's not a big deal, since people most likely use a custom DNS name anyway.
    Kind regards,
    Artem

  • Tingling Sensation when charging Macbook Pro 13 inch 2015 with Force Touch

    Today, I just got my Macbook Pro 13 inch 2015 with Force Touch.
    When I charge it, there is a VERY STRONG tingling sensation. Almost feel like a strong vibration. I believe this is what they call a "mild electric shock". After testing the new machine with different power outlets (both at my house and other people houses), with same result .... my fingers feel all numb.
    I am going to Apple service next week with this.
    Anyone experiencing the same thing?

    Usually that indicates a bad ground in the source system.  Perhaps a licensed electrician should be employed to check out the wiring.
    Ciao.

  • Can't delete file or directory with accent character

    I have a directory within my iTunes folder structure that has an accent character in it which I am trying to delete.
    If I do an ls on the directory I get this:
    ls -al ls: Radiů Disney_ Jams Vol. 2: No such file or directory
    total 0
    drwxr-xr-x 3 scott staff 102 Jul 29 13:16 .
    drwxrwxr-x@ 21 scott staff 782 Jul 29 13:24 ..
    I've tried rm -rf * but after that I attempt an ls -l I still get: ls: Radiů Disney_ Jams Vol. 2: No such file or directory
    Any way to delete the directory with offending filename? If I attempt to delete the parent directory I get a "Directory not empty message"

    macwiz,
    I tried the SMB path as well but the files were acting as though they were written with indelible electrons. I remembered that the files were originally created and deposited into the folder from a windows machine. I logged into my folder from the same machine and was able to delete them without any problem.
    I appreciate your help and have saved your suggestions (I'm sure they'll come in handy).
    cheers

  • I have an iphone with the app GOOD to read e-mails.  I sync to my other PC having first updated itunes.  During sync it reported that it had removed GOOD, with out asking.  Any ideas?

    I have an iphone with the app GOOD to read e-mails.  I sync to my other PC having first updated itunes.  During sync it reported that it had removed GOOD, with out asking.  Any ideas?

    With the iPhone, you can sync all iTunes content with only one computer.  Trying to sync iTunes content with a second computer will result in iTunes erasing the content from the first computer.

Maybe you are looking for

  • Finder not operating after upgrade from 10.2.8 to 10.3.4

    I tried to upgrade from 10.2.8 to 10.3.4. Everything worked properly except for the fact that the finder menu bar at the top of the screen kept flashing. I upgraded again to 10.3.9 and the finder completely stopped functioning. I could still access a

  • Problems with special characters when exporting to LDAP

    Hi, Im using standard report RPLDAP_EXTRACT to export data to LDAP. The problem is that the special characters (in this case polish letters) do not save correctly (we get for instance '?' instead of normal letter) I tried switching the configuration

  • Scope Of Planning

    Hi All      We are using central planning and have defined the scope of planning in configuraton . We have also defined parallel processing . But we can only see scope of planning field in MD01. We cannot see it in MD02. I beleive MD01 is for plannin

  • Do I need to purchase a Blu Ray player?

    Recently purchased a Monster Powernet 200.  One is plugged into my modem, the HDTV is plugged into the other Monster.  I want to stream video from my computer but can't seem to get it to work.  Do I need to plug the Blu Ray into the monster before I

  • OS 10.4.10 on G4 using quicktime 7.2 and Avid

    HHeellpp!!! My system just upgraded to 10.4.10 and Quicktime 7.2, and I'm running Avid Xpress Pro on my system. I have the upgrade for Avid; however, Quicktime 7.2 is not supported, (didn't know) and I need to roll back to 7.1.6. Can anyone help me s