Looking to shave a few more secons from my boot time.

im trying to get as fast a boot from my system as possible. are there  any tweaks i can make to the following files to get more speed.
here is my bootchart
here is my rc.multi
#!/bin/bash
# /etc/rc.multi
. /etc/rc.conf
. /etc/rc.d/functions
# Load sysctl variables if sysctl.conf is present
[ -r /etc/sysctl.conf ] && /sbin/sysctl -q -p &>/dev/null
# Start daemons
#for daemon in "${DAEMONS[@]}"; do
# if [ "$daemon" = "${daemon#!}" ]; then
# if [ "$daemon" = "${daemon#@}" ]; then
# start_daemon $daemon
# else
# start_daemon_bkgd ${daemon:1}
# fi
# fi
#done
dhcpcd eth0 &>/dev/null 2>&1
alsactl restore &
echo 2 > /sys/module/hid_apple/parameters/fnmode &
(sleep 20 && /etc/rc.d/sensors start &>/dev/null 2>&1) &
(sleep 20 && /etc/rc.d/mpd start) &
(sleep 120 && /etc/rc.d/portmap start &>/dev/null 2>&1) &
(sleep 120 && /etc/rc.d/nfslock start &>/dev/null 2>&1) &
(sleep 200 && mount 192.168.1.99:/media/torrents /media/downloads/ ) &
#if [ -x /etc/rc.local ]; then
# /etc/rc.local
#fi
# vim: set ts=2 noet:
and here is my rc.sysinit
#!/bin/bash
# /etc/rc.sysinit
. /etc/rc.conf
. /etc/rc.d/functions
#source_functions
# mount /proc, /sys and our RAM /dev
/bin/mount -n -t ramfs none /dev
/bin/mount -n -t proc none /proc
/bin/mount -n -t sysfs none /sys
# Create our default nodes that minilogd may need
/bin/mknod /dev/null c 1 3
/bin/mknod /dev/zero c 1 5
/bin/mknod /dev/console c 5 1
# More initial /dev setup that udev doesn't do
#/bin/ln -snf /proc/self/fd /dev/fd
#/bin/ln -snf /proc/self/fd/0 /dev/stdin
#/bin/ln -snf /proc/self/fd/1 /dev/stdout
#/bin/ln -snf /proc/self/fd/2 /dev/stderr
/bin/ln -snf /proc/kcore /dev/core
/bin/mkdir /dev/pts
/bin/mkdir /dev/shm
echo > /proc/sys/kernel/hotplug
# Starting udev daemon
if [ -x /sbin/udevadm -a -d /sys/block ]; then
# We have udev and /sys appears to be mounted, use UDev
#status "Starting UDev Daemon" /etc/start_udev init
stat_busy "Starting UDev Daemon"
/sbin/udevd --daemon
stat_done
else
# Static /dev, our last resort
status "Using static /dev filesystem" true
fi
# run udev uevents
if /bin/pidof -o %PPID /sbin/udevd >/dev/null; then
#status "Loading UDev uevents" /etc/start_udev uevents
stat_busy "Loading UDev uevents"
udevstart="$(/bin/date +%s%0N)"
/sbin/udevadm trigger
/sbin/udevadm settle
stat_done
udevend="$(/bin/date +%s%0N)"
printhl " UDev uevent processing time: $((($udevend-$udevstart)/1000000))ms"
fi
##loading modules
stat_busy "Loading Modules"
/sbin/modprobe ohci_hcd >/dev/null 2>&1
/sbin/modprobe ehci-hcd >/dev/null 2>&1
/sbin/modprobe nvidia >/dev/null 2>&1
/sbin/modprobe psmouse >/dev/null 2>&1
/sbin/modprobe r8169 >/dev/null 2>&1
/sbin/modprobe slhc >/dev/null 2>&1
#/sbin/modprobe pcspkr >/dev/null 2>&1
#/sbin/modprobe snd_pcsp >/dev/null 2>&1
stat_done
##loading acpi modules
stat_busy "Loading standard ACPI modules"
/sbin/modprobe thermal >/dev/null 2>&1
/sbin/modprobe processor >/dev/null 2>&1
/sbin/modprobe button >/dev/null 2>&1
/sbin/modprobe battery >/dev/null 2>&1
/sbin/modprobe ac >/dev/null 2>&1
stat_done
# bring up the loopback interface
if [ -d /sys/class/net/lo ]; then
stat_busy "Bringing up loopback interface"
/sbin/ifconfig lo 127.0.0.1 up
if [ $? -ne 0 ]; then
stat_fail
else
stat_done
fi
fi
FORCEFSCK=
[ -f /forcefsck ] && FORCEFSCK="-- -f"
NETFS="nonfs,nonfs4,nosmbfs,nocifs,nocodafs,noncpfs,nosysfs,noshfs,nofuse,nofuseblk"
if [ -x /sbin/fsck ]; then
stat_busy "Checking Filesystems"
if /bin/grep -qw quiet /proc/cmdline; then
/sbin/fsck -A -T -C -a -t $NETFS $FORCEFSCK >/dev/null 2>&1
else
/sbin/fsck -A -T -C -a -t $NETFS $FORCEFSCK 2>/dev/null
fi
fsckret=$?
if [ ${fsckret} -gt 1 ]; then
stat_fail
if [ $((${fsckret}&2)) -eq 2 ]; then
echo
echo "********************** REBOOT REQUIRED *********************"
echo "* *"
echo "* The system will be rebooted automatically in 5 seconds. *"
echo "* *"
echo "************************************************************"
echo
/bin/sleep 5
else
echo
echo "***************** FILESYSTEM CHECK FAILED ****************"
echo "* *"
echo "* Please repair manually and reboot. Note that the root *"
echo "* file system is currently mounted read-only. To remount *"
echo "* it read-write type: mount -n -o remount,rw / *"
echo "* When you exit the maintenance shell the system will *"
echo "* reboot automatically. *"
echo "* *"
echo "************************************************************"
echo
/sbin/sulogin -p
fi
echo "Automatic reboot in progress..."
/bin/umount -a
/bin/mount -n -o remount,ro /
/sbin/reboot -f
exit 0
fi
stat_done
fi
stat_busy "Mounting Local Filesystems"
/bin/mount -n -o remount,rw /
/bin/rm -f /etc/mtab*
# make sure / gets written to /etc/mtab
/bin/mount -o remount,rw /
# Write /proc, /sys and /dev to /etc/mtab
if [ -e /proc/mounts ]; then
/bin/grep -e "/proc " -e "/sys " -e "/dev " /proc/mounts >> /etc/mtab
fi
# now mount all the local filesystems
/bin/mount -a -t $NETFS
stat_done
if [ -f /var/run/random-seed ]; then
stat_busy "Initializing Random Seed"
/bin/cat /var/run/random-seed >/dev/urandom
stat_done
fi
stat_busy "Removing Leftover Files"
/bin/rm -f /etc/nologin &>/dev/null
/bin/rm -f /etc/shutdownpid &>/dev/null
/bin/rm -f /var/lock/* &>/dev/null
/bin/rm -rf /tmp/* /tmp/.* &>/dev/null
/bin/rm -f /forcefsck &>/dev/null
(cd /var/run && /usr/bin/find . ! -type d -exec /bin/rm -f -- {} \; )
: > /var/run/utmp
stat_done
if [ "$HOSTNAME" != "" ]; then
status "Setting Hostname: $HOSTNAME" /bin/hostname $HOSTNAME
fi
status "Updating Module Dependencies" /sbin/depmod -A
# Save our dmesg output from this boot
if [ -f /var/log/dmesg.log ]; then
/bin/rm /var/log/dmesg.log
fi
/bin/dmesg > /var/log/dmesg.log
# End of file
# vim: set ts=2 noet:
and here is my inittab
# /etc/inittab
# Runlevels:
# 0 Halt
# 1(S) Single-user
# 2 Not used
# 3 Multi-user
# 4 Not used
# 5 X11
# 6 Reboot
## Only one of the following two lines can be uncommented!
# Boot to console
id:3:initdefault:
# Boot to X11
#id:5:initdefault:
rc::sysinit:/etc/rc.sysinit
rs:S1:once:/etc/rc.single
rm:2345:once:/etc/rc.multi
rh:06:once:/etc/rc.shutdown
su:S:once:/sbin/sulogin -p
# -8 options fixes umlauts problem on login
#c1:2345:respawn:/sbin/agetty -8 38400 vc/1 linux
c1:2345:respawn:/bin/login -f mark vc/1 </dev/vc/1 >/dev/vc/1 2>&1
c2:2345:respawn:/sbin/agetty -8 38400 vc/2 linux
c3:2345:respawn:/sbin/agetty -8 38400 vc/3 linux
#c4:2345:respawn:/sbin/agetty -8 38400 vc/4 linux
#c5:2345:respawn:/sbin/agetty -8 38400 vc/5 linux
#c6:2345:respawn:/sbin/agetty -8 38400 vc/6 linux
ca::ctrlaltdel:/sbin/shutdown -t3 -r now
# Example lines for starting a login manager
x:5:respawn:/usr/bin/xdm -nodaemon
#x:5:respawn:/usr/sbin/gdm -nodaemon
#x:5:respawn:/usr/bin/kdm -nodaemon
#x:5:respawn:/usr/bin/slim >& /dev/null
# End of file
Last edited by markp1989 (2009-03-21 21:02:07)

have a look at this wiki page http://wiki.archlinux.org/index.php/Twe … _boot_time
and Duologics forum post that led to the page's creation http://bbs.archlinux.org/viewtopic.php?id=62518.

Similar Messages

  • How can i retrieve a few important files from an old time capsule ?

    Hi  can anyone give me a step by step guide as to how i retrieve just a few files from an old time capsule ?
    without a router  ?
    I've plugged an ethernet cable into the wan port & my mac & it shows up as a sparspsebundle data file
    but i desperetly need to grab these certain files
    please can anyone help?
    can i use the usb port on the back of the time capsule
    there must be a way  HELP PLEASE  many thanks

    Don't panic we are working on it..
    I am just avoiding Yosemite like the plague.. (plague on you Yosemite!!) .. as its networking is so bad it causes chaos on my network.. to all other devices.. even though only one device actually runs Yoyos!!
    I am not sure how hard it is for you to go back to Mountain Lion.. or if you have a computer running ML on the network.. if so definitely use it.
    What OS was last used by the MBP when you stopped using it or is it fully up to date. Is the computer in the network now? If so it is much easier to copy and paste the files from a live computer.
    Did you encrypt the backup.. that would really mess things up or have an encrypted disk??
    Have you used the normal TM tool in Yosemite to try and recover your files?? Or perhaps migrated the files.. this can work fine.. migration often being a better way of doing things.. although there are a few rules about using different user names.. etc.
    There is another proviso here I must add.. Yosemite cannot see the backup quickly.. what I mean is that your backup is >500GB. Even by ethernet Yosemite version Time Machine can take more than 24hours just to index that.. maybe longer and by wireless a lot longer.. 3-5 times.. I do not know why spotlight is so slow in Yosemite.. but trust me.. it is pathetic. The yoyo got its string in a knot and seems to need to untangle it for every single file on the backup.
    Be very patient if you open TM backup in Yosemite.. and definitely do this by ethernet not wireless.. otherwise you might die of old age beforehand.

  • Is it just me, or does mountain lion have more beach balls, longer boot time, and other unexplained weirdness that clears up with a reboot?

    I'm having mixed feelings about Mountain Lion.  On the one hand, I like some of the features that more closely integrate with my iWhatever.  I appreciate having the notes, reminders, imessage, etc that makes it so I can switch from a mobile device to desktop device.
    But on the other hand, I see far more beach balls, such as when simply starting Safari.  Applications take a long time to initialize as they try to, I'm guessing, sync with iCloud.   I get more application hangs.  You know, the ones that leave you dead in the water until you reboot, but then mysteriously vanish for weeks.  and boot time is frustrating.  I spend far more time waiting for my desktop and applications to initialize and stabilize after a login.
    Granted, much of my frustration here is not based in the technical.  It's based on "user experience" where I don't normally pay attention when it's working well. It just feels to me that the behaviour of ML is much more similar to windows of the past, where a reboot once or twice a day cured most ills.
    Is it just me or does anyone else have similar feelings of disappointment.
    thanks!

    Hmmmmm... OK y'all have got me thinking.
    I normally run disk check and repair, this time it found a number of files and links related to printers and image devices, stuff that isn't likely part of the issue.  There were three links, however, related to core graphics.  the permissionss were  rwxr-xr-x when they should be rwxrwxrwx.  I don't think those are involved, but alas they are fixed.
    It seems like much of my issues seems to revolve around the mounting/access of resources outside my laptop, be it icloud, nfs server, samba server, etc. RIght at this moment, Finder is hung hard.  I tried to force restart it, and in the Force quit menu I now see two Finders.  One will kill and restart immediately, one does nothing.   And I can't open a finder window period. 
    In fact, just before writing this, I was attempting to edit a text document in StarOffice, and StarOffice went to lunch trying to access my samba share.  Now before y'all go nuts about any samba server side issues, let me say that while my MBP is having issues accessing my samba shares, none of my other computing devices are.  W7 laptop pulls up samba file system as fast as if not faster than it's own local file systems.  My other MBP (older core2 duo, but still on mountain lion) does not seem to have any issues.  I don't believe it a server side issue.
    So I asked myself, what's different on my 2.66 gb i7 MBP??  It just occurred to me that I have one piece of software that's pretty deeply rooted in file system management....   Tuxera NFS.   I see that it has not been updated since updating to Mountain Lion, so I am going to check that out, and will post results.

  • More weirdness from the CS3 time warp

    I've applied the Time Warp effect at 50% to several adjacent clips in a timeline which works fine in all of them save two. In those clips the motion is jerky because if you scroll slowly ahead it plays a frame, then goes backward a bit, then what appears to be a full frame ahead, then back a bit. This repeats for the duration of the clip.
    I tried copying the effect from a good sequence and applying it to the faulty one, thinking I may have an errant parameter in the bad one somewhere. No soap. It's still wrong. So I import the footage that has the problem into a new project and apply the time warp effect. No problem.
    Back to the original project. I check the field dominance... not modified, and I check "Speed/Duration" which is set to 100% as it should be. Completely befuddled, I delete the Time Warp from the two offending clips, change the Speed to 50% and re-trim. It's all good.
    What really confuses me is why this happened. Has anyone else seen this? If so, is there a way to fix it, or is it just another Time Warp bug? (I've already found one.)
    System is:
    3.0 GHz Dual Core Athlon
    3 GB RAM
    Windows Vista
    HW and SW up to date
    I don't mean for this to sound like a rant on the TW, but I'm trying to find out if others have seen this or if it's only my own ineptitude. If I were a betting man I'd put money on the latter.
    Thanks.

    Yeah I've seen it and what I do is get out of the program and then re-open it and it seems to correct itself. It has been an infrequent problem.

  • A few more approvals and now off to the garden I go.

    My scores have gone up a little and I was looking into adding a few more accounts to round out my profile but didn't really want the HP so I figured I would try the shopping cart trick.  I only app'd for stores I would shop at! HSN $1000 - So excited for a SP!!J-Crew $250- I heard this can grow fast. When do I hit the love button?Venus $250

    Congrats! For me, J Crew has been at $250 since my start date in Jan of this year. 

  • How to add few more columns in UWL screen

    Hi all
    Currently by default we are able to see the columns in UWL header as "Subject", "From", "Sent Date" , "Due Date" , "Status" .
    now i want to add few more columns  apart from standard columns.
    can you please let me know how to add our own columns in UWL header ??  if it is XML changes then pls let me know which xml file exactly we need to change??
    Thanks
    Sunil

    Hi Harini
    actually Standard XML file is not necessary for changing the column names in the UWL .
    we can use otherway as follows.
    go to system admin->UWL administration->click to configure item types and custom views using a wizard then it will take you to another screen -> select the radio button "Customize the look of the UWL main page" click on next then you can select what ever task item you want to change and click on the button respective button at the right end then it will take you to new screen there i added new columns  what ever required and saved also but the same one is not reflecting in UWL....
    can you please check the same in ur machine and let me know if any other things are required to be done and why this not been done our requirement??
    Regards
    Sunil

  • [svn:bz-4.x] 16147: Fix a few more regression tests on the 4. x branch that were failing when using Spring integration.

    Revision: 16147
    Revision: 16147
    Author:   [email protected]
    Date:     2010-05-17 06:18:38 -0700 (Mon, 17 May 2010)
    Log Message:
    Fix a few more regression tests on the 4.x branch that were failing when using Spring integration.
    Modified Paths:
        blazeds/branches/4.x/qa/apps/qa-regress/WEB-INF/src/runtimeconfig/remoteobjects/ROMessage Destination.java
        blazeds/branches/4.x/qa/apps/qa-regress/WEB-INF/src/runtimeconfig/remoteobjects/RuntimeCo nfigurator.java
        blazeds/branches/4.x/qa/resources/webtier/flex_sdk_4/flex-config.xml

    Well heres my story. I tried kde4 from extra the last 3 weeks and I like it. I have used xfce for the past 3 years, previous to that gnome. Tried kde but never really liked it. Now I am only using workspace, base, mutimedia and graphics.
    Here is what I like.
    1- Dolphin, awesome I have used thunar a while and it is great but I love splitview, and fish for ssh (which has been around a while I know), and the ability to mount other partitions on my hdd with a click no fstab entry or nothin'.
    2-Pretty, I've used xfce with built in compositor an love the snappiness. But I like desktop grid with kde4 and flipswitch. Compiz-fusion is cool but I prefer not to use I'll take what the DE gives. Plasmoid are cool too.
    3- Gwenview is nice too. Use to use gqview, but thumnails are nice.
    Looking forward to or lacking
    1- Keyboard shortcuts, Yes xbindkeys is there but if I have a DE I want it to do it. They just don't work now.
    2- kde4 has windows specific settings, but I can't set the opacity for particular windows , doesn't work.
    3- Ram of course is much higher in kde4, but maybe I'm getting old I just don't care as much.

  • Safari and firefox stop working after a few minutes of browsing, regardless of what site I'm on. I have to restart my computer to get internet access again but it only works for a few more minutes, then I have to restart again. Please help!

    Safari and firefox stop working after a few minutes of browsing, regardless of what site I'm on. I have to restart my computer to get internet access again but it only works for a few more minutes, then I have to restart again. I don't get a spinning ball, it just stops working at whatever page it's on. I can close the program just fine but when I re-open it, either safari or firefox, it freezes trying to load the hompage. This started a few days ago after trying to stream a movie on my computer. I'm on a Mac Air OS X Version 10.6.8 and have downloaded all updates. When I go into finder, it says I have over 80 gigs available. Is there some other memory cache that I need to check? Thanks so much for your help.

    ejwoodall wrote:
    It's not a router problem as I explained in my post. If it was a router problem then I wouldn't have the problem everywhere I go. It is an issue with the software.
    Then I guess the millions of people running 10.5.7 with no issues are just hallucinating that their machines are working fine?
    I'm not trying to belittle your issues; you're certainly having them and I know first hand how annoying an intermittent AirPort issue can be. (In fact, mine was due to an AirPort driver bug that no one else seemed to suffer from.)
    The single best diagnostic you could do is take your system running 10.5.7 to an Apple Store, and try using their in-store network.
    If your machine performs flawlessly, it may be a router issue.
    If your machine has connectivity issues there, it may be a hardware problem with your machine.
    There have been numerous people in multiple threads over the years who swore that an update was buggy because things used to work, but returned later to sheepishly admit that they took their machine in, a problem was found and fixed, and now their Mac works flawlessly with the newer software.
    But simply reinstalling 10.5.5 in no way means the explanation of how firmware bugs may be at play here is incorrect.
    In the context of that explanation, all you've done is possibly reinstall software that asks to add "2 + 3."

  • The session variable, NQ_SESSION.OU_ORG, has no value definition.Please have your System Administrator look at the log for more details on this error. (HY000)

    Hi All,
    I have created a user 'Bitest' and group 'Bi_Test_Group'. Assigned the user to the group and the group to BI consumer role.
    I gave access to only procurement and spend catalog folder reports and Dashboards.
    When I login to BI Presentation Services with above created user and open any procurement and spent catalog dashboard i am getting below error in every report.
    Its BI Apps 7.9.6.3 installation.I gave read  access to group to all procurement and spent subject area.
    Error Codes: OAMP2OPY:OPR4ONWY:U9IM8TAC:OI2DL65P:OI2DL65P 
    Odbc driver returned an error (SQLExecDirectW). 
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 23006] The session variable, NQ_SESSION.OU_ORG, has no value definition.Please have your System Administrator look at the log for more details on this error. (HY000) 
    SQL Issued: {call NQSGetQueryColumnInfo('SELECT Fact."PO Amount" FROM "Procurement and Spend - Purchase Orders"')}
    SQL Issued: SELECT Fact."PO Amount" FROM "Procurement and Spend - Purchase Orders"
    Please help me in resolving this issue and getting results on Dashboard.
    Thanks in advance
    Thanks,
    Sandeep

    Check your query or connection pool settings etc

  • HT1414 IPHONE 3GS Problems. Updated to IOS6 then says There are just a few more steps to take. Press Continue. Once pressed it says connect to itunes. So plugged the cable in and it does nothing and stays on that screen. How can he fix it?

    Hi, My friend has just updated there 3GS to IOS6 and once it's done, 2 screens appear. first one says, Update complete, there are just a few more steps to take. Press continue and another screen comes up with the itunes symbol and the cable and says connect to itunes. Once plugged in, on itunes it reconises the phone and has the loading symbol up, but it doesn't loads anything and can't press anything. Anyone know why and how to resolve this?

    The terms of service of the Apple Support Communities prevent us from helping anyone with a jailbroken phone.
    You're on your own.  Good luck.

  • I started making a movie and all was well. I added a few more pictures and some sound and played it back. It plays so far and then the pictures break up into colors and then the screen turns green.  The sound continues.

    I am making a movie from still pictures. I used no theme and then started adding pictues. When I played it back, all was well. Then I added a few more pictures and some sound. When I play iot back it plays just so far and then the sound continues, but the screen turns green or the pictures break up into colors.

    Sorry, everyone.  I think I may have figured out what it was all down to...........
    I had left the IDE ribbon cable plugged into my third HDD, with the power cable unplugged.  I did this so as not to endanger my years of work on the third drive, until Windows had setup.  I have in the past, accidentally chosen the wrong partiton to format, so this seemed a good way to avoid it from then on.
    This was not a problem on my old system, but it seems this system doesn't like it.
    I must have left the drive completely unplugged, the times Windows did setup.  Amazing really.  I couldn't see the woods for the trees.
    Anyway, I'm sorry to have bothered everyone with my problem.
    Cheers
    Marcus
    edit :   Sorry Syar2003, I didn't see your reply until I had posted mine.  Many thanks for taking the time to try and help me, it seems as though I may have sorted it now.  I am using IDE drives until I can afford SATA.  But many thanks for the heads-up on the NF4-SATA compliance, I'll be sure to bare that in mind.
    I didn't actually check the NVRAID/IDE ROM version before updating the bios, so I have no idea if the revision was changed when Liveupdate flashed the Bios, I'm afraid.  I didn't know they would be updated at the same time.
    Again, cheers
    Marcus

  • Setting up a few more things 100%

    Im stuck at 100% everytime I update and I have to roll back previous version of windows every single time, how can I stop this from happening again?

    Hi RocketSashimi,
    What is the current situation?
    If the new build still could not be installed, please uninstall any 3rd-party Antivirus software if installed, after that, check if we could install the new build again. A similar thread for reference:
    Stuck at "Setting up a few more things
    100%" when upgrading to build 9860
    Or
    We may consider to do a clean install with the newly Windows 10 9879 ISO, which is download available from the following link:
    Download Windows Technical Preview November Update
    http://windows.microsoft.com/en-us/windows/preview-iso-update?os=win10
    Enterprise version:
    http://www.microsoft.com/en-us/evalcenter/evaluate-windows-technical-preview-for-enterprise
    Best regards
    Michael Shao
    TechNet Community Support

  • Getting SQL*Net more data from client waits when running a query through web based interface

    Hi, you all,
    We are having this weird behavior when running query through web based interface, we get a lot of "SQL*Net more data from client" waits, the OEM indicates that the current wait event is SQL*Net more data from client
    It's just a very simple query wich invokes a db link.
    When I execute the same query on any PL/SQL tool like toad or sql developer it works fine, but that query inside an application executed through a web based interface, it hangs for ever.
    Where can I start looking for the problem.
    We are working on a 3 Node RAC 11gr2, both databases are on the same RAC.
    Thanks.

    Hi ,
    we managed to reproduce the case in test environment, below are the steps:
    1)have 2 databases on different machines, will call the first one local, the other one remote.
    2)in the local database create:
    a - DBLink to remote database.
    b - read data from remote database(we simply used select count(*) from dummy_table )
    c - insert data into a table on the local database
    d - terminate the connection between the 2 databases (disconnect either machine from the network)
    e - commit on local database.
    what we noticed was the following:
    1)when the local database is disconnected from the network(the machine is not connected to any network at the moment): almost immediately throws an error, and issuing the following:
    select * from dba_2pc_pending;we found some data .
    2) when the remote database was disconnected(the local database is still connected to the network):
    after 7-8 seconds an error is thrown, and issuing the following:
    select * from dba_2pc_pending;did not return any data.
    since this is pretty similar to our case ,we concluded that it's a network issue.
    is this the correct behavior ?
    as a temporary solution till the network issue is fixed ,we did the following:
    1) changed the call of the remote procedure to calling a local procedure that calls the remote procedure.
    2) added pragma autonomous_transaction to the local procedure.
    3) at the end of the local procedure rollback the autonomous transaction.
    it seems that since the global transaction does not use the DBLink database does not issue a 2PC commit.
    this works in my cases since the DBLink is only issed to read data.

  • A few more FCP X Bugs/Annoyances

    Hello all,
    I cannot thank the help and expertise from some of the members in the FCP X support community.  Luis Sequeira and Tom Wolsky you guys are part of the reason why I am persevering with FCP X and am finding it to be the future of editing despite the many flaws it has.  I was glad to find out I wasn't just one of a few who found some of the bugs and inconsistencies to be slightly more than an annoyance.  Here are a few more that i've noticed and am wondering if anyone has found out why these issues exist and would care to add upon:
    This one is for Macbook FCP X users.  I don't have this problem on my tower or my 27" iMac so I am led to believe this is a deliberate (althrough strange and unwise) GUI design change from Apple.  When I open up my color board on my 13" Macpro, I see my color board, exposure and saturation control just like I do on my desktops.  I do not however, see the percentage change view/controls underneath.  I cannot scroll down further, all I have to play with is the respective color, saturation and exposure "board" leaving me to use my eyes as my only trusted gauge for correction/change.  Here's an image of what I see...
    Notice no percentage gauge?
    Here's another issue I have not been able to find a workaround for despite trying usual and predictable avenues in my attempts.  It's not a huge deal, but being a keyboard shortcut junky, I find it annoying that I cannot press Command + E to export with my default settings on my macbook.  The shortcut is not visible in the menu or when I hover my curser over the icon.  Naturally, I went into my command editor to see whether i'd have to edit or completely create this shortcut on my own.  The shortcut is definately still the same in the comman editor, but still no avail.  I've input the keys to manually create this shortcut, still the same.
    Here is what I see:
    No matter what I do, when I press Command + E (I make sure i'm in the timeline) the shortcut doesn't work and I hear the sound that occurs when an incorrect or unvailable  command/action occurs.  Not a huge deal but still need to know if this is a legit bug or if it was intentional for laptop owners for some strange unidentifiable reason.  I'm wondering if any other Macbook users are encountering the same problem.
    I am about to mention these issues as well as a few others in hopes they can address them in future updates but wanted other peoples take on them.  These aren't bugs as much as things I think would make more sense if corrected or improved upon:
    Pressing CMD + 6 to open AND CLOSE the color board  to make color adjustments.  Once i am done making my necessary color/exposure adjustments, why can't i close this window with the same shortcut i used to open it?  I can open the color board with CMD+ 6 but cannot close it with the same keyboard shortcut command.  Same with CMD + 8 for audio enhancements, I can open the audio enhancements window with this shortcut but cannot close it with this shortcut.  I have to close the entire inspector with the keyboard shortcut cmd 4 to close the window.  Seems very counter intuitive and for short term projects isn't that big of an issue (like I mentioned i'm a keyboard shortcut fanatic), but becomes very annoying for paid, commercial work (which i've become accustomed to using CS6 for).  When i work on my laptop I keep the inspector open when I need to maximize viewer space and would like to be able to have the color board close as conveniently as it opens without having to press cmd 4 to close inspector.  Not that big of a deal but would like to see this fixed, wanted other people's thoughts?
    Thanks again for your help, the transition to FCP X for things other than Facebook and short Instagram vids is coming about slowly but surely...
    Anthony

    Pull down the separator bar at the bottom of the color board to create more space for the percentages.
    The color board and audio enhancements are parts of the inspector. You close the inspector with Cmd-4.
    Cmd-E is the default export setting. It's assignable to any preset or custom export setting. Open Destination preferences, right-click on the setting you want and select make default.

  • I'm looking for a digital picture frame that is compatible with the iPhone 5 and 4S.  I was looking at the Panasonic MW-20 but from what I can see I don't think it is.  Any information would be great!  Looking to buy a replacement frame for Christmas.

    I'm looking for a digital picture frame that is compatible with the iPhone 5 and 4S.  I was looking at the Panasonic MW-20 but from what I can see I don't think it is.  Any information would be great.  Looking to buy a replacement for Christmas.  Thanks!

    Hi - the new lightning connector on the iPhone 5 has an authentication chip so very few 3rd party manufacturers have come out with compatible devices - so I doubt that you will find a frame that works for both phones - however Apple has come out with 2 apapters - one is a cable and one is a direct 30 pin to lightning device - you would have to check out each frame to see if one of these might work - I looked at the Panasonic and it looks promising but I would check the return policy of anything that you buy in a case it doesn't work.

Maybe you are looking for