Virt-manager, openbsd-netcat conflicting with gnu-netcat

Hi,
since 2012 there seem to be no more reports about the dependency problem of virt-manager (1.0.1-1) and openbsd-netcat?! Openbsd-netcat is optional but still conflicting with gnu-netcat which is indeed my preferred solution. Is there any solution (beside removing gnu-netcat^^) or maybe I'm missing something?
Thanks and regards

karol wrote:openbsd-netcat provides netcat, I don't know why is virt-manager depending on openbsd-netcat and not on netcat, which would make it trivial to use gnu-netcat.
Considering pkgbuild as well as the output of pacman -Qi it seems to depend on openbsd-netcat. For the needed libvirt it is optional.
karol wrote:Have you tried editing the PKGBUILD of virt-manager?
Since the package is in community repo I wanted to avoid editing pkgbuild, cause for me this was only needed (till now) for building packages from "scratch" or with yaourt.
Interesting for me, there seems to be another version in AUR repo which has not such a direct dep (AUR)?
If I have to edit pkgbuild, than I was wondering if it maybe could break some functions, since to my knowledge openbsd-netcat and gnu-netcat have some different options available?!

Similar Messages

  • Adobe extension manager messages "the following extension conflicts with other extensions

    Hello,
    I got this message from Adobe Extension manager but it didn't list what extensions or other plugins that conflicted with the hollywood2 2.0 plugin that i was trying to install, anyone else have issues downloading plugins through extension manager?
    Any help is greatly appreciated.
    Thanks, Kelly

    Seems to be a lot of this going on. Wondering if we're wasting our time with this??!!

  • [Solved] No sound from VM (Windows 7) on qemu with virt-manager

    I posted this in Newbie corner,
    https://bbs.archlinux.org/viewtopic.php?id=176131
    but let me re-post here becase it is about sound matter.
    I have installed Windows 7 (64bit) on qemu with virt-manager.
    It seems that audio works fine inside the guest os, but I can hear no sound.
    [Guest]
    Guest os: Windows 7 (64 bit)
    Sound driver: ich6
    Console: Spice (VNC doesn't work.)
    [Host]
    linux 3.12.8-1 (base)
    qemu 1.7.0-1
    virt-manager 0.10.0-4
    libvirt 1.2.1-1
    According to
    https://bbs.archlinux.org/viewtopic.php?id=157604
    I did as follow before launch the VM, but it doesn't solve the problem.
    export QEMU_AUDIO_DRV=alsa
    What shoud I check and do?
    Followings are some additional information:
    * If I put the same command above
    % /usr/sbin/qemu-system-x86_64 -name win7qemu002...
    It produces error.
    char device redirected to /dev/pts/4 (label charserial0)
    Could not access KVM kernel module: Permission denied
    failed to initialize KVM: Permission denied
    * According to the someone's discussion,
    I added my user to kvm group
    % sudo gpasswd -a taro kvm
    or edited /etc/libvirt/qemu.conf, but they don't fix this errors.
    % sudo vi /etc/libvirt/qemu.conf
    - #user = "root"
    + user = "taro"
    * Everytime I launch the virt-manager,
    a dialog "Authentication" pops-up and asks
    for my user password (not root password).
    % ps aux | grep kvm                                                     [~]
    root       252  0.0  0.0      0     0 ?        S<   02:25   0:00 [kvm-irqfd-clea
    n]
    nobody   10199 63.0 27.0 1613768 1070088 ?     Sl   11:31   0:34 /usr/sbin/qemu-system-x86_64 -name win7qemu002 -S -machine pc-i440fx-1.7,accel=kvm,usb=off -m 1024 -realtime mlock=off -smp 1,sockets=1,cores=1,threads=1 -uuid 00b5056b-9055-aa4f-d7a6-aef72cc8edd4 -no-user-config -nodefaults -chardev socket,id=charmonitor,path=/var/lib/libvirt/qemu/win7qemu002.monitor,server,nowait -mon chardev=charmonitor,id=monitor,mode=control -rtc base=localtime -no-shutdown -boot menu=off,strict=on -device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 -device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x6 -drive file=/mnt/win/win7qemu002,if=none,id=drive-ide0-0-0,format=raw -device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 -drive if=none,id=drive-ide0-1-0,readonly=on,format=raw -device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 -netdev tap,fd=22,id=hostnet0 -device e1000,netdev=hostnet0,id=net0,mac=08:00:27:8f:ff:84,bus=pci.0,addr=0x7,bootindex=1 -chardev pty,id=charserial0 -device isa-serial,chardev=charserial0,id=serial0 -chardev spicevmc,id=charchannel0,name=vdagent -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.spice.0 -device usb-tablet,id=input0 -spice port=5900,addr=127.0.0.1,disable-ticketing,seamless-migration=on -device qxl-vga,id=video0,ram_size=67108864,vram_size=67108864,bus=pci.0,addr=0x2 -device intel-hda,id=sound0,bus=pci.0,addr=0x3 -device hda-duplex,id=sound0-codec0,bus=sound0.0,cad=0 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x5
    root     10201  0.0  0.0      0     0 ?        S    11:31   0:00 [kvm-pit/10199]
    taro     10340  0.0  0.0  10668  1060 pts/2    S+   11:32   0:00 grep kvm
    Last edited by taro (2014-02-15 12:36:43)

    Self reply.
    Finally, I got to hear sound from windows 7 as guest OS.
    I gave up to use virt-manager and launches OS image by command line
    like follows.
    % export QEMU_AUDIO_DRV=alsa
    % qemu-system-x86_64 /mnt/win/win7qemu002 -cpu kvm64,+nx -enable-kvm -m 1536 -soundhw hda -usb
    Then, sounds works good.
    # However, the quality is bad because of heavy CPU load.
    Virt-manager may make things complex..
    Sorry for the duplicated post.
    https://bbs.archlinux.org/viewtopic.php?pid=1373935
    Last edited by taro (2014-02-15 12:36:19)

  • Could not create virtual machine in virt-manager with kvm

    I installed the following packages:
    libvirt 0.6.1-1 (modified PKGBUILD from AUR)
    kvm 84-1
    qemu 0.10.0-1
    virtinst 0.400.3-1 (modified PKGBUILD from AUR)
    virtviewer 0.0.3-2
    virt-manager 0.7.0-1(modified PKGBUILD from AUR)
    And my current user belongs to the following groups:
    disk lp audio optical storage power locate hal camera kvm libvirt tinh
    Here is a part of my rc.conf
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(e100 mii iwl3945 kvm kvm-intel)
    DAEMONS=(syslog-ng @hal @network @dnsmasq @oss @cups @fuse @libvirtd !netfs !crond)
    List of loaded kernel modules:
    modprobe -l | grep kvm
    /lib/modules/2.6.28-ARCH/kernel/arch/x86/kvm/kvm.ko
    /lib/modules/2.6.28-ARCH/kernel/arch/x86/kvm/kvm-amd.ko
    /lib/modules/2.6.28-ARCH/kernel/arch/x86/kvm/kvm-intel.ko
    My CPU does support Intel VT.
    [tinh@tinh-laptop ~]$ egrep '^flags.*(vmx|svm)' /proc/cpuinfo
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor vmx est tm2 xtpr pdcm
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor vmx est tm2 xtpr pdcm
    [tinh@tinh-laptop ~]$
    My kernel version is:
    uname -a
    Linux tinh-laptop 2.6.28-ARCH #1 SMP PREEMPT Sun Feb 22 11:03:50 UTC 2009 i686 Genuine Intel(R) CPU T2400 @ 1.83GHz GenuineIntel GNU/Linux
    I also attached a screenshot of virt-manager.
    Any helps are welcomed.
    Thanks
    Last edited by tinhtruong (2009-03-10 08:10:50)

    Maybe the command line shows some errors.Try something like
    /usr/bin/kvm -M pc -monitor pty -boot d -hda /dev/vg01/opsi -cdrom /root/debian-500-i386-netinst.iso -net nic,macaddr=00:16:3e:49:da:10,vlan=0 -net tap,script=,vlan=0,ifname=vnet0 -serial pty -parallel none -usb -vnc :0
    -hda is where you want to install the machine. Here it's a logical volume, but you can also use an image.
    -cdrom is the installation medium
    you can probably omit -vnc :0. I used it because I install machines on servers without gui.

  • HP Storage Management Pack Conflicts with Network Monitoring SNMP

    The HP Storage management pack that I installed requires starting the Windows SNMP services, which creates a conflict with SNMP used for SCOM network monitoring.  I am spinning up a second SCOM mangement server so I can split these functions. What would
    you recommend to split these functions across the two management servers?  Uninstall the HP Storage Management Pack, and install on the new server?  Or move the network monitoring to the second server?
    Thank you for your help!

    Does the HP Storage pack support resource pools? What I've found with these 3rd party packs that implement connector services is they do not provide true HA via SCOM resource pools - they are standalone systems with a connector service. This is true for
    the NetApp (DataONTAP) pack, and it's a huge disappointment.
    Vendors do this because they have an API, and they think the only way to implement discovery and monitoring in SCOM is to create a service that accesses the API - and then the service is basically a collector in this case, and typically has a handful of
    rules (sometimes just one rule) that scrape events on the management server and they are misinterpreted to be alerts coming from some instance.
    I turn green when I run into this type of problem, because all this can be accomplished with native modules or managed code that are designed to work very well with SCOM.
    I know this doesn't answer your question - it's more a way for me to express my distain for these type of packs.
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • No sound from VM (Windows 7) on qemu with virt-manager

    I have installed Windows 7 (64bit) on qemu with virt-manager.
    It seems that audio works fine inside the guest os, but I can hear no sound.
    [Guest]
    Guest os: Windows 7 (64 bit)
    Sound driver: ich6
    Console: Spice (VNC doesn't work.)
    [Host]
    linux 3.12.8-1 (base)
    qemu 1.7.0-1
    virt-manager 0.10.0-4
    libvirt 1.2.1-1
    According to
    https://bbs.archlinux.org/viewtopic.php?id=157604
    I did as follow before launch the VM, but it doesn't solve the problem.
    export QEMU_AUDIO_DRV=alsa
    What shoud I check and do?
    For additional information,
    % ps aux | grep kvm                                                     [~]
    root       252  0.0  0.0      0     0 ?        S<   02:25   0:00 [kvm-irqfd-clea
    n]
    nobody   10199 63.0 27.0 1613768 1070088 ?     Sl   11:31   0:34 /usr/sbin/qemu-system-x86_64 -name win7qemu002 -S -machine pc-i440fx-1.7,accel=kvm,usb=off -m 1024 -realtime mlock=off -smp 1,sockets=1,cores=1,threads=1 -uuid 00b5056b-9055-aa4f-d7a6-aef72cc8edd4 -no-user-config -nodefaults -chardev socket,id=charmonitor,path=/var/lib/libvirt/qemu/win7qemu002.monitor,server,nowait -mon chardev=charmonitor,id=monitor,mode=control -rtc base=localtime -no-shutdown -boot menu=off,strict=on -device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 -device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x6 -drive file=/mnt/win/win7qemu002,if=none,id=drive-ide0-0-0,format=raw -device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 -drive if=none,id=drive-ide0-1-0,readonly=on,format=raw -device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 -netdev tap,fd=22,id=hostnet0 -device e1000,netdev=hostnet0,id=net0,mac=08:00:27:8f:ff:84,bus=pci.0,addr=0x7,bootindex=1 -chardev pty,id=charserial0 -device isa-serial,chardev=charserial0,id=serial0 -chardev spicevmc,id=charchannel0,name=vdagent -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.spice.0 -device usb-tablet,id=input0 -spice port=5900,addr=127.0.0.1,disable-ticketing,seamless-migration=on -device qxl-vga,id=video0,ram_size=67108864,vram_size=67108864,bus=pci.0,addr=0x2 -device intel-hda,id=sound0,bus=pci.0,addr=0x3 -device hda-duplex,id=sound0-codec0,bus=sound0.0,cad=0 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x5
    root     10201  0.0  0.0      0     0 ?        S    11:31   0:00 [kvm-pit/10199]
    taro     10340  0.0  0.0  10668  1060 pts/2    S+   11:32   0:00 grep kvm
    * If I put the same command above
    % /usr/sbin/qemu-system-x86_64 -name win7qemu002...
    It produces error.
    char device redirected to /dev/pts/4 (label charserial0)
    Could not access KVM kernel module: Permission denied
    failed to initialize KVM: Permission denied
    * According to the someone's discussion,
    I added my user to kvm group
    % sudo gpasswd -a taro kvm
    or edited /etc/libvirt/qemu.conf, but they don't fix this errors.
    % sudo vi /etc/libvirt/qemu.conf
    - #user = "root"
    + user = "taro"
    * Everytime I launch the virt-manager,
    a dialog "Authentication" pops-up and asks
    for my user password (not root password).
    best regards.
    Last edited by taro (2014-06-29 02:54:25)

    I'm having the same issue.  Not running Windows though... I have a minimal Ubuntu 14.04 as the guest (Arch as the host.)  Been trying everything I can think of but I can't get any sound in virt-manager.  Like you said, the sound seems to play OK in the guest, it's recognizing the card, volume is turned up but no sound.  It has to be an issue with my host configuration but I'm not sure what.  I can get sound to play in the same guest if I launch qemu directly and use ac97.  Something's gotta just be misconfigured with virt-manager/libvirt/Spice.  I thought a permissions issue at first since by default it runs as the "nobody" user but I even tried the foolish thing of setting /etc/libvirt/qemu.conf so qemu runs as root... still no go.  I'd really like to use virt-manager for the nice GUI, presistant settings, and extra features like Spice and the QXL driver that enables KMS on the guest.

  • Can't create new virtual machine with Virt-manager

    After going through the whole setup, I would get this error through backtrace:
    File "/usr/share/virt-manager/virtManager/netlist.py", line 346, in validate_network
    netobj.start()
    File "/usr/share/virt-manager/virtManager/network.py", line 104, in start
    self._backend.create()
    File "/usr/lib/python2.7/site-packages/libvirt.py", line 2755, in create
    if ret == -1: raise libvirtError ('virNetworkCreate() failed', net=self)
    libvirtError: Unable to create bridge virbr0: File exists
    Hence, I attempted to follow https://wiki.archlinux.org/index.php/Bridge_with_netctl to set up my network bridge and try again, and I'd still get the same error.
    I also tried to do sudo virt-manager but I'd get:
    ** (virt-manager:16835): WARNING **: Could not open X display
    No protocol specified
    (virt-manager:16835): Gdk-ERROR **: error: XDG_RUNTIME_DIR not set in the environment.
    I want to get KVM working using a gui and so I choice virt-manager, but now I'm stuck and don't know where to go from here.

    Hi Sir,
    Please follow these troubleshooting steps mentioned within the article below :
    http://blogs.technet.com/b/scvmm/archive/2012/08/13/kb-how-to-troubleshoot-the-needs-attention-and-not-responding-host-status-in-system-center-2012-virtual-machine-manager.aspx
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • Recent Fingerprint Reader update conflicts with Password Manager

    Hi,
    After udating my Fingerprint Reader software to the most recent 64-bit 5.9.6.7084 version, my Password Manager (ver 3.20.0333.00) can no longer find the device. Am I the only one having this problem?
    Solved!
    Go to Solution.

    You are using the older Password Manager that's bundled with Client Security Solution.  And you need to update it to use the latest fingerprint software.
    http://support.lenovo.com/en_VN/detail.page?LegacyDocID=MIGR-73696
    If you don't need the complexity of Client Security Solution, then another option is to start using the new stand-alone Password Manager 4.0 
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS024984

  • How can I install an extension when it conflicts with an existing one that doesn't appear in the list of extensions?

    I'm trying to install Guide Guide for Photoshop CS 2014 using the Adobe Extension Manager CC but when clicking on the 3.1.2-guideguide.zxp I recieve the following error, "This extension cannot be installed, since it conflicts with a existing one. To install this extension, please remove the extension 'GuideGuide' which has been installed in ", then install again."  Note that there is some code breaking in there where ", is.  When I open Adobe Extension Manager CC there are no extensions listed.  None under any of the products to the left.  I can't uninstall it if it's not listed.
    After reviewing the forums I have gone into my %appdata%\Roaming\Adobe\ folder and removed all folders for previous versions of Adobe Extension Manager.
    Any help with this issue would be appreciated.  Thank you for your time.

    Please delete "C:\ProgramData\Adobe\Extension Manager CC\Configuration\DB\ExMan.db" then retry. Note that "C:\ProgramData" is hidden by default. You can input C:\ProgramData in the address bar of Windows Explorer then press "Enter" key to go into this folder.

  • How do I delete my account, please and thanks! It is conflicting with my college's license.

    I licensed cloud month by month as an educator, then found out that my college has a license.  They installed it my machine, and Adobe cancelled my subscription.  Now I can't use my college's copy because it is conflicting with my cloud subscription.  When I go to my account to delete it, I only see the option to contact customer support, and see no way to do that.  Please help!  I have to get my work done and now our IT folks are telling me that the only way to get rid of the Adobe Application Manage on my computer is to wipe it out and reinstall everything! Yikes.
    Thanks for any help you can give.  This is just plain crazy. :-)

    I have created a small Step by Step presentation for the same. You might want to check that as well.
    https://dl.dropboxusercontent.com/u/5585693/Adobe%20Forums/Sign-in%20with%20new%20user.mht

  • VoiceOver conflict with arrow keys ??

    I have just found that VoiceOver is in conflict with the Up/Down/Left/Right Arrow keys. If it is on the four keys do not work. I tried another keyboard to check whether it was a hardware problem and exactly the same happened with VoiceOver on. Why?
    Until yesterday everything worked fine but suddenly I lost the arrow key functionality. Any ideas, anyone?
    Note: I am not referring to the number pad and its keyboard mouse keys.

    Hello Helen,
    First of all, VoiceOver makes very heavy use of arrow keys, so you are right in suspecting that this is an oddity, and not a "feature" of VoiceOver.
    I've managed to reproduce this behaviour with the following sequence:
    1) Turn VoiceOver on (Cmd-F5).
    2) Activate QuickNav (left and right arrows simultaneously).
    3) Interact with an element containing only one item, via down + right arrows.
    4) Arrow keys will only "bong". No movement possible until QuickNav turned off again. Otherwise, turning VoiceOver off will also restore the arrow keys to normal—until it's turned back on again, when it will once more get "stuck". Of course, stopping the interaction via left+down arrows also restores free movement—but with QuickNav active, only the VO cursor moves, not the focus, so that can be disconcerting when trying to navigate menus, etc.
    So the solution may be to turn VoiceOver on, then ensure QuickNav is off (left + right arrows), then VoiceOver off again.
    Hope this clears it up!
    Archie

  • Qt3-enhanced conflicts with qt3 though I have no qt3

    Hi,
    I'm trying to install KDEMod, after a clean installation of Arch.
    # pacman -S kdemod-base
    :: group kdemod-base:
    kdemod-arts kdemod-gnu-gift kdemod-kde-common kdemod-kdebase
    kdemod-kdelibs kdemod-perl-xml-xql kdemod-ui-kde qt3-enhanced
    :: Install whole content? [Y/n] y
    resolving dependencies... done.
    looking for inter-conflicts...
    error: unresolvable package conflicts detected
    error: failed to prepare transaction (conflicting dependencies)
    :: qt3-enhanced: conflicts with qt3
    But i searched my system, there is no qt3 or kde related stuff installed:
    # pacman -Q | grep qt
    # pacman -Q | grep kde
    both return nothing.
    How do I solve this?
    Thank you
    PS: I previously install opera-static. But nothing changes after i removed it.
    Last edited by Mr_Shameless (2008-06-01 02:11:56)

    Thank you very much though i didnt have the chance to try that. I tried a fresh install of the new 2008.03 release and didnt have that problem

  • OL7 Virt-manager console problem

    Hi,
    Here's the problem:
    Im using virt-manager on a OL7 server. I use Xming on a client pc to connect to the server and launch virt-manager. I can press "run" and the virtual-machine will start in background, but when I try to open the console, both the console and the virt-manager window crashes automaticly. (The virtual-machine stay running in background)
    The thing is, it was working perfectly fine with OL6, the problem started after an upgrade to OL7. I also have a brand new server with a fresh installed OL7 and it has the same issue. And I also get the same problem if I try from different client Pc.
    When the console crashes, I get this allert on the Server:
    virtual machine manager crashed
    python2.7 killed by sigabrt oracle
    /etc/ssh/sshd_config
    X11Forwarding yes
    X11DisplayOffset 10
    X11UseLocalhost no
    The following are installed in the latest version:
    xorg-x11-xauth
    xterm
    Im still new at this, tell me if more specific information is needed.
    Thanks,
    -Gab.

    What exactly where you testing and what other configurations exist or do not exist that may influence the problem, e.g. IPv6?
    (https://bugzilla.novell.com/show_bug.cgi?id=618068)
    Here is what the sshd_config man page has to say about the configuration parameter:
    X11UseLocalhost
    Specifies whether sshd(8) should bind the X11 forwarding server to the loopback address or to the wild-
    card address.  By default, sshd binds the forwarding server to the loopback address and sets the hostname
    part of the DISPLAY environment variable to ``localhost''.  This prevents remote hosts from connecting to
    the proxy display.  However, some older X11 clients may not function with this configuration.
    X11UseLocalhost may be set to ``no'' to specify that the forwarding server should be bound to the wild-
    card address.  The argument must be ``yes'' or ``no''.  The default is ``yes''.
    So does virt-manager work with X11UseLocalhost=no but the console of a VM works only with X11UseLocalhost=yes. Maybe, but I would rather find this strange and the problem might be something else. Why the OP has X11UseLocalhost=no is another question though.

  • Distiller Error / Conflict with MainType

    Hello!
    I am getting an error window from Acrobat Distiller while using a font management program called MainType (www.High-Logic.com)
    I have attached a screen shot.
    Before the error window pops up, everything slows down to a crawl. It's just really annoying to have the error message pop up about every 5 minutes or so.  Is there a way to turn off or disable Distiller while I'm using MainType? If not, is there a setting I can change to fix this?
    Here is my system info:
    OS Name      Microsoft Windows XP Professional
    Version          5.1.2600 Service Pack 3 Build 2600
    OS Manufacturer     Microsoft Corporation
    Activation Status      Activation Pending (30 days remaining)
    System Name           84A-105-21740
    System Manufacturer         Hewlett-Packard
    System Model           HP Compaq dc7600 Convertible Minitower
    System Type X86-based PC
    Processor      x86 Family 15 Model 4 Stepping 7 GenuineIntel ~2791 Mhz
    BIOS Version/Date  Hewlett-Packard 786D1 v01.54, 11/14/2005
    SMBIOS Version      2.4
    Windows Directory  C:\WINDOWS
    System Directory      C:\WINDOWS\system32
    Boot Device  \Device\HarddiskVolume1
    Locale            United States
    Hardware Abstraction Layer          Version = "5.1.2600.5512 (xpsp.080413-2111)"
    User Name    CSUMB\ehle3854
    Time Zone     Pacific Daylight Time
    Total Physical Memory       1,025.00 MB
    Available Physical Memory           353.93 MB
    Total Virtual Memory           2.00 GB
    Available Virtual Memory   1.96 GB
    Page File Space      2.39 GB
    Page File       C:\pagefile.sys
    My computer is on a university system so I'm assuming Acrobat Distiller is ran from a server.
    Acrobat Distiller 9.1 2/27/09
    Any and all help is appreciated - thanks!
    Diane

    Hi Dilek,
    Thank you very much  for the reply.
    I went to the path which you mentioned upto below.
    Personnel Management - EMployee self-service - Service-Specific Settings - Working time - Leave Request - Processing Processes - Configure output of messages -
    We did nt maintain any rule group for customizing tab.Sap standard is showing as rule group.No details has been maintained.
    Alot of employees are having substitutions,most of the  approvers are able to approve leaves of the employees who are having substitutions.This is a peculiar case,where the approver is getting an error with conflict with substitutions.
    In R/3 we are getting a warning message and able to save the leave for this employee.
    Even i tried with other employees who are having the substitutions,system is behaving the same.
    Please advice me to resolve the problem.
    Regards,
    Sairam.

  • Auxiliary filename  conflicts with a file used by the target database

    Hi,
    I am using RMAN backup to duplicate my prod database.
    My database is 10g on Linux.
    My RMAN script is like this
    connect auxiliary /;
    connect catalog rman/rman@catalog;
    connect target sys/sys@prod;
    sql "alter session set optimizer_mode=RULE";
    run {
    allocate auxiliary channel dup1 type disk;
    allocate auxiliary channel dup2 type disk;
    allocate auxiliary channel dup3 type disk;
    set newname for datafile 1 to '/d05/u08/oracle/qadata/system01.dbf';
    set newname for datafile 2 to '/d05/u08/oracle/qadata/system02.dbf';
    set newname for datafile 3 to '/d05/u08/oracle/qadata/system03.dbf';
    set newname for tempfile 1 to '/d05/u09/oracle/qadata/temp01.dbf';
    set newname for tempfile 2 to '/d05/u09/oracle/qadata/temp02.dbf';
    set newname for tempfile 3 to '/d05/u09/oracle/qadata/temp03.dbf';
    set newname for tempfile 4 to '/d05/u09/oracle/qadata/temp04.dbf';
    duplicate target database to qa logfile
    group 1 ('/d05/u09/oracle/qadata/log1a.log',
    '/d05/u09/oracle/qadata/log1b.log') size 50m,
    group 2 ('/d05/u09/oracle/qadata/log2a.log',
    '/d05/u09/oracle/qadata/log2b.log') size 50m,
    group 3 ('/d05/u09/oracle/qadata/log3a.log',
    '/d05/u09/oracle/qadata/log3b.log') size 50m;
    I am getting the following error in the middle
    Starting Duplicate Db at 18-SEP-10
    released channel: dup1
    released channel: dup2
    released channel: dup3
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 09/18/2010 11:32:07
    RMAN-05501: aborting duplication of target database
    RMAN-05001: auxiliary filename /db01/u08/oracle/proddata/GRCM.dbf conflicts with a file used by the target database
    Recovery Manager complete.
    Previously the duplicate db was successful, but now it is giving error.
    How can I solve this.
    Thanks,
    Kavitha

    5001, 1, "auxiliary file name %s conflicts with a file used by the target database"
    // *Cause: RMAN is attempting to use the specified file name as a restore
    //         destination in the auxiliary database, but this name is already
    //         in use by the target database.
    // *Action: Use the CONFIGURE AUXNAME command to specify a name for the data
    //          file that does not conflict with a file name in use by the
    //          target db.

Maybe you are looking for

  • Error " In case of evaluated receipt settlement, please maintain tax code", during VI01

    Dear Team We have a scenario in our environment where for a delivery made for STO Purchase Order, we are trying to post shipping cost document for Shipping document. When we try to save the document, the system returns the error " In case of evaluate

  • Final in inner class

    I am trying to manually make a drawing program similar to this one http://javafx.com/samples/Draw/ However I am running into issues involving inner classes and finals. "local variable size is accessed from within inner class; needs to be declared fin

  • Troubleshooting checklist?

    As I've made extensive use (my thanks to all of you on these forums!) of these Discussion pages, particularly for troubleshooting my slow Safari problem, one poster with regard to a possible incompatible plug-in problem affecting a Safari upgrade, in

  • ABAP & SQL performance

    Hi all. I have the following sql wich performance isn't good enough because one of the tables used in the join as a lot of data. So i Want to know how i can improve it ? SELECT DISTINCT ordered_prod   INTO TABLE ht_data-ordered_prod   FROM crmd_order

  • Expand Collapse Functionality on Left Vertical Navigation

    Hi, I am trying to implement an expand/collapse functionality for subcommunities and their links in the left vertical navigation menu. My communities appear as horizontal tabs (as in the support center navigation). Once i have a community selected, t