G3 Case and Hardware MOD

Hey guys do you know how to mod a Apple G3. Its a Blue all in one with 1gb ram 80gb hdd and 400mhz cpu. I wanted to mod the case and make it look different but then i saw you can also switch out the motherboard with a pc one and it can still run MAC OS!The one i saw had a 2.4ghz Inel prosessor. So please let me know if its possible!

I'm having trouble figuring out what you have. You wrote:
Blue all in one with 1gb ram 80gb hdd and 400mhz cpu
That sounds like an iMac G3, not a tower. Is it one of these?:
!http://www.everymac.com/images/cpupictures/apple_imac400.jpg!
If so, someone in the G3 iMac forums might have new mod ideas. Check it out here:
http://discussions.apple.com/category.jspa?categoryID=133
As you're in a forum for G3 tower models, someone could give advice thinking you have a tower, and that advice might not be healthy for a completely different model.

Similar Messages

  • Issue with Audio Playback and Uninterrupted Playback in MPE (Hardware Mode)

    I'm currently using Adobe Premiere Pro CS6 with the latest update (6.0.1).
    I'm encountering a very serious problem where the audio from my video clips mute sudddenly when I'm editing and playing back. This happens when other music or audio in the audio lanes (tracks) below that particular 'video clip audio' plays just fine. It literally mutes without any parameter change. This only happens to some of the clips while some plays back normally. I have to reopen my project to fix this and after 30 or 40 minutes of editing it happens again.
    And the Source monitor blacks out when it do edits while I'm playing back video. (It's really disappinting when the most anticipated feature in Premiere CS6 fails to work in my computer) I'm editing in the MPE Hardware Mode and if I switch back to MPE Software mode this problem goes away.
    My Camera is a Canon XF300 and I'm using the 50 Mb/s MXF 422 format. I'm pretty sure there's nothing wrong with the camera because the clips work just fine in CS5.5
    My System Specs are;
    Intel Core i7-2600 3.4GHz
    16GB RAM
    nVidia GeForce GTX 570 2GB (eVGA)
    Windows 7 Ultimate
    Blackmagic Studio Card (Onboard but Disabled)
    Alesis Firewire Audio io26
    4x 1TB Segate Hard-Drives
    Help is really appreciated.
    Cheers Mates!

    How do I do that? And just the project file would be enough?
    And I found another person with the same "Audio" problem as mine but his workaround isn't working for me.
    http://forums.adobe.com/message/4489844#4489844
    I guess you can get a better picture about the problem from that post.
    Thanks Harm for your helpfulness.

  • Autohibernate with pm-utils and laptop-mode

    Hi all,
    I know this is a frequent problem but I cannot find any solution around the web.
    I am using pm-utils and am able to suspend to disk and ram properly.
    Now I want to hibernate automatically based on battery condition of my laptop.
    I have installed acpi and laptop-mode-tool,  and both seem to work correctly, my battery status appear on conky, and every other events based on laptop-mode run smoothly.
    I even wrote an /etc/laptop-mode/auto-hibernate.conf according to this post https://bbs.archlinux.org/viewtopic.php?id=50702.
    But the problem is still there, the laptop doesn't autohibernate on low battery.
    If anyone has managed to autohibernate based on low battery, I will glad to know his/her solution,
    regards
    Last edited by capnion (2012-01-25 10:38:18)

    even if im not using the tools you pasted. this is what ive done (since my battery hardware is a bit shaky, i had to add some cornercases, which lead to me creating a new script).
    some bits have been taken from the web (notify-send function for example).
    see if it works for you. of course, input will be appreciated too!.
    #!/bin/bash
    # power management script for my crappy laptop
    #BAT_FILE='/proc/acpi/battery/BAT0/state'
    BAT_BASE='/sys/class/power_supply/BAT0/'
    BAT_FILE='/sys/class/power_supply/BAT0/voltage_now'
    PDIR="/run/"
    LCK_FILE=${PDIR}`basename $0`.pid
    SAFE_STATE='5000000'
    MIN_STATE='10000000'
    MAX_STATE='12500000'
    THRESHOLD='10500000'
    HIB_SECS=60
    notify() {
    # Usage: notify "title" "description" [options to pass to send-notify"
    title="$1"
    body="$2"
    shift 2
    opts="$*"
    # Send messages to users listed by the 'users' command, but only once
    # Maybe sh has a better way of doing set operations, but this works:
    SENT=""
    for USER in $(users); do
    case $SENT in
    "$USER") ;;
    *" $USER") ;;
    "$USER "*) ;;
    *" $USER "*) ;;
    # use 'su USER' to send the message
    *) SENT="$SENT $USER";DISPLAY=:0 su $USER -c "notify-send $opts \"$title\" \"$body\"" ;;
    esac
    done
    # test if we are root.
    if [ $EUID != 0 ]; then
    sudo "$0" "$@"
    exit $?
    fi
    #test if we are running already
    echo "LCK_FILE=$LCK_FILE"
    if [ -f "${LCK_FILE}" ]; then
    MYPID=`head -n 1 "${LCK_FILE}"`
    TEST_RUNNING=`ps -p ${MYPID}|grep ${MYPID}`
    if [ -z "${TEST_RUNNING}" ]; then
    #the process is not running
    echo $$ > "$LCK_FILE"
    else
    echo "`basename $0` is already running [${MYPID}]"
    exit 0
    fi
    else
    echo $$ > "$LCK_FILE"
    fi
    if [ -a "$BAT_BASE" ]; then
    PRESENT=$(cat ${BAT_BASE}/present)
    if [ $PRESENT == '0' ]; then
    echo "Battery not present!"
    rm "${LCK_FILE}"
    exit 0
    else
    CURR_STATE=$(cat ${BAT_BASE}/voltage_now)
    CHAR_STATE=$(cat ${BAT_BASE}/status)
    fi
    else
    echo "Something wrong, file missing!"
    rm "${LCK_FILE}"
    exit 1
    fi
    if [ $CURR_STATE -lt $SAFE_STATE ]; then
    echo "buggy batt, ignored result: $CURR_STATE"
    rm "${LCK_FILE}"
    exit 0
    fi
    if [ $CURR_STATE -lt $THRESHOLD ]; then
    if [ $CHAR_STATE != "Charging" ]; then
    echo "battery level low, hibernating in $HIB_SECS seconds"
    notify "BATTERY STATUS" "battery level low, hibernating in $HIB_SECS seconds. Connect to AC to cancel"
    sleep $HIB_SECS
    CHAR_STATE=$(cat ${BAT_BASE}/status)
    if [ $CHAR_STATE != "Charging" ]; then
    /usr/sbin/pm-hibernate
    # notify "BATTERY STATUS" "Comming out of hibernate!!"
    rm "${LCK_FILE}"
    exit 0
    fi
    notify "BATTERY STATUS" "Charger plugged. hibernate disabled"
    fi
    else
    echo "battery state: $CHAR_STATE"
    echo "battery level: $CURR_STATE"
    # notify "battery level:" "$CURR_STATE"
    fi
    rm "${LCK_FILE}"
    it is run by root every minute. it warns through notify-send one minute prior to hibernating, and aborts if the laptop was plugged within that minute.
    some variables should be tweaked for your battery
    EDIT: fixed a bug when testing if battery was being charged/discharged. added test for root.
    Last edited by eldragon (2012-01-25 14:33:40)

  • How do you switch between web server snapshot jpg and png modes?

    I read in another forum a posting by "NathanK" stating:
    "The snapshot feature of the web server can
    generate images either as png or jpg. In LabVIEW 8.6 and later, the
    default which is generated by the web publishing tool is the png
    format. In this mode everything happens in memory so there is no
    snapshot image file generated.
    In the jpg mode there is a
    temporary file, however it is not always the same file and the file is
    deleted after it is uploaded to the client. I would not recommend
    trying to use this programmatically.
    If you need more
    control over a snapshot of a front panel (and you are using 8.6), I
    would recommend making a custom web service that takes a picture of a
    VI's front panel and returns it to the client. Then you would have
    control over the image."
    I am currently using the web publishing tool snapshot feature with an EXE program written in LV8.6.  However, each time a browser accesses the html file, the EXE file's memory grows by 72KB (this happens with my custom EXE program and with LabVIEW.exe when running the VI in development mode).  I'm assuming this is the png that is generated each time a snapshot is taken, but the program never de-allocated the memory and the program eventually crashes.  I'm aslo assuming that if I switch to "JPG mode", the web server will generate a temporary file and eventually delete it, elminating the memory leak.  The problem is, I don't know how to change the modes from png (default) to jpg.

    I am and have been using the .snap function on many applications since LabVIEW 6.1.  It's very simple, easy to use, does exactly what I want it to do, and is still in the documentation of LabVIEW 8.6, 2009 and 2009 SP1 as being supported. 
    If I am not mistaken, don't you need to have the LabVIEW runtime engine on the target system to use embedded mode?  I don't want to have to try and keep everybody who wants to see a screenshot of my program to have to have a run-time engine installed.  For one reason, I don't know everybody who wants to monitor our system and they literally can be anywhere in the world if the VPN to our network.  Second, those who I do know would would have me install it for them.  Third, why go "backwards" in capability...everybody would ask me "Why do we have to do this now?..we never had to do it before", and I don't want to use my time/energy at work to explain why NI cannot fix a memory leak that has been identified in at least the last 3 versions of LabVIEW and is still not fixed. 
    I had been using either LV 6.1 or 7.1 for a good part of 10 years and had very few problems with them (BTW, DAQmx is the greatest thing every put on a computer EVER).  I finally make the transitioin and start using LV 8.6 on a major test platform last year, got to the very end of it and find this out.  <sigh!>
    It is funny (maybe not), but my work around feels like I just changed the floormats in my Toyota car to keep it from "crashing".
    However, if I am mistaken and you do NOT need to use LV runtime engine for embedded mode, ignore everything I wrote above and please let me know that this is the case and I will look into it.

  • How to use a single page for create and update mode.

    Hi,
    I need to develop a single page to be used for both create and update modes.
    I am going to use a variable MODE
    and i will set this in the emp summary page.
    Based on the button clicked by the user i have to render the JSF page.
    For tis if the user selects a perticular and cliks on update thn i will pass the empno to the next.
    so there in the next i will appy a ViewCreiteria on my View Obj to fetch only that row so that only that emp will be displayed ion update mode.
    This is working fione for me.
    So now the issue is
    when the user clicks on CreatEmp button.
    i need to enable my VO for insert operations.
    for this i wrote the code like this in the beforePhase event
    FacesContext ctx = FacesContext.getCurrentInstance();
    ValueBinding valBinding = ctx.getApplication().createValueBinding("#{data}");
    BindingContext bContext = (BindingContext) valBinding.getValue(ctx);
    DCDataControl dcControl = bContext.findDataControl("DataControl");
    Application app = ctx.getApplication();
    ApplicationModule am = (ApplicationModule) dcControl.getDataProvider();
    System.out.println("After Appmodule initiation");
    // get the VO reference and initiate the query
    System.out.println("Before Page VO initiation");
    PrismDmPageSectionViewImpl vo = (ViewImpl)am.findViewObject("View");
    //ViewRowImpl row = (ViewRowImpl) vo.createRow();
    /* TO CREATE AN EMPTY ROW*/
    Row row=vo.createRow();
    System.out.println("New Row is created");
    //vo.createKey(row);
    vo.insertRow(row);
    vo.setCurrentRow(row);
    By doing this a new empty page is rendered.
    But when i fill up the values and click on ok.. i am getting the error like this..
    JBO-27023: Failed to validate all rows in a transaction.
    JBO-27027: Missing mandatory attributes for a row with key null of type View3
    JBO-27014: Attribute Id in View3 is required
    JBO-27014: Attribute PageeId in View3 is required
    Please point me out where i am missing.
    Thanks

    Hi,
    In my opinion you are over complicating things.
    This is what I do for using the sme page as both create and update without all this code.
    1) Create a browse page containing a an adf table with a select one component bound to your view object.
    2) Create an additional edit page containing only an edit form containing fields of your view object that your users must enter in order to add or edit rows.
    3) Link the pages in the JSF diagram with an "edit" navigation case from browse to edit page and a "return" navigation case from edit to browse (make sure that redirect option is NOT set on both cases)
    4) Remove the submit button from the edit page and add two application module bindings for the commit and rollback operations as command buttons in the form footer facet. Make sure that both buttons has an action of return and that their disabled property is set to false. You will probably change their labels to ok and cancel respectively.
    5) Drop a create action for your view object from the data control palette inside your page as a command button and set the action property to edit also.
    3) Set the action property of the view button to edit
    This should basically work without any code from your part. -- at least it does so for me -- if you like to make it a bit more funcy you may add am action listener inside your buttons and set a requeScope variable for example #{requestScope.editing} to true or false depending on the button clicked. Then add a title to your page with a value like #{requestScope.editing == true ? 'Editing record' : 'Adding a new record'}..
    Hope that helps.
    Thanassis

  • Exchange 2013 with CAS and HLB in different sites

    Hello...
    Coming son, we'll deploy Exchange 2013 with high availability in all roles. The CAS and Hub Transport roles, are with a HLB; and the Mailbox with DAG. The infrastructure is formed by:
    Citi1:
    - AD Site 1
    - 1 Hardware Load Balance: HLB01 to load balance the CAS and Hub Transport of Exc01 and Exc02
    - 2 Exchange: Exc01 and Exc02 multiroles Exchange Server 2013
    - 1 DAG for Citi1 databases: conformed by the Exc01 and Exc02
    Citi2:
    - AD Site 2
    - 1 Hardware Load Balance: HLB02 to load balance the CAS and Hub Transport of Exc03 and Exc04
    - 2 Exchange: Exc03 and Exc04 multiroles Exchange Server 2013
    - 1 DAG for Citi2 databases: conformed by the Exc03 and Exc04
    The Active Directory is one forest with one domain. The Domain Controllers are Windows Server 2012. The Site1 and Site 2 are connected by a WAN link. The accepted domain is domain.com. The smtp address is @domain.com
    How to make that users of Citi1 always connect throught the HLB01 to their mailboxes; and the users of Citi2 always connect throught the HLB02 to their mailboxes if the autodiscover.domain.com is the same for all users?
    I have not found documentation about
    this architecture. Please help me.
    Thank you very much.
    Best regards, Javier Uribe

    Hi javier,
    In this issue, I guess you can try to use site affinity for the Autodiscover service for intranet-based traffic.
    To use site affinity, you specify which Active Directory sites are preferred for clients to connect to a particular Autodiscover service
    instance. 
    You configure site affinity by using the
    Set-ClientAccessServer cmdlet. This cmdlet lets you specify the preferred Active Directory sites for connecting to the Autodiscover service on a specific Client Access server. After you configure site affinity for the Autodiscover service,
    the client will connect to the Autodiscover service as you specified.
    According to your needs, you might want to allow users in the site1 to use site1, users in site2 to use site2 to access the Autodiscover Service.
    You can configure site scope for Client Access servers in the Site1 by following command.
    Set-ClientAccessServer -Identity "site1-cas" -AutodiscoverServiceInternalURI "https://internal.domain.com/autodiscover/autodiscover.xml" –AutodiscoverServiceSiteScope “site1”
    The Command for Site2.
    Set-ClientAccessServer -Identity "site2-cas" -AutodiscoverServiceInternalURI "https://internal.domain.com/autodiscover/autodiscover.xml" –AutodiscoverServiceSiteScope “site2”
    Hope it helps
    Best regards

  • OS and Hardware Instability, please help

    Hello - I've read through a lot on these boards and I don't quite see an answer to My problem.  You folks seem helpful though, so I'm going to put Myself into your hands for assistance.
    Last Friday My PC shut down out of nowhere, and wouldn't bring the OS back up.  After checking a lot of things I figured out that one of My 3 memory chips got fried somehow.  You don't just see this happen very often...but I guess it does.  So, I went with the other 2 (still leaving Me with 1GB memory) and tried to keep on going.
    Once back in Windows I started getting software errors - where it says "please send this report into Microsoft".  It happened mostly with two things - My main game (City of Heroes - online game) and IE.  Seemingly at random times.  Once in a while the PC would also just simply reboot itself out of nowhere.  I figured the OS got hurt when the memory chip blew up, and couldn't "fix" the OS no matter what I did.  
    So, I decided to download XP 64 Beta.  Big Mistake.  Not only did it take forever to get the drivers loaded, software running, etc - but I also ended up with the EXACT same problems.  This was after Fdisking My hard drive and everything.  So I got rid of XP64 and put XP back on.  Yep...still same problems all around.
    I've disconnected everything from the board (processor included) and reseeded it all.  I've checked to make sure there are no loose wires, that the power cable has no crimps or frays, and that it is plugged securely into the surge protector (which in turn is plugged into a very good UPS).
    Fresh build on an Fdisked drive, latest drivers for everything including all the MB stuff from MSI Live Update (BIOS as well).   I simply don't know what to check any more, or what else to do without assuming that the MB is fried, and that likely being the reason why the memory blew up and the PC hard crashes now and then as well.
    Also important to note:  The PC ran fine for almost 3 months (when I first put it together), until now.  I have not installed any additional hardware or software lately that would have caused any changes that I know of.
    Here's My system specs, please let Me know if I left anything out.  If there's anything else I should check please let Me know, I'd greatly appreciate it.
    -Drake
    MSI K8T Neo-FSR (red board with VIA chipset, even though the product page here lists the FSR as an NVidia with blue board??)
    AMD Athlon 64 3200+
    1GB (left) of Kingston 512MB DDR400 Dimms, in slots 1 and 2
    ATI Radeon 9800 XT 256MB (latest 4.6 Catalyst drivers)
    Creative SB Live! 5.1 Sound Card in slot 5 (leaving plenty of room for air flow to the video card's fan)
    Windows XP SP1 (all critical and non-critical updates applied)

    Again, thanks for the responses!  It's been helpful.
    Right now I'm running with only one DIMM and it's not crashing.  I was able to play My game last night for about 2 hours without crashing, which is a first in a while.  
    Now, I would of course rather run with 2 of these chips instead of just the 1, but I'm a little confused about what was said above.  
    I downloaded CPU-Z and I'm checking out the memory information.  First off, it says My Frequency is 200.0 MHz...shouldn't this read 400?  That's what I have it set at in the Bios.  Here's what it says there for Memory:
    Size 512 MBytes
    Channels # Single
    DIMM#1 Kingston DDR-SDRAM PC3200 512 MB
    Timings:
    Frequency 200.0 MHz
    FSB:DRAM CPU/10
    CAS# Latency 2.5 clocks
    RAS# to CAS# Delay 3 clocks
    RAS# Precharge 3 clocks
    Cycle Time (Tras) 8 clocks
    Bank Cycle Time (Trc) 11 clocks
    DRAM Idle Timer 16 clocks
    (Total CAS# and Row To Column are grayed out)
    I'm not sure what you meant by "3-3-3-" and "4-4-4".  I don't see anything like that on CPU-Z, nor do I recall anything like that in the bios, but I'll check it.  If you mean the frequency (as in 333/400) like I said above I do have that set to 400 but it's reporting in CPU-Z as 200.
    DeMaxx - I'll try the #1 and #3 thing to see if that helps, but I know with 2 DIMMS in #1 and #2 I was still getting errors.  I'll test now.
    Thanks again, I'll keep trying!
    -Drake

  • I have an 8 year old eMac G3. It will not start up. I need to erase it before putting it in recycling. Apple refuses to open the case and warns me that I will be shocked if I even try. They say no way to erase hard drive. They say use a hammer. Any ideas?

    I have an 8 year old eMac G3. It will not start up. I need to erase it before putting it in recycling. Apple refuses to open the case and warns me that I will be shocked if I even try. They say no way to erase hard drive. They say use a hammer. Any ideas?

    Hi, no eMacs had G3s, only G4s. Is it maybe an iMac G3?
    If you don't know the model, find the Serial# & use it on one of these sites, but don't post the Serial# here...
    http://www.chipmunk.nl/klantenservice/applemodel.html
    http://www.appleserialnumberinfo.com/Desktop/index.php
    How to find the serial number of your Apple hardware product...
    http://support.apple.com/kb/HT1349
    http://www.ifixit.com/Device/eMac

  • Shared and Dedicated Mode in Oracle 8i

    Can any one describe what is basic difference when we install Oracle8i in dedicated and Shared modes. I have to create Oracle8i Database for not more 150 users. Actually less then 20 users might be accessing database but in future it can go up to maximum 100.

    WIthout understanding your application and hardware in some detail, it is impossible to say which mode is better-- and that's without accounting for a mixed-mode setup where some connections are shared and some are dedicated.
    If there are going to be 20 simultaneous connections, dedicated server is almost always preferred. If you start to get up to 100 simultaneous connections, depending on your hardware, it may become appropriate to use shared server. If you have a high-end multi-CPU machine, it will easily handle 100 connections. If you have a low-end single-processor Windows server, you might have problems with dedicated server.
    OLTP systems tend to be more amenable to shared server than DSS systems, because sessions spend a lot of time idle in the former type of application.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Cases and Accessories for 5G iPods

    Ok, so ever since I purchased my Black 60GB iPod I started reading about how easily it scratched and realized I needed to get a case for it immediately. I was also surprised to discover that my old iTrip and other top docking accessories no longer worked with the 5G iPods. So I began to research my options for cases and accessories, and here's what I came across:
    This is a silicone case from zCover that seems to be the only 5G specific case that is available and shipping now.
    http://www.zcover.com/zCoverProduct_iPod_G5Original.htm
    Here are 6 different options for cases offered by Speck sometime in mid-November.
    http://www.speckproducts.com/for-video.html
    Tunewear has several different options available for the 5G's. The silicone case (ICEWEAR 5G) can be found here: http://www.tunewear.com/english/product/icewear_5g/index.html
    The wallet-sized leather case (PRIE TUNEWALLET 5G) can be found here: http://www.tunewear.com/english/product/tunewallet_5g/
    And finally the leather case with belt clip and hook (PRIE Ambassador) can be found here: http://www.tunewear.com/english/product/ambassadoripod5g/index.html
    All of these cases are shipping sometime in November and all come included with Tunewear's TUNEFILM 5G which can also be purchased separately, found here: http://www.tunewear.com/english/product/tunefilm_5g/index.html
    Another leather case option is being offered by difusi. Here is their VideoValet case, stated to be shipping sometime this week: http://www.difusi.tv/hardware/casemini/videovalet.html
    Since most of these cases haven't been released yet, I decided to fashion my own case for the time being. This option will probably only work for those of you who purchased the 60 GB iPods, because the 30GB 5G's are significantly thinner than their 20GB and 30GB 3G and 4G counterparts. But anyway, I purchased a cheap silicone case for a 20GB iPod from Best Buy (you can probably find one anywhere that sells iPod accessories for around $10-$15) and a pack of PDA screen protectors. Since the height and width of the new iPods are exactly the same (the thickness or depth of the new 60GB is close enough to the 20GB and 30GB 4G's) and the click wheel and dock connector seem to be in the same place, it was only the screen size that needed to be adjusted. So I cut the case to make the entire screen visible, used a small amount of heat with a lighter to melt the cut edges firm, and then cut a screen protector to fit. This is a crude option, but it has worked for me so far and I don't have a scratch on it yet.
    As for other accessories available, allabouttheaccessories.com has nearly all accessories that are currently available and compatible with the 5G video capable iPods listed here: http://www.allabouttheaccessories.com/index.asp?PageAction=VIEWCATS&Category=193
    As most of you know, the current incarnations of Griffin's t fit in the older case. Obviously the edges of the iTrip, perhaps the most popular FM transmitter for the iPod, are not compatible with the new 5G iPods. For some reason, Apple did away with the external power port on top of the new iPods, and therefore it is unlikely that there will be any accessories, including iTrip, iTalk, remotes, etc. that will dock on top of the iPod. Instead, most will use the dock connector port on the bottom of the iPod, which isn't all bad and actually offers some benefits. Griffin's new iTrip that will use this port can be found here: http://www.griffintechnology.com/products/itrip30/techspecs.php And with a simple mini USB to standard USB cable, you can charge your iPod using a number of car chargers that use the USB cable (including Griffin's PowerJolt of course).
    Anyway, hope this post helps those of you searching for new stuff for your 5G iPods. Despite the criticism I've read, this device is a huge step for iPods and has a ton of potential. Sure there are a few things that need to get worked out, but the bottom line is they've added all t

    I did a quick search on Best Buy and came up with the following...
    http://www.bestbuy.com/site/searchpage.jsp?_dyncharset=ISO-8859-1&_dynSessConf=&id=pcat17071&type=pa...
    I'm sure you can do the same on Google with the rest of the web.

  • Pagp and silent mode

    Hello,
    I am confused with the "silent" mode when used with PAGP "auto" and "desirable" modes.
    "CCNP BCMSN exam certification guide" book, says that "silent" is used when peer is not capable of sending Pagp frames (does not participate in pagp), so that an etherchannel is built in our side anyway.
    But everywhere(cisco's site,book), is reffered that if one peer is in "auto" mode and other in "on" mode OR one peer is in "desirable" and other in "on" mode, a channel is not formed.
    Since the default submode for both - "desirable" and "auto" - is "silent"( meaning that our side does not expect any pagp frames) why a channel can not been established?
    Thanks.

    Hello Bob Grante,
    I agree with you that the documentation is very confusing and vague about PaGP negotiation.
    From what I understand an EtherChannel will form only if one side is configured to be non-silent. I cannot confirm this because I do not have access to a etherchannel capable switch at this time.
    I quote the 3550 Software Configuration Guide 12.2(25)SE.
    "Silent Mode" (Page 31-5)
    "The silent mode is used when the switch is connected to a device that is not PAgP-capable and seldom,
    if ever, sends packets. An example of a silent partner is a file server or a packet analyzer that is not
    generating traffic. In this case, running PAgP on a physical port connected to a silent partner prevents
    that switch port from ever becoming operational; however, the silent setting allows PAgP to operate, to
    attach the interface to a channel group, and to use the interface for transmission."
    The configuration examples te
    "Configuring EtherChannels (Page 31-10)
    "non-silent -- If your switch is connected to a partner that is
    PAgP-capable, you can configure the switch interface for
    nonsilent operation. You can configure an interface with the
    non-silent keyword for use with the auto or desirable mode.
    If you do not specify non-silent with the auto or desirable
    mode, silent is assumed. The silent setting is for connections
    to file servers or packet analyzers. This setting allows PAgP
    to operate, to attach the interface to a channel group, and to
    use the interface for transmission."
    I also would like to quote Brian McGahan, CCIE #8593
    "The description of silent and non-silent is hard to extrapolate from the brief description on CCO, but this is what it means. When in "silent" mode, the switch will generate (if in "desirable" mode) PAgP and respond to PAgP (if in "auto" mode) regardless of whether the link is "silent", meaning whether or not you are recieving traffic from your neighbor.
    When in "non-silent" mode, the switch will only initiate or respond to a PAgP request if the link is "non-silent", meaning that you are receiving traffic in the interface.
    Why this is even an option I'm not really sure, but by default the switch will run PAgP regardless of whether or not traffic is being received in the interface." -- http://forum.internetworkexpert.com/ubbthreads/showflat.php?Cat=&Number=3346&Main=3256
    I think the only way to find out is to test it yourself in a lab environment. I will keep this in mind for future testing.
    Best regards,
    Leon

  • Captivate 5.5 Template -- Settings for Demo and Training modes

    Hi
    I am trying to create a Captivate 5.5 template for our simulations which will be captured in both Demonstration and Training modes.
    In the template file, I go to Edit > Preferences > Modes, select the both the modes (from the drop-down list) and make required settings, and save the template.
    Now, when I try to record a new project based on this template, I am asked to select any one of the modes. As a result, I get only one type of output. How to get both modes in one go? Is there a workaround?
    Thanks for your help.

    You'll need to add your simulation capture slides to the template AFTER capturing the two outputs.  The template can only really be used as a shell to add introduction and conclusions, as well as quizzing etc.
    Since (as Lieve points out) you end up with separate files for each different output, you'll also need to use the templates to create a shell project for each different output, and then paste the slides from the captures into the shell as it were.
    Quite frankly, you're better off doing things this way anyway (capturing first and then pasting the capture slides into another shell project) because in any capture project you need to do quite a bit of editing and culling of duplicates or redundant captures.  It's quicker and easier to do this editing when the project file is smaller.  So what I do is clean up my captures first to get down to the minimum number of slides required for the simulation, and then paste those slides into my project file generated from the template.  I do the copy/paste after culling out the unnecessary slides, but before saving the capture file. That way, I always have all of the original captures as a backup in case I went too far in the culling.  Only after the project has been finalised to I go back and delete the original captures.

  • Lightroom print mode and Color mode grayed out

    Both print mode and color mode selections are grayed out not allowing me to select them. Help

    I see you haven't gotten much input so far from the Mac experts...
    As a Windows user without an Epson printer myself, I can't comment on why you might have color problems under the covers where the software doesn't seem to be following the chosen settings.  However, perhaps I can get you thinking about how to further diagnose the problem...
    The obvious thing I see is that you've chosen "Photoshop Manages Colors" in the main dialog, which implies your intent is to shut off color-management in the printer driver itself.  So to me the graying out of those settings in this case seems to make sense.
    Have you tried a test print using the "Printer Manages Colors" setting?
    Also, to try to test whether color-management isn't being turned off in the printer (regardless of what the grayed-out settings show), do you see any improvement if you use "Photoshop Manages Colors" but choose a standard profile, such as sRGB IEC61966-2.1 for the Printer Profile setting?
    -Noel

  • Nexus 7009 bandwidth allocation per port in shared and dedicated mode:

    We have 7009 with following I/O modules:
    N7K-F248XP-25E --
    N7K-C7009-FAB-2 - qty 3
    N7K-SUP2
    I would like to know that each port of N7K-F248XP-25E will get how much bandwidth in shared mode. if we are using only one port group with 4 ports each port with 10gbps is it possible in shared mode to get 40gbps in one port group.
    Thanks

    Hi,
    I'm not sure there is such a thing as shared and dedicated mode on the N7K-F248XP-25E I/O module. I don't have one to test with, but you can see this if you execute the command show interface capabilities on your switch. If you look for the "Rate mode" line in the output it will show as dedicated or dedicated/shared. I suspect the ports on this module will all show as dedicated.
    That said, with your configuration there is potential for some level of over-subscription.
    The N7K-F248XP-25E I/O module uses a Switch on Chip (SoC) architecture with the 48-ports 10-GE ports connected via 12 SoCs, so the "port grouping" is ports 1-4=SoC 1, 5-8=SoC 2 etc.
    Each of the SoC has 40-Gbps of capacity to the switch fabric ASIC, which in turn has up to 550-Gbps capacity to the switching fabric. The 550-Gbps fabric capacity is the maximum based on 110-Gbps per slot, per fabric to the installed Fabric 2 Modules. To realise this capacity there must be five Fabric 2 modules installed in the chassis.
    From the hardware list you've supplied, you only have three Fabric 2 modules installed and as such you can only achieve a maximum of 330-Gbps per I/O module slot. What this means is that you have 480-Gbps host facing bandwidth, but 330-Gbps Fabric facing bandwidth, so a potential 1.45:1 over-subscription.
    You can reduce the over-subscription into the switch fabric by adding additional Fabric 2 modules.
    Regards

  • Redo log in case of NOARCHIVELOG Mode.

    ================================================
    This post is now available at .. Redo log files in case of NOARCHIVELOG Mode.
    ================================================
    Question is related with the oracle architure..
    database requires a minimum of two redo log files to guarantee that one is always available for writing while the other is being archived, this sounds perfect when DB is running in ARCHIVELOG mode but at the same time it also forces database to have 2 redo log files even when the DB is running in NOARCHIVELOG mode?
    Any particular reason..
    I would look for reasons not answers on what redo log is and what information it holds etc..
    Edited by: pgoel on Mar 12, 2011 4:04 PM

    ======================================
    SORRY, WRONG FORUM moving it to the corrent forum
    ======================================
    Edited by: pgoel on Mar 12, 2011 4:01 PM

Maybe you are looking for

  • For BSID- Accounting Document Number corresponding PO Number is required

    Hi Gurus,              I have got a requirement to develop a report similiar to 'FBL5N' . I am getting the details of open and cleared items of a customer from BSID and BSAD tables respectively. My requirement is also to fetch the corresponding PO nu

  • Problem removing rows from JTable

    Hello, I'm having an issue with a JTable that I'm using. At one point in my application, I want to remove all the rows from the table and regenerate them (from a database). When I try to remove the rows and do nothing else, they remain in the table.

  • Personal Oracle 8i and forms 6

    I have installed Personal Oracle 8i (8.1.7) on my lap top. Then I installed Forms 6i. (Pls Note : Forms Installed in another Oracle Home) Now The Problem :- When I try to connect forms to the DB I get the following error message. ORA:12154: TNS could

  • WHY CAN'T THEY STOP CALLING

    I have Verizon Wireless and I NEED them to stop calling me about my plan and try to upgrade me to something BETTER when its really not!!! I don't want to hear about how it takes 30 days to take me off the list...it can be done by a computer delete ke

  • Data source not getting replicated

    hi all, i have created a generic datasourc  and when i tried to replicate the datasource in BI, its not getting replicated at all.\ the datasource is active in rsa5. I tried to replicate the application component but still  the particulate datasource