E4200 Tomato Firmware what do you make of this

I was looking for alternative firmwares until Linksys fixes their broken device.
What do you guys make of this Tomato firmware?  Do you think it has usb drive and Media Streaming (Twonky) support?
Tomato Firmware Info

xbones wrote:
I was looking for alternative firmwares until Linksys fixes their broken device.
What do you guys make of this Tomato firmware?  Do you think it has usb drive and Media Streaming (Twonky) support?
Tomato Firmware Info
Your link is broken. I believe you are missing a colon before the slashes.
I don't work for Cisco. I'm just here to help.

Similar Messages

  • Whither /bin/bash ---- what do you make of this?

    Given this system:
    oracle:dwdev$ uname -a
    Linux <mask server name>.<mask domain> 2.6.18-238.0.0.0.1.el5 #1 SMP Tue Jan 4 09:29:38 EST 2011 x86_64 x86_64 x86_64 GNU/LinuxAnd this script:
    oracle:dwdev$ cat edstest.sh
    !#/bin/sh
    # - test some stuff
    <snip rest of script>
    exitgives this result
    oracle:dwdev$ ./edstest.sh
    ./edstest.sh: line 1: !#/bin/sh: No such file or directory
    <snip rest of output>Can't find /bin/sh ????
    oracle:dwdev$ ls -l /bin/sh
    lrwxrwxrwx 1 root root 4 Nov 24  2009 /bin/sh -> bash
    oracle:dwdev$ ls -l /bin/bash
    -rwxr-xr-x 1 root root 801512 Jan 21  2009 /bin/bash

    What do you make of this?I think you did some editing on a Windows system, not an X Window system.
    Windows uses CR/LF line endings.
    Linux uses LF line endings.
    Do this:
    $ hexdump -C edstest.shand you will see what I mean. To correct this:
    $ dos2unix edstest.shIf you use vi(1) you can add this to your "${HOME}/.vimrc" file:
    set ff=unixand then by default, your files will be created properly.

  • What do u make of this requirement

    Hi,
    I've trying to make some sense out of this requirement that I got. Please give some input on what you understand:
    There will need to be two queries, one for the AS-IS and one for FINAL multiprovider.
    These characteristics should always be populated.  Need to check  "#" for:
    ZBRV_ACC = BRAVO6 Account
    ZBRV_PF = BRAVO Product/Franchise
    ZBRV_COMN = Company Code (Transactional MRC)
    ZBRV_COMR = Reporting MRC
    These characteristics are not always required.  However, attributes have been set for what BRAVO6 required.  Need to check for "#" when the following attributes are populated:
    ZBRV_TRPP = BRAVO Intercompany number using attribute ZBRV_TPR = Trading Partner Required
    ZBRV_PROJ = Project (Equity) Code using attribute ZBRV_PCR = Project Code Required
    ZBRV_FAP = BRAVO Department using attribute ZBRV_NZDI = Department Required
    Thanks, as always, your help will be appreciated.
    Fran

    xbones wrote:
    I was looking for alternative firmwares until Linksys fixes their broken device.
    What do you guys make of this Tomato firmware?  Do you think it has usb drive and Media Streaming (Twonky) support?
    Tomato Firmware Info
    Your link is broken. I believe you are missing a colon before the slashes.
    I don't work for Cisco. I'm just here to help.

  • What do you think of this case

    What do you think of this case. Would it work good as a modder for a water cooling system? what do you think?
    http://www.newegg.com/app/ViewProductDesc.asp?description=11-125-462&depa=1
    thanks

    you can't go wrong with chenming... the styling is obvious, why pay more for an antec...
    wonk will tell you antec doens't make its own stuff....
    i guess this means chen ming makes Antec Cases... lol makes sense... chen ming has always been an awesome case
    just so cheap compared to an antec
    EDIT: LOOOOL i found a really good one:
    Chenming Charcoal Black Entry level server case
    ANTEC Black Performance Series II SOHO File Server Tower ATX Case
    look familiar? lol antec=losers

  • What do you think of this assembly?

    What do you think of this assembly?

    you can't go wrong with chenming... the styling is obvious, why pay more for an antec...
    wonk will tell you antec doens't make its own stuff....
    i guess this means chen ming makes Antec Cases... lol makes sense... chen ming has always been an awesome case
    just so cheap compared to an antec
    EDIT: LOOOOL i found a really good one:
    Chenming Charcoal Black Entry level server case
    ANTEC Black Performance Series II SOHO File Server Tower ATX Case
    look familiar? lol antec=losers

  • What do you think about this article?

    What do you think about this article?
    +"A lithium-ion battery provides 300-500 discharge/charge cycles. The battery prefers a partial rather than a full discharge. Frequent full discharges should be avoided when possible. Instead, charge the battery more often or use a larger battery. There is no concern of memory when applying unscheduled charges"+
    Seems to make sense..
    I knew that lithium-ion batteries have no memory concerns, but still I thought that it was a good idea to charge and discharge the battery of a new iPod (or laptop) at least the first time..
    Any thoughts?
    Message was edited by: acidbahia

    The reason it's sometimes recommended to do a full discharge/charge cycle on a new device is to calibrate the battery indicator. It doesn't do anything for the battery itself.
    The quote you've given agrees with everything I've been taught about lithium-ion batteries.

  • Why I receive started 2 hours the message that I must put my password on Iclod for my apple id and when I put the password I receive the message that the paswor is not god!What can I make in this case?Please help me

    why I receive started 2 hours the message that I must put my password on Iclod for my apple id and when I put the password I receive the message that the password is not god!What can I make in this case?Please help me

    Hi it sounds like a scam delete Email
    bsydd uk

  • What do you think of this Design for Multiple Threads

    Hi Java Experts ;
    I'm curious to know what you think about this design for a multhreaded app i'm working on.
    I have a controller thread that (a.) creates threads and (b.) keeps a reference to threads that it creates (by sticking them in a hashtable along with the generated Id for that thread).
    When a created thread completes its job, it decrements the thread counter and removes its reference from the hashtable before it finishes its run method.
    Now here's the interesting part in my controller thread i'm creating new threads on the fly with this infinite loop
         public void run(){
              while(true){
                   try{
                        Thread.sleep(500);
                   }catch(InterruptedException e){
                   if(threadCounter<maxThreadCount && moreJobsToDo.size()>0){
                        createDomainThread();
              }//end while
    what do you think about this pattern ? My goal is to maintain about 200+ created threads running at all times with this pattern.

    jeff kesslerman's book says about threads
    "5.2.3 Threads
    The impact that threads have on RAM footprint isn't a problem for most programs, but running threads do need space to store their stack state, and the system- specific data structures do consume memory.
    Because runtime implementations vary widely in how threads are handled, you might encounter situations where the impact threads have on footprint is significant. For example, some ports of the JRE create a heavyweight OS process for each running thread. In an application that uses many threads, this means that thread costs, rather than class or object costs, can become the dominant factor in the program's memory consumption.
    You shouldn't avoid using threads-they're necessary in many cases, and generally don't have a large impact on footprint. However, you should be aware that the impact can be very different across runtimes. This is one of the reasons it's a good idea to measure performance characteristics under your program's different target environments. "
    Question #1: how does garbage collection go about clearing the stack state, and the system- specific data structures that consume memory.
    Question #2: in my situation, each worker thread's activity is not as brief as a simple server request. Each thread does a lot work and does a lot of network connections. on average I would say 100 http request - each of which can be easily blocked or delayed significantly. Therefore each worker thread may operate for between 2 - 10 minutes.
    Do you think thread pooling is useful in this situation ?
    stev

  • What would you do with this credit profile? I need your expertise.

    Hello MyFico Community,
    I am trying to build a decent credit profile. Is there anything I should be doing or not doing to improve my Credit Profile? Currently I have one foot in the Garden-LOL!For the last coupe monthsI have been receiving a lot of mailers, Citi, BoA, US Bank, AARP and a few others, so its  sort of tempting.  My Fico Scores are:
    760, 755 & 756. These scores are from my Discover, CapOne and Barclay statements. Goals scores are 800 across the board.   Reports:
    All reports are clean, 100% on-time payments, nothing negative reporting. Inquiries:
    I have 7, 6 and 8 inquiries showing on my reports.AAof Credit:  Not sure about this Experian/Credit.com- 6.7 years. Credit Sesame says 1.8 months?   Accounts:The accounts with balances will be paid to $0 by June 26th.Account Name:            Credit Limit:            Balance: 
    Amex Everyday              $10,000                    $286
    CapOne Venture            $10,000                    $1112CapOne QS                    $5000                       $555CapOne Platinum           $6800                        $0   Aviator                            $4000                        $0J.Crew                            $4000                        $0SportsmanGuide            $2500                        $0
    Discover                         $2000                        $0
    Target                             $200                          $0
    Wells Fargo                    $1700                        $0  I've begun using QS and Amex (0%APR) as main go-to cards. 
    Was also thinking i’d put everything I can on cards and PIF each month to take advantage of the 0% and rewards.
    Is this a good plan? I'm still learning how to best utilize my portfolio. Are there other cards I should look at acquiring?  I appreciate any input.

     
    Re: What would you do with this credit profile? I need your expertise. 
    Options06-15-2015 05:49 AM - edited 06-15-2015 06:03 AM
    What I'd do doesn't really matter.  These are not one-size-fits-all matters so each needs to determine his/her own strategy and tactics based on the individual's situation, goals, priorities, preferences, etc.  IMO you don't know what to do because you're not clear on these matters.  Very True, I am not clear but with the help of the community giving me things to consider I am getting there.
    You need to define what you needs/want and then prioritize that list.  That will give you a list of critiera that you then use to select cards that suit you. Thanks. Good way to focus my thinking about it.
    Rewards is a common criteria and if rewards matter to you then you need to look at your spend and where your money is going to select rewards with the most benefit to you. Since i’m going to be using a main CC, I’d rather have cash rewards first or rewards that are versatile for gift cards. I already have a travel card that works well for me so thats not that important.
    RandomSpirit wrote:
    AAof Credit:  Not sure about this Experian/Credit.com- 6.7 years. Credit Sesame says 1.8 months?  Thanks. Was wondering where they figured this. AAoA is just an average like any other average.  Add up the ages of the accounts and divide by the number of accounts.  Many find it easier to convert into months, calculate and then convert back into years.  You can use Excel and its date formulas if you don't want to do this manually.  There are also online AAoA calculators.  Experian is more likely to be correct.  CS is probably providing AAoOA.
     RandomSpirit wrote:
    Was also thinking i’d put everything I can on cards and PIF each month to take advantage of the 0% and rewards. Is this a good plan? You're really not leveraging a 0% offer if you're PIF'ing each month.  However, if you're not PIF'ing each month on cards without 0% offers then you're killing rewards.Okay this is confusing, would you mind clarifying? The Amex and QS have 0% interest for well into next year (not sure of exact date, I will look up again) so it would seem that it would not matter if i carry balance or pay in full until the real APR begins next year.
    So whats the best way to utilize these as my main cards to get as much cash back(QS) and MR point as possible. Carry balance or pif, or does it not matter in this case for now?
     RandomSpirit wrote:
    Are there other cards I should look at acquiring?  As with all other request you need to tell us what you need/want so we have something to use to narrow down the options for you.
    Now, I am leaning towards low interest being the most important to me, secondly would be cash back.
    RandomSpirit wrote:
    Was thinking about BoA Cash Rewards offer for 12.99 because of the lower interest rateHere's an example of why a prioritized list of criteria matters.  If the lowest possible interest is a priority above all else then you shouldn't be looking at rewards cards as they typically come with higher interest rates.  If you want the lowest possible APR you need to fins a barebones card.  They're offered with rates as low as 6.x% depending on what you qualify for. This is most important to me
    That said, rewards and a low APR aren't mutually exclusive but typically rewards cards will come with a higher APR as you aren't getting something for nothing.  While I do try to get my APR's as low as possible you might want to consider why APR is a concern if you're paying in full. In case I ever have to carry a real balance.Not telling you what to do here but consdier such things when prioritizing your list.  For example: is a lower APR more important than the biggest rewards for your spend?
     RandomSpirit wrote:
    Citi Dble Cash and, perhaps
    Chase Freedom for sign-up bonus?
    Honestly, I was thinking  to have a more diversified portfolio. I don;t have any Chase or City cards.So far we have:
    • 1 Low APR
    • 2-High rewards rate on non-category spend (Double Cash)
    • 4-Sign up bonus
    • 3-Diversity
    Which is most important?  Which is least?  Where do the rest fall?  We can't tell you this.  You need to tell us.
    Again, I'd recommend looking at your spend and ensuring that your card lineup maxmizes rewards on your spend.  The Double Cash is a good option for non category spend but if you haven't found higher rewards for a major spend category that you have then you might want to look into finding something for that category. Thanks for taking the time to offer your suggestions Tekeshi74. If gives me a lot consider.

  • What do you think about this software? Reliable?

    What do you think about this software? Reliable?
    http://www.macupdate.com/info.php/id/23023/filesync
    Or maybe Carbon Copy Cloner is better?
    Thanks a lot!

    I don't know Filesync, but to simply sync one folder to its backup I use SyncTwoFolders:
    http://www.versiontracker.com/dyn/moreinfo/macosx/30727
    To clone the entire hard drive to an external bootable hard disk I use SuperDuper, but CCC has an equally good reputation.

  • What do you think about this product ?

    Hi,
    I want to have access to SAP ECC 6.0 for personnal use, so I find a hard drive in the following web site :
    http://www.erpselftraining.com/product/SAP-server-MCOD.html
    Please can you tell me what do you think about this hard drive ? has anyone already tried it ? do you advise it ?
    Your answers will be appreciated.
    Kind regards.

    is it for learning purpose ? then why dont you just download the demo versions of SAP!!

  • What do you think of this workflow?

    I use FCP's 3-Way Color Corrector quite a bit in my editing workflow. When I send to Color I find the color-correction from FCP doesn't translate so I was thinking about exporting my video as a self-contained QuickTime and then reimporting it into FCP so my initial color-correction is "baked in." Then, make cuts at the mark of each edit and send the new timeline to Color to really treat the footage. What do you think?

    I've found myself in the same boat. It is too bad the 3-Way Color Corrector values don't translate exactly to Color -- even close would be nice . Your proposed workflow runs the risk of adding exponential time to the post production process. I'd just take some time to match the looks from FCP in Color, then make grades out of them. jkorosi has an excellent point that by "baking in" the look, you may be limiting yourself in Color. It's an incredibly powerful app, and IMHO, is more capable of properly handling original footage. For example, losing Color's nuisance and ability to manipulate depth and detail in tonality because you baked in contrast, seems like a mistake.

  • What would you do with this system and very little geekness?

    I am a student and I have a $1000 budget to upgrade my Dell Precision T5400. What would you do?
    Here is what the computer has now. It's 300gb only one harddrive is red-lining, almost full.
    I want to run Premiere Pro CS5 and AfterEffects. Those are the classes I want to take.
    Although as soon as CS6 shows, I will upgrade to that.
    Windows Vista 64bit
    Dell Precision, T5400 Mini-Tower Quad Core Xeon Proc E5420, 2.50GHZ, 2x6MB L2 Cache, 1333MHz
    nVidia Quadro FX1700 512mb dual DVI Graphics Card
    320GB SATA 3.0Gb/s, 7200RPM HardDrive with 8MB DataBurst Cache, Dell Precision T7400/5400
    C1 All SATA Hard Drive Non-Raid for 1 hard drive
    Mini-Tower chassis configuration, Dell Precision T3400
    I am trying to decide to go buy another computer ($3000 budget for that) or try to upgrade
    this one ($1000 budget for that).
    What is good here and what needs replacing? I have never built a system.

    I agree with some of the above comments, but not all.
    First, 24GB of RAM is a nice luxury option, but it's not the minimum for AE - come on RJL you know better than to say that. 16 would be more than enough for a student project. I run a business, and it's more than enough for me. 16GB is affordable. It's about $150.00 max.
    The Quadro card is over priced, and undervalued. Something like the Nvidia GTX570, 580,590 starting at about $335.00 is Adobe Authorized, and lots of performance.
    Now, I'm running a 6 core AMD, but most people will tell you an Intel system is better. According to the benchmark, it seems correct. Get a nice i7 chip. What ever you can afford.
    Motherboard. Look to spend in the $220 range. Gigybyte makes a nice one, so does Asus.
    Hard drives, one of the better things you need to consider. A 2-4 disk RAID 0 - say 4X1TB, or if that's too much $$ then 4X500GB for less than $400 would be your best investment with a 500GB system drive.
    Case count on $100 with enough fans, card reader,
    DVD burner $70.00etc.
    So, if you looked at it my way. Here is your parts list from Newegg. You will toss another $100 or so in cables and fans, etc.
    Motherboard: ASUS P8P67 DELUXE (REV 3.0) LGA 1155 Intel P67 SATA 6Gb/s USB 3.0 ATX Intel Motherboard with UEFI BIOS: $209.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16813131701)
    Processor:Intel Core i7-2600K Sandy Bridge 3.4GHz (3.8GHz Turbo Boost) LGA 1155 95W Quad-Core Desktop Processor Intel HD Graphics 3000 BX80623I72600K: $320.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16819115070)
    RAM:G.SKILL Ripjaws X Series 16GB (4 x 4GB) 240-Pin DDR3 SDRAM DDR3 2133 (PC3 17000) Desktop Memory Model F3-17000CL11Q-16GBXL:$150.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16820231473)
    NVidia GTX570: EVGA 012-P3-1571-KR GeForce GTX 570 HD w/Display-Port (Fermi) 1280MB 320-bit GDDR5 PCI Express 2.0 x16 HDCP Ready SLI Support Video Card: $340.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16814130613)
    HARD DRIVES (5): HITACHI Deskstar 7K1000.D HDS721010DLE630 (0F13180) 1TB 7200 RPM 32MB Cache SATA 6.0Gb/s 3.5" Internal Hard Drive -Bare Drive. $130 EACH OR $650.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16822145533)
    CASE: Antec Nine Hundred Black Steel ATX Mid Tower Computer Case: $100.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16811129021)
    POWER SUPPLY: Antec EarthWatts Series EA-750 Green 750W ATX12V v2.3 SLI Certified CrossFire Certified 80 PLUS BRONZE Certified Active PFC Continuous Power Supply: $100.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16817371051)
    BLURAY BURNER: LG Black 12X BD-R 2X BD-RE 16X DVD+R 12X DVD-RAM 10X BD-ROM 4MB Cache SATA Internal 12X Super Multi Blue with 3D Playback Blu-ray Disc Rewriter WH12LS38 LightScribe Support - OEM: $70.00
    (http://www.newegg.com/Product/Product.aspx?Item=N82E16827136239)
    TOTAL: $1,939.00
    You can upgrade your current operating system to atleast windows 7 - 64 bit home. You could even choose to use the DVD drive out of your existing computer.
    Someone in your rea will build a system like this for you for somewhere around $125.00 if you can't do it, but looking on YouTube can give you a step by step.
    I trust this helps.
    Goodluck

  • What do you think of this vector based illustration that I made?

    TTell me what I need to work on and how. Thanks in advance.

    Your trace over the image is fairly accurate as regards the trace. Here I removed most of the color and laid it over the photo.
    Your treatment of the subject is flat, uninspiring, don't ya think?
    One way of rectifying that is to use mesh fills so you can add highlights, darker regions and "easily" modify them as you go. This would give the drawing some dimension. You could also go for making a bazillion polygons to go for a more modernistic interpretation.
    But we have no idea of what you are wanting to achieve. It would be easier (and more time effective on our part), if you pointed to similar drawings that you wanted to emulate. Else we could give a hundred ways of drawing it that do not fit your goals, whatever they are.
    Mike

  • What do you think of this plan for a DVD?

    In order to avoid problems with the interaction between the TITLE and MENU remote buttons I've reported in http://discussions.apple.com/thread.jspa?threadID=2151541&tstart=0 and further problems with the remote RETURN button, I am considering designing my DVD as follows:
    Main menu with four buttons:
    1) Play track 1
    2) Play track 2 with audio stream 1
    3) Go to chapter menu
    4) Play story in track 2 with audio stream 2
    Chapter menu with a button for each chapter and a button to return to the main menu
    Disable remote TITLE button in both menus, both tracks, and the story
    Set remote RETURN button in main menu to go to chapter menu
    Set remote RETURN button in chapter menu to go to main menu and highlight button 3
    What do you think? Is it weird that the remote TITLE button would be disabled? Is it weird that the remote RETURN button would go down from the main menu to the chapter menu?
    John Link

    Best book on the market.  The Apple Pro Training Series are what we use for Apple authorized certification training. The author also has fantastic video training at Ripple Training. 

Maybe you are looking for

  • My new imac is on the way.   MS Money not available for Mac?  Options?

    Thanks to all who have given this PC user advice as I move over to a MAC at home. I have ordered a 24 inch Imac that is on the way soon. I have used MS Money. Looking around the internet it looks like this program is unavailable for a MAC. I've read

  • Leave Quota generation with diifferent rules for different countries

    Hi, I have the following requirement need help in achieving this. Employers must grant 10 days paid leave to employees that worked for six consecutive months from the time of hiring and who worked on not less than 80 per cent of all schedule work day

  • Problems with EA2700 and Android devices

    I enjoyed EA2700 for more than 3 months so far until I decided to change my cell phone to Galaxy S3. I have my router operating 2.4Ghz and 5Ghz simultaneously, providing perfect internet access to my two windows 7 laptops, mac mini and iPad. This is

  • Compile error "table or view does not exist"

    When I run the following code, I get a compile error: Error(5,33): PL/SQL: ORA-00942: table or view does not exist I can run the select statement by itself as an SQL query, so why does this not work in PL/SQL? CREATE OR REPLACE PROCEDURE PREPTEST AS

  • FCC sender Conversion

    Hi, I have a source file like this. "5000010234123","100026","3120","Test for Material Description", The conversion happens fine in the xml, but the only problem is that the beginning field and end field gets accommodated with double quotes Look at m