[Solved] Running ethtool at boot, where to put it

I'm trying to run this command at boot
ethtool -s eth0 speed 1000 duplex full autoneg off
I've put in rc.local put that script runs at the very end of the boot process. I've set up machine to use wicd and I would like that above command runs before wicd is started. How can I do that?
Here is my DAEMONS list
DAEMONS=(syslog-ng !network netfs crond alsa hal fam cups wicd samba stbd avahi-daemon)
Regards
André
Last edited by fettouhi (2008-12-21 20:23:34)

you can put the line in the wicd daemon:
nano /etc/rc.d/wicd
case "$1" in
        start)
                    ethtool -s eth0 speed 1000 duplex full autoneg off
or you can create your own daemon:
nano /etc/rc.d/ethtool
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
  start)
    ethtool -s eth0 speed 1000 duplex full autoneg off
  stop)
    echo "usage: $0 {start|stop|restart}"
esac
exit 0
save the file and make it executable:
chmod 0755 /etc/rc.d/ethtool
and add it to the daemon list(before the wicd)
DAEMONS=(syslog-ng !network netfs crond alsa hal fam cups ethtool wicd samba stbd avahi-daemon)

Similar Messages

  • Where to put Jsp File?

    Hi!
    I am using Apache-tomcat web sever. To run my
    jsp progam where to put my jsp file?
    Thanks.

    Hi
    you can place your jsp file in webapps/ROOT/ directory.

  • Where to put files in using runtime.exec(run.exe)?

    I try to use the following program in EJB to call my EXE program in the J2EE server:
    runtime.exec("c:\\j2ee\\public\\exe\\run.exe temp.txt");
    In the execution of mill_turn.exe, it will open several files for read and write.
    So where to put the file temp.txt and other files the run.exe need to read?
    Looks like the J2EE server can not find them?
    Thanks!

    I got it in Java SE1.4.
    File dir=new File("c:\\j2ee\\public_html\\Mill_turn\\exe\\");
    Process proc = rt.exec(cmd,null,dir);Use above codes, I really got the right output from my external program for the first time. But , after that, the output keeps same when I change the filename in the following code:
    cmd="c:\\..\\run.exe temp.prt"
    to
    cmd="c:\\..\\run.exe Abc1.prt" , which must have different output.
    The codes for calling external program are implemented in the SessionBean of J2EE.

  • Hello there, am new here and very stressed, i have an Imac core i3 which is logging off itself after a few seconds of login, it goes back to the login menu where i put the password. I have tried to repair the os but my pioneer rom is not reading the disk.

    Hello there, am new here and very stressed, i have an Imac core i3 which is logging off itself after a few seconds of login, it goes back to the login menu where i put the password. I have tried to repair the os but my pioneer rom is not reading the disk. I press the :c" button on startup but its not picking up the disk in the rom, i have tried to put the disk in an external rom but same answer, am starting to think that my os disk is bad. Please help me.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    *Note: If FileVault is enabled under Mac OS X 10.7 or later, or if a firmware password is set, you can’t boot in safe mode.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • [Solved] Multiple kernels, same /boot

    The Arch Installation media allows a choice between both 32bit and 64bit kernels. Is it possible to configure Arch to do this on a full install?
    Last edited by 12eason (2013-08-12 15:47:02)

    I use UEFI, and for UEFI, the spec indicates the the ESP be set up in a certain way.  It is not required, but I do it just to please the hint of OCD inside me.  So the kernels and initramfs' are kept in a location that is not where pacman puts them.  Instead, the Arch Linux stuff gets put in /boot/EFI/arch (or /boot/efi/EFI/arch if you mount the ESP at /boot/efi).
    So to put my initramfs in the proper location I use the method outlined by Alphaniner above.  But for the kernels, I use a systemd.path that has a "PathExistsGlob=/boot/vmlinuz-*".  This in turn runs a oneshot systemd.service that will move my kernel to where i want it to go and appends ".efi" to the name so that it can be recognized as an efi application by all bootloaders and boot managers.
    You can check out the UEFI Bootloaders wiki page for a more in depth explanation of this.  There is also another option outlined there that uses a incron, as well as one that uses a mkinitcio hook.  Presumably, when the work on pacman hooks is complete, we will have a much nicer way to handle this.

  • My computer screen keeps going blank and then going back to the box where I put my password in to start my comp. Why is this happening?

    My computer (Macbook) was working fine this am. I left it for an hour and then came back and the screen was black (always does that as the screensaver hardly ever works). I moved the mouse to wake it up and everything was normal. I went to adjust the volume and the screen went blank and the main page with the box where I put my password in when I first start my comp appeared. I put my password in and everything was normal again. I opened a window in Safari and before it loaded completely the same thing happened, the screen went blank and went back to the password box. Does anyone know why this is happening? I don't have an external hard drive or any blank flash drives so I can't back anything up right now and am afraid I'm going to lose everything. Thank you

    Sounds like hardware failure, called boot loop. Call Apple and or go on apple.com and make Genius Bar appointment to have your iphone reviewed by a Tech. Provided you iphone shows no physical or liquid damage they will take care of you, or if you have Apple Care Plus
    Genius Bar Rerservation :  http://www.apple.com/retail/geniusbar/

  • 10g UIX Where to put ResourceBundle?

    I'm looking at putting all my Strings in a ResourceBundle for my UIX pages. I've read the documentation for Internationalization, but I think the piece that I'm missing is where to put the properties file. Say I've got a file called 'strings.properties', and my provider looks like this:
    <provider>
         <data name="bundle" >
              <bundle class="strings.properties" />
         </data>
    </provider>Then where in the JDev project do I need to have the file in order for it to get deployed properly and found by the UIX framework at runtime?
    Also, just to be sure I'm not going crazy, I know that the documentation and even the bundle tag say to specify a Class, and I just noticed that the ResourceBundle javadoc also says that the 'baseName' parameter to the static 'getBundle' method should be a 'fully qualified class name', but I've always just given it a filename of a properties file before. So I'm assuming that the 'class' parameter to the bundle tag can be a properties filename -- is this correct?

    Whoops! Of course, the argument to the bundle class attribute should just be 'strings'.
    After some experimentation, I discovered that if I put the properties file at the root of the 'src' directory in my JDev project, then it gets transferred to the 'classes' output directory when I compile. This works for running my project in the Embedded OC4J. I haven't tried deploying it to any other app server yet. Is this the right place?

  • Architecture question...where to put the code

    Newbie here, so please be gentle and explicit (no detail is
    too much to give or insulting to me).
    I'm hoping one of you architecture/design gurus can help me
    with this. I am trying to use good principals of design and not
    have code scattered all over the place and also use OO as much as
    possible. Therefore I would appreciate very much some advice on
    best practices/good design for the following situation.
    On my main timeline I have a frame where I instantiate all my
    objects. These objects refer to movieClips and textFields etc. that
    are on a content frame on that timeline. I have all the
    instantiation code in a function called initialize() which I call
    from the content frame. All this works just fine. One of the
    objects on the content frame is a movieClip which I allow the user
    to go forward and backward in using some navigation controls.
    Again, the object that manages all that is instantiated on the main
    timeline in the initialize() function and works fine too. So here's
    my question. I would like to add some interactive objects on some
    of the frames of the movieClip I allow the user to navigate forward
    and backward in (lets call it NavClip) . For example on frame 1 I
    might have a button, on frame 2 and 3 nothing, on frame 4 maybe a
    clip I allow the user to drag around etc. So I thought I would add
    a layer to NavClip where I will have key frames and put the various
    interactive assets on the appropriate key frames. So now I don't
    know where to put the code that instantiates these objects (i.e.
    the objects that know how to deal with the events and such for each
    of these interactive assets). I tried putting the code on my main
    timeline, but realized that I can't address the interactive assets
    until the NavClip is on the frame that holds the particular asset.
    I'm trying not to sprinkle code all over the place, so what do I
    do? I thought I might be able to address the assets by just
    providing a name for the asset and not a reference to the asset
    itself, and then address the asset that way (i.e.
    NavClip["interactive_mc"] instead of NavClip.interactive_mc), but
    then I thought that's not good since I think there is no type
    checking when you use the NavClip["interactive_mc"] form.
    I hope I'm not being too dim a bulb on this and have missed
    something really obvious. Thanks in advance to anyone who can help
    me use a best practice.

    1. First of all, the code should be:
    var myDraggable:Draggable=new Draggable(myClip_mc);
    myDraggable.initDrag();
    Where initDrag() is defined in the Draggable class. When you
    start coding functions on the timeline... that's asking for
    problems.
    >>Do I wind up with another object each time this
    function is called
    Well, no, but. That would totally depend on the code in the
    (Draggable) class. Let's say you would have a private static var
    counter (private static, so a class property instead of an instance
    property) and you would increment that counter using a
    setInterval(). The second time you enter the frame and create a new
    Draggable object... the counter starts at the last value of the
    'old' object. So, you don't get another object with your function
    literal but you still end up with a faulty program. And the same
    goes for listener objects that are not removed, tweens that are
    running and so on.
    The destroy() method in a custom class (=object, I can't
    stress that enough...) needs to do the cleanup, removing anything
    you don't need anymore.
    2. if myDraggable != undefined
    You shouldn't be using that, period. If you don't need the
    asset anymore, delete it using the destroy() method. Again, if you
    want to make sure only one instance of a custom object is alive,
    use the Singleton design pattern. To elaborate on inheritance:
    define the Draggable class (class Draggable extends MovieClip) and
    connect it to the myClip_mc using the linkage identifier in the
    library). In the Draggable class you can define a function unOnLoad
    (an event fired when myClip_mc is removed using
    myClip_mc.removeMovieClip()...) and do the cleanup there.
    3. A destroy() method performs a cleanup of any assets we
    don't need anymore to make sure we don't end up with all kinds of
    stuff hanging around in the memory. When you extend the MovieClip
    Class you can (additionally) use the onUnLoad event. And with the
    code you posted, no it wouldn't delete the myClip_mc unless you
    program it to do so.

  • Where to put js that should show on every page, like Appex have?

    In every page header there are entry like:
    <+html lang="hr" xmlns:htmldb="http://htmldb.oracle.com">
    <+head>
    <+script src="/i/javascript/htmldb_html_elements.js" type="text/javascript"></script>
    <+script src="/i/javascript/htmldb_get.js" type="text/javascript"></script>
    <+script language="JavaScript" type="text/javascript">
    <+!--
    /*Global JS Variables*/
    +var htmldb_Img_Dir = "/i/";1) I would like to know where to put some of my js to be loaded automatically on every page regardless current theme (like in above example).
    2) If I want to some js be shown on template based filter.
    What is bothering me is that i would like to put some js on every page where for instance report template is loaded...what is the best way for that?
    THX!

    Hello,
    If you only want it to load on pages with a certain template on way to do it just put the link into the footer of the template itself.
    So the end of you report template would look like
    ....&lt;/table>
    &lt;script src="/i/mystuff/my.js" type="text/javascript">&lt;/script>
    It doesn't make for the best html code but the effect is what you want without having to do any conditions or run a separate page template or do to much on a bunch of different pages.
    Carl

  • Where to put Concurrent Manager?

    Hello,
    We are currently running our production EBS (11.5.10.2) as a 2-Tier system on 32 bit Red Hat Linux. We have Web, Forms, Discoverer running on one server and Concurrent Manager, Admin and Database running on another. We will be upgrading the database server to RAC and would like to change to 64 bit.
    Also we will be running multiple app servers using shared appl top. Since we cannot leave the Concurrent Manager on the database server once it is 64 bit how to best decide where to put the Concurrent Manager?
    I know a couple of options are:
    1) Run the Concurrent Manager on a standalone server (no redundancy).
    2) Run the Concurrent Manager on 2 standalone servers using Parallel Concurrent Processing (provide redundancy but increase costs/maintenance).
    3) Run the Concurrent Manager on the same servers as the Web, Forms, Discoverer using shared appl top.
    I'm leaning towards option 3 but would like to hear others opinions. Could we still use PCP in this scenario? Any reasons not to do # 3?
    Thanks,
    Alfredo

    How many servers will you be running?I believe we have 4 total available for the Application Tier. They are fairly robust servers (HP DL-580 (4 CPU each) with 24 Gig of RAM).
    I have not seen PCP with Shared APPL_TOP. If you are running multiple Web, Forms, Discoverer servers, it is a good option to run them with their own APPL_TOP and run PCP with hardware based load balancing. Can we just skip PCP and run the 4 servers with Shared APPL_TOP but include everything on the Shared APPL_TOP (Web, Forms, Discoverer, Concurrent Manager)?
    I'm trying to do these upgrades in phases and I'm thinking maybe we can get 2 additional servers later and implement PCP then (keeping the 4 Apps servers for Web, Forms, Discoverer).
    Thanks,
    Alfredo

  • I wanted to know explain my problem down package cc2014 where I put the serial number of the problem that I have is that when you open the program asks me start of session in which he put it and go but back inside and it drives me to request the start of

    I wanted to know explain my problem down package cc2014 where I put the serial number of the problem that I have is that when you open the program asks me start of session in which he put it and go but back inside and it drives me to request the start of session and I take 3 weeks or more with this problem if they can support me solve it was the number of seire wearing this being installed at a private university

    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Some general information for a Cloud subscription
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page

  • CS 6 Image Windows Don't Stay Where I Put Them

    I installed CS 6 yesterday.  My system runs 64 bit Win 7.  In Preferences > Interface, as I did in CS 5, I unchecked both Open Documents as Tabs and Enable Floating Document Window.  However, unlike CS 5, in CS 6 images 'insist' on positioning themselves in the upper left corner of CS 6 and will cover both the options bar and the tool bar.  For example, this will happen after opening an image if I try to move it or if I enlarge the image window (CTRL-0).  If I open two images and try to move one so I can see both at the same time, the one I try to move will not stay where I put it but instead will reposition itself to the upper left, and cover the options bar and menu bar.
    As you might image, this makes working in CS 6 difficult and inconvenient.  I assume this is a bug, and wonder if there are any workarounds or other solutions.  To this point, I have not yet uninstalled and re-installed CS 6.  Any suggestions would be appreciated.
    Best regards,
    David

    Noel Carboni wrote:
    Can we assume you hate the Auto-Hide feature even worse? 
    Hi,
    The answer to your question is 'probably'.  I like things to stay put, ideally where I want them.  So far my feeling is that having the task bar on the bottom is the lesser of the two 'evils'.  But your note reminds me to give auto-hide another try.  Thanks.
    Best,
    David

  • Where to put ringtones in the N9?

    I dont really know where to put this thread. So mods feel free to move it.
    I didnt really care for any of the stock ring tones on the N9, and I had a ring tone on my N97 that was the sound played on Star Trek TNG when the shuttle bay doors would start to open. The problem here is the N9 only lets you shop for new tones, or pull them out of your music.
    I had put up with this on my N97, occasionally hearing this tone while listening to music because I had searched high and low how to put this tone and not have it imported into the music library.
    Is there anyway to put this Mp3 file on my N9 so that it will see it in the Ringtones list, but not end up in the Music player?
    Thanks a ton
    Solved!
    Go to Solution.

    go to
    settings/security/developer mode
    and enable it.
    it will have you download and install some files. tap ok.
    you should be able to just open the filebox (free download from ovi store) and then go to:
    /home/user/MyDocs
    and then tap and hold, select copy on the all the ringtones you want to copy and then tap the up-arrow (bottom left corner) and you will be in /home/user/
    scroll down to .ring-tones
    tap it to open the folder
    then tap the clipboard and select the ringtones to paste there.
    it should be done. you should be able to see it when you go to select the sounds.
    i have not used these to do individual ringtones for contacts, but have customized the sounds in:
    settings/sounds and vigbration
    for all my rintone, maeil alert tone, message alert tone, calendar alarm tone.
    i have been using the same nokia sounds for these since 2004
    you could also do the following with terminal
    open terminal
    devel-su (enter)
    rootme (enter)
    cp -R /home/user/MyDocs/(file name.mp3) /home/user/.ring-tones/
    you can do that for each different ringtone, just changing the file name.
    to make it easier with terminal, if after you enter the first one, just tap the top right corner for the menu, and select toolbar, then arrows.
    now just tap the up-arrow and then use the left/right arrows to change the file name and then tap enter again. this should save a bit of time once you are good at it.

  • [SOLVED] systemd-fsck prolongs boot time considerably

    Hi folks, I've searched but come up blank on this one...
    I've just migrated fully to systemd and all's working well apart from my boot hanging for around 16 seconds on fsck. Disabling the checks via the final column of fstab reduces my boot to under 9 seconds, which is roughly what it was with initscripts. Boot drive's an SSD, all other partitions on 2 SATA HDDs.
    Here are the relevant parts of fstab
    # /dev/sda3 - Backup
    # ========= ------
    UUID=7e23c7f4-acf6-477c-9705-15ae8870181e /media/Backup ext4 defaults 0 2
    # /dev/sdb2 - ROOT (+/home)
    # ========= ------------
    UUID=ee99e089-a642-41c8-b1f4-5dc80307d438 / ext4 defaults,noatime,discard 0 1
    # /dev/sdc1 - Data
    # ========= ----
    UUID=66c7a8dd-8d92-4353-a4eb-1da425449322 /media/Data ext4 defaults 0 2
    # /dev/sdc2 - Scratch
    # ========= -------
    UUID=a8ca4753-ccca-4360-b702-8c12004bf8f8 /media/Scratch ext4 defaults,noatime 0 2
    # /dev/sdc4 - bootISOs
    # ========= --------
    UUID=eea21a23-b3fa-479d-8a62-2502f4f9edfc /media/bootISOs ext4 defaults,noatime 0 2
    I do have /var on the "Data" partition and a few other relocations...
    /media/Data/var /var none bind 0 0
    /media/Data/logs /home/paul/.logs none bind 0 0
    tmpfs /home/paul/.thumbnails tmpfs nodev,nosuid,noatime 0 0
    tmpfs /home/paul/.Skype/Logs tmpfs nodev,nosuid,noatime 0 0
    tmpfs /media/Data/wine/drive_c/windows/temp tmpfs nodev,nosuid,noatime 0 0
    Without fsck
    $ systemd-analyze
    Startup finished in 1280ms (kernel) + 2220ms (initramfs) + 5112ms (userspace) = 8614ms
    With fsck (typical)
    $ systemd-analyze
    Startup finished in 1276ms (kernel) + 3224ms (initramfs) + 20327ms (userspace) = 24829ms
    Any ideas as to the slowdown or is this to be expected with this many partitions?
    Thanks.
    Last edited by fabertawe (2012-09-06 17:48:57)

    WorMzy wrote:You can add "noauto,x-systemd.automount" to the options of non-essential partitions. That may speed up your boot time.
    Sorry, I should have mentioned I already tried this with the "Data" partition and just got a permanent hang in the boot sequence.
    Edit: I've had 2 boots where it's not had the delay but I've no idea why, nothing was changed.
    Edit2: Seems I was too quick to dismiss "noauto,x-systemd.automount"... I've applied it to all partitions except "Data" (and root, obviously) and now I'm consistently getting boot times under 9 seconds. Marking this thread as solved. Thanks to all who contributed
    Last edited by fabertawe (2012-09-06 17:45:48)

  • Where to put my Airdisk/Drobo/Server/Whatever

    I am looking for advice in optimizing what I want to do with my external storage to get the most out of... uh, well, out of life. Or something.
    In the basement I have a Mac Mini connected to my TV that acts as my Tivo. It uses EyeTV with an external drive connected via Firewire (400). Works great.
    Two floors up I have an iMac that acts as my central computer. It is connected, via ethernet cable, to an Airport Extreme base station. The base station is connected to my DSL modem via ethernet cable and to another external drive via USB 2.0. Works pretty well...
    So that all laptops and the Mac Mini can access the media, my iTunes library is on the upstairs external drive (the one connected to the Airport). Generally no issue there, but lately I've noticed that movies and shows played from that drive might get jumpy when being watched on TV. I guess that may be because the media goes from the drive through the Airport, through two floors, then into the Mac Mini.
    Or maybe it's because the drive was getting ready to fail (it just did).
    So now I'm going to get a Drobo so that I never go through replacing a failed drive (and trying to recover it!) again. This is drive #3 for me in 5 years. (No more non-redundancy!) But the question is where to put it.
    Should I move the Airport and modem to the basement and connect the Drobo to the Airport? Should I just put it upstairs and chalk the slowness up to a failing drive? Should I connect the Drobo directly to the Mac Mini and share the drive (and will that lead to a new can of worms with the Airport)? And what cable connections should I use? I just learned that the USB bus pretty much handles everything through one place no matter how many ports you have, so I'm guessing I want to limit that...? But I only have 1 Firewire connection on the Mini...
    What do you guys think? And if you think there's a better forum to post this message in, let me know.
    Thanks in advance,
    Rick

    Hey CPC Guy,
    If at all possible, I'd find a way to set up your modem, router and its connected USB external drives somewhere centrally on the center floor. Then just connect wirelessly to it with the iMac.
    One cheap storage solution that I've used to this point is to buy a 7-port USB hub, connect it to the Airport, and then add multiple external USB drives. You can also run a central USB printer from there as well as a ethernet connected network printer if you wanted. I've run something like this for a couple of years. All on a one level home but centralized in it nonetheless. Works great. Wireless speeds are great.
    Some of these drives can serve as backup drives for the others, including your computers. I've used SuperDuper to backup over the network. A great source for dual drive enclosures is OWC (www.MacSales.com).
    Another solution that I'd recommend over the drobo is an HP Media Smart Windows Home Server. Similar to the drobo, but I think it is a much better, more flexible, cost effective solution. In fact, I'm installing one as I write this. Bought it for $500 with free shipping from Newegg.com. It comes with a 750GB SATA and has three more upgradeable bays. I got the EX485. There is a EX487 and a new smaller one that would work as well. You might compare this with what the drobo has to offer.
    There are supposed to have been some conflict with installing via a connected Airport Extreme, but I have not had that problem. The one caveat is that you have to initialize with a windows PC first. I run XP and Vista via VM Fusion so that isn't a problem. Then you can use it fine with a mac.
    Also, a friend who does data recovery for a living and is a die hard mac guy swears by Seagate (1) Samsung (2) and Hitachi (3). The highest rate of failures he has seen for many years is WD. I buy these three and I have been fortunate to not have one fail yet. Knock on wood. YMMV.
    If you're looking to expand specifically around the mini in the basement, you might try the USB hub approach mentioned above. However, I think if you can centralize all your media on the middle level then streaming distances are much shorter and backups are much easier and faster over cabled connections. I just enclose it all in a small footprint media cabinet.
    Ed

Maybe you are looking for

  • Filtering a Recordset with session variable

    Hi I am trying to filter a recordset based on a session variable. The session variable is passed from the login page via a username which is their email address. This has been successful. However when I want to filter the users table - tbl_users to s

  • Cannot float item next to another floated item...help needed...

    Hi everyone, I'm using DW CS4 and am somewhat in a snag. I am trying to line up an image, text and another image side by side.  I was successfully able to float the text to the right  of the image (by using float: left) and now I am trying to float a

  • Having issues calling EJB3 from BPEL failing xmlparserv2 error.

    Oracle/BPEL 10.1.3.4 Description : I am having errors in orabpel during marshalling of EJB call using WSIF. missing class JXDocumentBuilderFactory see ERROR 1 for details. I generated proxy classes using schemac against the document type I want to pa

  • MIGRATION DESIGNER REPOSITORY 6.0 to 6i

    I've tried to migrate repository 6.0 to 6i but in process i recive the error message: ORA-03232 unable to allocate extent to tablespace ... ORA-02063 error from link ... RME-02124 failed to excute SQL statement CREATE TABLE UPG_RM_TEXT_LINES ... I ha

  • HELP!  FLV doesnt appear in swf output

    I created a very nice frame for a flv file where a curtain opens allowing a flv movie to play in between the opened curtain. It was created in Flash CS4. When I test the file it looks great. But when I publish the swf file or export it as a movie, th