Using nautilus as a file manager in xfce

I decided to use nautilus as file manager in XFCE because I'm having some issues with thunar (slow mounting of removable drives etc.). I've assigned a keyboard shortcut to launch this command "nautilus --browser --no-desktop". The first time I run it everything works as intended, but when I press the keyboard shorcut second time 5 nautilus windows open and nautilus replaces thunar on the desktop (switches to the background used in gnome, raplaces the xfce right click menu with the gnome one, etc.). I am truly confused with this. Anyone has any idea what could be casing this behaviour?

https://bbs.archlinux.org/viewtopic.php?id=111774
https://bbs.archlinux.org/viewtopic.php?id=111075
https://bbs.archlinux.org/viewtopic.php?id=106421
https://bbs.archlinux.org/viewtopic.php?id=69219
etc.
Last edited by Cdh (2011-01-19 09:36:41)

Similar Messages

  • Changing the default file manager in XFCE

    How would I go about using Nautilus as the default file manager in XFCE instead of Thunar? I know it can be started up with 'nautilus --no-desktop', but how do I make this the default when opening folders from the desktop, menus, etc..?
    The main reason I want to do this is because Thunar doesn't seem to remember a folders last setting. For example, there are folders which I would like to permanently view as a list, sorted by date; but there are plenty of other folders where this is not suitable. Nautilus remembers settings for each folder, Thunar doesn't, and it gets annoying changing the view mode each time. Also network browsing is easier in Nautilus, and I also like the way it tells you how fast file transfers are going.
    Thanks very much,

    Well, it might be considered a dirty hack but it has worked for me in gnome before so it should also work in xfce.  Just edit the thunar.desktop file in /usr/share/applications and replace the Exec=thunar to Exec=nautilus --no-desktop and save the file.  Then any time thunar is launched, nautilus will be launched instead.
    Otherwise, you can edit the menu with the menu editor and change the File manager command and do the same in the panel icon properties.  Both methods will work.

  • Using bash as your file manager?

    Hello,
    My belief is that all file managers suck. There are no exceptions to this. So, for the past few months, I've been sourcing a file with a bunch of tricks I've invented / found through browsing the web to make using just bash as a file manager much more convenient.
    Here's what I currently use:
    # fm v1.9.1 by Kiah Morante
    # A very simple file manager.
    # Depends on pycp/pymv, http://github.com/yannicklm/pycp and feh
    # 'source' this file in a BASH shell
    showHidden=0 # Hidden files not shown
    showDetails=0 # ls is replaced with ls -lh if showDetails is 1
    shopt -s autocd # cd to a dir just by typing its name
    PROMPT_COMMAND='[[ ${__new_wd:=$PWD} != $PWD ]] && list; __new_wd=$PWD' # ls after cding
    # Shortcuts
    source ~/.config/fm/shortcuts # Call all custom shortcuts
    alias ..='cd ..'
    alias ...='cd ../..'
    alias ....='cd ../../..'
    alias h='cd ~'
    alias n='cd "$n"'
    # Keybindings
    bind '"\C-l":"list\C-m"'
    bind '"\C-h":"hide\C-m"'
    bind '"\C-o":"details\C-m"'
    bind '"\C-f":"makedir\C-m"'
    bind '"\C-n":"n\C-m"'
    bind '"\C-y":"cpwd\C-m"'
    bind '"\C-p":"cd "$OLDPWD"\C-m"' # Hint: You could also type '~-'
    # FM prompt appearance
    if [[ $(whoami) == 'root' ]]; then
    # So that the user knows if they have root privileges:
    PS1="\[\e[0;32\]mf\[m\e[m\] \[\e[0;31m\]root\[\e[m\] \[\e[0;34m\]\w \[\e[m\]\[\e[0;31m\]> \[\e[m\]"
    else
    PS1="\[\e[0;32\]mf\[m\e[m\] \[\e[0;34m\]\w \[\e[m\]\[\e[0;31m\]> \[\e[m\]"
    fi
    # Functions
    # Usage
    fmhelp () {
    echo "hide - toggle hidden (hidden by default)
    ls - lists contents of dir(s) passed in args.
    lsd - list directories
    cd - changed to directory \$1
    cp \$@ \$2 - copies file from \$1 to \$2
    mv \$@ \$2 - moves file from \$1 to \$2
    rm \$@ - deletes \$@
    sc \$1 \$2 - make a shortcut called \$1 pointing to \$2. If no \$2 is passed, it is evaluated as \$PWD
    cpwd - copy current working directory
    .., ..., .... - cd .. etc.
    o \$1 - opens \$1 with xdg-open
    hm - how many files are in the current directory
    details - show file details (ls -lh)
    fmhelp - this help menu
    n - Intelligent guess of the next dir you wish to cd to. Last $1 in open, list, or makedir; last argument in copy or move; pwd before a cd
    ~- - BASH shortcut for \$OLDPWD
    img - feh frontend with the following usage:
    img -t \$2 - views the dirs/images specified in \$2..\$n as clickable thumbnails
    img -s \$2 \$3 - views the images specified in \$3..\$n as a slideshow with a slide change speed of \$2 seconds
    img \$@ - views the dirs/images specified
    Shortkeys:
    Ctrl-f - mkdir
    Ctrl-h - hide
    Ctrl-l - ls
    Ctrl-n - cd \$n
    Ctrl-o - details
    Ctrl-p - cd \$OLDPWD
    Ctrl-y - cpwd
    Ctrl-u - clear line # urxvt default"
    # Toggle display hidden files
    # If $showHidden is 1, hidden files are shown
    hide () {
    showHidden=$(( 1 - $showHidden ))
    list
    # Toggle display file details
    # If $showDetails is 1, file details are shown
    details () {
    showDetails=$(( 1 - $showDetails ))
    list
    # ls
    listToggle () {
    if [[ $showHidden == 1 && $showDetails == 1 ]]; then
    ls -C --color -A -lh "$dir"
    elif [[ $showHidden == 1 && $showDetails == 0 ]]; then
    ls -C --color -A "$dir"
    elif [[ $showHidden == 0 && $showDetails == 1 ]]; then
    ls -C --color -lh "$dir"
    else
    ls -C --color "$dir"
    fi
    list () {
    clear # Unclutter the screen
    # List pwd if no $1
    if [[ $@ == "" ]]; then
    set '.'
    fi
    # List multiple folders:
    for dir in "$@"
    do
    listToggle
    done
    n="$1" # See 'n' in fmhelp
    # use feh to view thumbnails/images/slideshow
    img () {
    case "$1" in
    -t) nohup feh --thumbnails "${@:2}" --thumb-height 120 --thumb-width 120 -S filename -d --cache-thumbnails -B black > /dev/null 2>&1 & ;;
    -s) nohup feh "${@:3}" -S filename -d -B black --slideshow-delay "$2" > /dev/null 2>&1 & ;;
    *) nohup feh "$@" -S filename -d -B black > /dev/null 2>&1 & ;;
    esac
    list
    # cp
    copy () {
    if [[ $showHidden == 1 ]]; then
    pycp --interactive --all "$@"
    else
    pycp --interactive "$@"
    fi
    list
    n="${@:(-1)}" # n is the last argument (where stuff is moved to)
    # mv
    move () {
    if [[ $showHidden == 1 ]]; then
    pymv --interactive --all "$@"
    else
    pymv --interactive "$@"
    fi
    list
    n="${@:(-1)}"
    makedir () {
    if [[ $1 == "" ]]; then
    read -e n
    set "$n"
    fi
    if mkdir -- "$1"; then
    list # Update pwd to show new dir(s) that have been made.
    n="$1"
    fi
    # rm
    remove () {
    rm -rfI "$@"
    list
    # open files
    o () {
    # To use xdg-open
    #nohup xdg-open "$1" > /dev/null 2>&1 &
    if [ -f "$1" ] ; then
    case "$1" in
    *.tar.bz2) tar xjf "$1" ;;
    *.tar.gz) tar xzf "$1" ;;
    *.bz2) bunzip2 "$1" ;;
    *.rar) rar x "$1" ;;
    *.gz) gunzip "$1" ;;
    *.tar) tar xf "$1" ;;
    *.tbz2) tar xjf "$1" ;;
    *.tgz) tar xzf "$1" ;;
    *.zip) unzip "$1" ;;
    *.Z) uncompress "$1" ;;
    *.7z) 7z x "$1" ;;
    *.pdf) nohup zathura "$1" > /dev/null 2>&1 & ;;
    *.html) nohup luakit "$1" > /dev/null 2>&1 & ;;
    *.blend) nohup blender "$1" > /dev/null 2>&1 & ;;
    *.avi) nohup mplayer "$1" ;;
    *.wmv) nohup mplayer "$1" ;;
    *.rmvb) nohup mplayer "$1" ;;
    *.mp3) nohup urxvtc -si -sw -sh 30 -e mplayer "$1" > /dev/null 2>&1 & ;;
    *.flv) nohup mplayer "$1" ;;
    *.mp4) nohup mplayer "$1" ;;
    *.ogg) nohup urxvt -si -sw -sh 30 -e mplayer "$1" > /dev/null 2>&1 & ;;
    *.wav) nohup audacity "$1" > /dev/null 2>&1 & ;;
    *.jpg) img "$1" ;;
    *.jpeg) img "$1" ;;
    *.JPG) img "$1" ;;
    *.png) img "$1" ;;
    *.gif) nohup gpicview "$1" > /dev/null 2>&1 & ;;
    *) nohup urxvt -si -sw -sh 30 -e vim "$1" > /dev/null 2>&1 & ;;
    esac
    else
    echo "'$1' is not a valid file"
    fi
    n="$1"
    # Add shortcuts
    makeShortcut () {
    if [[ $2 == "" ]]; then
    set $1 .
    fi
    echo ""$1"=\""$2"\"
    alias "$1"='cd \""$2"\"'
    " >> ~/.config/fm/shortcuts
    source ~/.config/fm/shortcuts
    # Copy pwd to clipboard
    cpwd () {
    echo \"$(pwd)\" | xclip
    # List directories
    lsd () {
    ls -F "$@" | grep \/$
    # Command aliases
    alias mv="move"
    alias sc="makeShortcut"
    alias cp="copy"
    alias ls="list"
    alias rm="remove"
    alias mkdir="makedir"
    alias hm="ls -l . | egrep -c '^-'"
    list # ls when fm starts
    Could all of you fellow file manager-haters post your little tricks, whether just a few lines added to ~/.bashrc or fully fledged files that you source like mine?
    Last edited by greenmanwitch (2011-02-07 19:58:40)

    3]) wrote: once you have video files cluttered all throughout your hard drive and folders all over, thats where the 'bash' filemanager system lacks its use in terms of effectiveness.
    Actually, I found this to be one of the best advantages of using bash is that it forces a user to think about file organization and making useful naming schemes for files.
    For example, instead of having 1000+ media files in one directory I subcategorize theme by genre or whatever, and then probably subcategorize them again.
    Then I usually rename the files to something meaningful, like if I have 50 pictures of my kids birthday, just do a for each loop on the directory and rename all the files donovan_birthdayX.jpg where X is an integer incrementation.
    essentially. just don't "have files cluttered all throughout you hard drive and folders all over". and your life will be much happier regardless of how you manage your files.

  • Linux Nautilus as spatial file manager?

    I've been intrigued by the Linux based file manager known as Nautilus ever since I read about it going to a true spatial style file/folder/window metaphor. As far as I can tell, it behaves almost exactly like the Classic MacOS Finder, right down to folder icons greying out as they open in new windows, relentless window/folder view state retention...even keyboard shortcuts. There's a great article over at Arstechnica describing it...
    http://arstechnica.com/reviews/004/software/gnome-2.6/gnome-2.6-2.html
    My question is, do you suppose it's possible to run the Nautilus file manager app via VMware/Parallels virtualization? Mind you, I'm not looking to abandon the Mac OS. Just considering file manager options since the Finder has become so squirrelly. Have looked at the Finder alts (Path Finder, etc...), but they're all just variations on the browser style Finder.
    Thoughts?
    --Robb

    https://bbs.archlinux.org/viewtopic.php?id=111774
    https://bbs.archlinux.org/viewtopic.php?id=111075
    https://bbs.archlinux.org/viewtopic.php?id=106421
    https://bbs.archlinux.org/viewtopic.php?id=69219
    etc.
    Last edited by Cdh (2011-01-19 09:36:41)

  • Set nautilus as default file manager in kde?

    I would give kde a good chance, but I have several issues with konqueror. Is it possible to set nautilus as the default file manager in kde? I have started nautilus from kde before.
    Is this possible?

    OK then. Install nautilus.
    control center > file associations > inode > directory [ then add: "nautilus --no-desktop" ] (make sure it's primary in the list)
    You'll not be able to open KIO slaves such as media:// with nautilus though. Maybe you should create launchers on the desktop running "nautilus --no-desktop computer://" etc?
    There are some other cosmetic changes you can do as well, such as installing gnome-volume-manager, gnome-settings-dameon, gnome-control-center etc.
    Another way is just to add "nautilus --no-desktop" as default application for inode > directory, but don't add it as *primary*, but secondary application, so you can right click and choose "open with nautilus" on the desktop/konqueror.
    I've successfully run a complete nautilus desktop replacing konqueror as root window and file manager, and it works really good actually.
    I did uncheck "icons on desktop" and disabled wallpaper in kcontrol.
    Had to disable "hal backend" in kde to let gnome-volume-manager take care of hal mounts; "HalBackendEnabled=false" in .kde/share/config/mediamanagerrc
    Then i had to run "gnome-settings-daemon &" in .kde/Autostart/startup (this file should be executable, as usual) (nautilus itself is a GUI application and will survive  the next session on it's own, because of KDE session managment)
    I took the easy route and installed the whole "gnome" metapackage instead of selective packages though.
    The only problem was that kedit.desktop didn't want to start as default application for say, text files, but i had to enter kedit manually in that box you get during "open with dialog".
    I bastardized KDE, i know
    It was worth it! hehe
    BTW dolphin/d3lphin is really good too, as lucke pointed out.

  • Anyone using FCP's file manager to remotely share files, anyone using FCP's file manager to remotely share files?

    Hi:
    I am looking to build a solution for a prospective client.  I want to use FCP server's file manager to allow remote users to access and obtain content.  This arrangement is actually for healthcare solution. I know FCP is used to manage and transfer files, but I am not sure what controls, access, etc are available to make assurances these files are not manipulated.

    I've been using FCP for a long time and I do not know of "file manager" tool. Are you looking for an evaluation of FCP Server? That's a different forum, not many users of that app here.
    bogiesan

  • Transfer media to iPod w/ simply file manager app (e.g., Windows Explorer)

    I like my iPod. But I wish I could sync/transfer media (songs and video) onto it without having to use special sync/management software (e.g., iTunes, Songbird, Banshee) to do so.
    I wish I could use just a regular file management application such as "Windows Explorer" or Nautilus.
    Is there a way to hack the iPod to make it do what I wish?

    Is there a way to hack the iPod to make it do what I wish?
    iTunes gives the music odd file names and the iPod reads the music via these file names. Using Windows won't create the file structure hence no ability for the iPod to read and play the music.
    I believe some software such as Sharepod might do what you want.
    http://www.sturm.net.nz/website.php?Section=iPod+Programs&Page=Sharepod

  • Ranger file manager copy/paste verbose

    Hello everyone, I've been using Ranger as my file manager for a while but I got something bothering me.
    Whenever I wanna copy some lot of files, eg. from my computer to a SD card for my tablet, I mark the files ya and then pp where I want them to go. It works flawlessly, I just would like to know if there's a way of knowing how far are the actions on, I mean, I normally copy some Gigabytes of files, and it takes a while, so if I had a verbose like cp on mv does on command line, or Nautilus does graphically would be awesome.
    Does anyone know if Ranger has such thing?
    Thanks in advance /o/

    There is a progress bar on bottom, may ranger version is 1.6.1, python 3.3.2 .

  • Problem with File Management in InDesign CS4 on Win 7 64-bit Machine

    I have Adobe CS4 and just today have encountered a new problem for which I have no solution. When I open InDesign CS4 and choose the Open File menu, and then attempt to change the way the menu diplays items (e.g., Details rather than Small Icons, ec.), the program crashes and I get the "Adobe InDesign CS4 has stopped working" error message. I first encountered this after attempting to open a folder containing InDesign CS file that I need to open and update. In *that* case, the program crashes as soon as I open that folder (from within InDesign). What I have done so far to solve the problem: I tried using Bridge to browse to the problem folder and open the files from there. Bridge does not crash when I open the folder, and I am able to open any file in the folder *from Bridge* into InDesign CS4. However, when I attempt to, for example, export text from the file, while it does not crash when the window (where I get to specify the name of the exported file and change its location [if I wish]) opens, when I attempt to change how the file menu is displayed (cf. my comment above), the program crashes. *However*, if I simply export the file to any folder other than the one the opening of which crashes the program, too, everything is fine. So the problem seems to afflict the one folder, and any attempt, in any folder, to change how the folder's contents are displayed in what amounts to InDesign's use of the Windows file manager function. Any thoughts would be greatly apprecatd.
    potterj

    Dear Peter,
          This is me (PottsJazz) under my (foolishly misplaced) original username (potterjazz) here on Adobe Fora. For various reasons, I decided to do a ground-up reinstallation of Windows 7 64-bit and Adobe CS4 and, initially, the ability to specify the way folders are displayed from within InDesign's own File Manager worked as it should. However, at some point as I went along installing all the software packages I use (Office 2010, Firefox, WordPerfect, some file converters, DVD/CD burning software, iTunes, etc.) the problem reemerged. I think it is probably a glitch with Windows 7 64-bit and one of my programs, but it is definitely not CS4's fault. I just have to create folders, specify folder display styles, etc., from outside CS4 and then maneuver within its programs to the folders and file locations from inside. It's a small price to pay for not spending days reinstalling software and testing testing testing. I'll let you know if I ever get a solution.
    potterjazz

  • Pc Suite: File Manager not working

    I can't access file systems on my E50 using PC Suite's file manager, neither via Bluetooth nor via cable. 
    The message is something like "Can not connect to mobile phone" (Original German message: 'Verbinden zum Telefon nicht möglich'). When I tried the Video Manager I got something like 'Error while reading the file system of your mobile phone" (German message: 'Fehler beim Lesen des Dateisystems des Telefons').
    Local access to file systems on the phone works fine. Resetting the whole phone, reformatting the SD card, and
    updating PC Suite Support on the phone didn't solve the problem.
    When I first got my E50 and had PC Suite 6.x, everything worked fine.
    Win XP SP3 (Microsoft Bluetooth stack), PC Suite 7.1.18.0 German, Nokia E50 (latest firmware)
    Any ideas?
    Torsten

    When it was working, I would open up windows explorer, browse to the Inbox folder under messages under Phone Browser, select all the messages and just drag and drop to c drive on my PC. then I would delete the messages using my phone. I am using IrDA to connect my 6233 to my PC. It has worked before, I have saved 100s of messages in this manner. I upgraded to the latest PC Suite, it worked once (because the name of the messages saved included the first few words of the message itself), i deleted the messages from my phone, when i reconnected the old messages still appear under pc suite, but these are not on my phone. i deleted the messages under pc suite and now can no longer view the messages on my phone. i am able to browse images and the memory card and phone memory but when selecting the Messages Inbox under PC Suite it always errors with the infamous 'Operation could not be performed' Thanks for your help!

  • Does Konqueror Support Two Home Pages? File Manager Home, Web Home?

    Konqueror is getting better and better as a browser and I was using it at length the other day. I really miss a Home page though - not just the first page loaded, but a page you can return to by pressing a Home button on the button bar.
    Now Konqueror does have a Home button on the button bar, but it seems to only be configurable for the File Manager profile. Is there a way to have that one Home button go to your home directory when you are using Konqueror as a file manager, and go to a web page when you are using it as a browser?

    Navigate to the webpage you like as homepage while you have started konqui in webbrowser mode, then click "settings->Save view profile 'Webbrowsing'"
    Then konqi will startup with this site everytime you start it as webbrowser.
    About the home button: I am sorry it can only have one function, but you could use the bookmarks toolbar for such things (as you may bookmark file system urls too)

  • Paste / Move issue in all Android file manager ports

    So as everyone here knows a proper file manager is a must for every single OS and the PB doesn't pack one out of the box.
    Air Browser seems to be the only free native one but it doesn't allow to browse outside "/accounts/1000/ shared" and the UI could be improved imho (not a fan of how the author split the different operations menu in 3 depending on it involving files, folders or cache... plus it lack multiple folder selection). So as a complement I use Ghost Commander which is available in App World.
    Last week I tried to use Ghost commander as my sole file manager only to discover it can't copy / move files in "/accounts/1000/ shared". Then I tried most Android file managers available in App World only to find out they have the same issue!
    Here's what I mean:
    1- Using any Android ported file manager copy/cut/paste a pdf, doc, xls... form/to a folder inside "/accounts/1000/ shared". Example
    2- Aparently the file is moved to the desired folder. Example
    3- Now open it... Example
    4- Regardless the file type (I tried a pdf here) the associated you will only get an error message stating the path isn't valid... Example
    The time I tried this I was moving a folder with docs using Ghost Commander and afterwards it seemed as if I had lost my files (couldn't open them in the device and couldn't see them in my computer when I connected the PB)!
    The only way I found I could recover them was:
    1- Using any Android file manager copy the files to anywhere inside "/sdcard". Example
    2- Using AIr Browser (didn't try any other native file manager since they are paid) go to /misc/android/folder_where_you_copied_the_files_to and copy them to any folder outside "misc". Example
    Thanks for the scare RIM! Makes me wonder if any proper testing is done to the apps before these are acepted in BBAW.
    Don't know if this is an issue caused by the emulator, the sandboxing process or if it's an issue in the way all the Android apps were coded... But it must be fixed.
    As every single bug report I wrote here before I ask any informed user / mod /developer who reads this to send it to the right person and to inform me on how how I can do so correctly the next time.
    PS: If you know how to answer last sentence please also check this thread:
    Sheets 2 Go issue with predictive texting

    @Loki_
    What if you use the preloaded file commander? 
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Website not displaying what i uploaded through File Manager on hosting service.

    I use a non-Adobe hosting service. I uploaded the files using this company's file manager. The text and images do not stay where I put them on the page. It looks fine in preview mode and at http://testtheshroudorg.businesscatalyst.com/the-shroud.html, but not on www.testtheshroud.org. After uploading the page, the text gets on top of each other and garbled when I display them.   I'm using a Windows Vista PC
    I saw a similar post from August that says I should delete the file off the server and then upload again. This did not fix it. How do I fix this?

    Hi,
    Kindly confirm if you were able to resolve the issue, the site "www.testtheshroud.org" appears to be fine.
    Regards
    Sonam

  • Active-Active firewall, multiple mode can't do file management?

    Hi all
    as above title, found that i can't use ASDM to do file management.
    I get this after i read the configuration documents: Backing Up and Restoring Configurations, Images, and Profiles (Single Mode)
    So in Active-Active it's a multiple mode, can't just simply backup/upgrade it firmware and ASDM?
    You are welcome to share your comment, thanks in advance
    Noel

    Hi,
    Please make sure you are in the system context to take the back up or restore. It only appears in the system context.
    Thanks,
    Varun Rao
    Security Team,
    Cisco TAC

  • [solved]Xfces's file manager

    I need to run the xfce4 file manager as root so I can drag and drop files to and from the usr directory
    I gnome I would do sudo nautilus
    In xfce4 ,what would I do
    I read somewhere tha it is xffm but that didn't help.
    Last edited by Romanrp (2009-11-22 10:32:27)

    Allan wrote:And when "sudo thunar" results in a be red massage saying "Warning, you are using the root account, you may harm your system", listen.   You really should only use the package manager to touch files in /usr
    No harm in dragging themes and icons into the relevant folders for systemwide access.
    In fact I've changed the permissions of /usr/share/themes and /usr/share/icons to allow my user write access to save myself having to open a filemanager with root access when I want to add a new theme or icon set.

Maybe you are looking for

  • How do I restore a few items saved in Time Machine on a different computer?

    After upgrading my G5 Mac to Leopard, and using an external Firewire drive as the Time Machine backup, both of my hard drives crashed on the G5. To make a long story short, I ended up with a new iMac. Luckily, all my data WAS saved on the Time Machin

  • IDoc-to-File scenario with external Partner ... PCK necessary?

    Hi all, I have a question concerning to a IDoc-to-File Scenario with an external Partner. Here is a short Description of the Scenario: The SAP ERP System creates an IDoc which should be send to the SAP Integration Server. The Integration Server respe

  • IMac G3 + USB Stick

    Hi all... I just recently acquired an iMac G3 strawberry (tray-loading). It is still running OS 8.6. I needed to transfer some files/classic apps to it from my main Mac via my U3 pen drive. When I plugged it into the USB port on the keyboard (on the

  • OWB Installation failed

    Hi, I am trying to create a OWB repository for 10g R2 using OMB and it fails with the following error: OWB repository installtion failed. The Warehouse Builder repository owner installation failed on user OWBRO. Exception occured in 'processSPAWN'. j

  • HELP FCP 7.0.3 - Motion Render Error - Keeps shutting down- HELP ASAP PLEASE!!!!

    Process:         Final Cut Pro [388] Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro Identifier:      com.apple.FinalCutPro Version:         7.0.3 (7.0.3) Build Info:      FCPApp-1008261348~8 Code Type:       X86 (Native