The latest stable version of the Linux kernel is: 2.6.25 !!!

The latest stable version of the Linux kernel is:  2.6.25
as u know
http://www.kernel.org/
after testing ,hope included in final core iso
2008.04

ekerazha wrote:
brain0 wrote:First of all, ext4 is under heavy development and possibly buggy. Furthermore, the on-disk format is not guaranteed to be stable yet.
No, it's not under heavy development, it is almost complete. The only missing part is the "dalayed allocation". The on-disk format, as I've already said, shouldn't change anymore.
With this patch series, it is expected that ext4 format should be settling
down.  We still have delayed allocation and online defrag which aren't
quite ready to merge, but those shouldn't affect the on-disk format.
I don't expect any other on-disk format changes to show up after this
point, but I've been wrong before....  any such changes would have to
have a Really Good Reason, though.
Source: http://lkml.org/lkml/2008/1/21/392
If you read this carefully, you don't want to use ext4 just now. You also should consider that ext4 is virtually untested compared to filesystems like ext3 which has been used for years in many production environments. I wouldn't read "I don't expect any other on-disk format changes" as "There will be no more changes" if I had important data.
brain0 wrote:Second, we don't have a single filesystem built into the kernel, they are all modular - and I don't see a reason why this should ever change.
I remembered some filesystems were "built-in". Evidently I remember wrong (well... and I remember the filesystem for the root partition had to be built into the kernel, but my knowledge on this point is not very updated).
You're so 90's. If we would build everything into the kernel that everyone needed to boot, it would be 5MB or 10MB instead of just 2MB. Everything is as modular as possible now (there are some exceptions which should be ironed out in one of the next releases).

Similar Messages

  • Where is the latest STABLE version of Firefox?

    I want the latest STABLE version of Firefox. I'm not interested in BETA versions. But, Mozilla is doing a good job of hiding the latest stable version and forcing customers into its ever-changing unstable Beta system. Can anyone tell me which version of Firefox is the newest STABLE version; and where can I find it? Thank you for your assistance!

    If you are getting updates in Firefox to a Beta build (of 34.0bx) then you installed what was one of the Beta builds of a version in past (to be on Beta channel) and not a Release before. There are on average six to twelve Beta builds for a version with nine being the average in last while.
    '''on www.mozilla.org only the current Release is served''' as you would have to go out of way to a page that serves Beta builds to then download them. Mozilla would never force people to use one of the Beta builds for a version instead of Release.
    The current Beat build of a version is only on and is clear it is not the Release.
    https://www.mozilla.org/firefox/channel/#beta
    https://www.mozilla.org/firefox/beta/all/
    Firefox 34.0 is scheduled for release on November 25.

  • What's the latest stable version of Java Advanced Imaging Image I/O Tools?

    Hi,
    Could anybody tell me what's the latest stable version for Java Advanced Imaging Image I/O Tools and from where I can download the same?
    Thanks

    Just 'mark out of date' the package. Or email him directly. The forums are generally the WORST way to try and contact any specific developer.
    Oh, and before that, please do a quick google....
    http://projects.gnome.org/gedit/
    Closing.

  • Deployment Rule Sets do not properly launch the latest available version from the JRE6 family when the jpi-version is specified by the RIA

    Issue Summary
    In Java 1.7 Update 71, Java 1.7 Update 72 and Java 1.8 Update 25 Deployment Rule Sets do not properly launch the latest available version from the JRE6 family when the jpi-version is specified by the RIA.  We've noticed this with Oracle Forms and Reports 11g where we have forms that specify Java 1.6 Update 20.  We used to be able to specify Java 1.6 Update 26 in our Ruleset, but now the only version a that works in our ruleset is Java 1.6 Update 20 which is the same version requested by the JPI-Version attribute of the jar.  The long term solution would be to upgrade Oracle Forms and Reports, however this isn't currently in the cards.
    RuleSet.xml Test
    Ruleset.xml

    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <ruleset version="1.0+">  
    <rule>
       <id location="*.javatester.org" />
       <action permission="run" version="1.6*" />
    </rule>
    <ruleset version="1.0+">
    <rule>
       <id location="*.internaldomain.name" />
       <action permission="run" version="1.6*" />
    </rule>
    </ruleset>
    Test 1 (Control)
    Installed Java Versions:
    – 1.7 Update 51 b13 (both x86 and x64 however x86 is invoked)
    – 1.6 Update 26 b03 (both x86 and x64 however x86 is invoked)
    Deployment Ruleset works as expected for both URLs
    Test 2
    Installed Java Versions:
    – 1.7 Update 72 (both x86 and x64 however x86 is invoked)
    – 1.6 Update 26 b03 (both x86 and x64 however x86 is invoked)
    The RuleSet works for JavaTester.org however on internaldomain.name we get the following error:
    With the trace logging turned on, I suspected the version attribute supplied by the RIA. I was able to trick Java by adding the following to my system deployment.properties file:
    deployment.javaws.jre.0.product=1.6.0_20
    deployment.javaws.jre.0.path=C\:\\Program Files (x86)\\Java\\jre6\\bin\\javaw.exe
    deployment.javaws.jre.0.enabled=true
    Because the RIA requests 1.6.0_20 it matches 1.6* from the deployment ruleset sooner than 1.6.0_26. However, if 1.6.0_20 is not available 1.6.0_26 should match according to the Deployment Rule Set documentation:
    http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/security/deployment_rules.html
    The version of the JRE that is used is determined by the following order of precedence:
    1. The current version of the JRE is used if it is available and matches both the version attribute and the version requested by the RIA.
    2. The latest available version of the JRE is used if it matches both the version attribute and the version requested by the RIA.
    3. The current version of the JRE is used if it is available and matches the version attribute.
    4. The latest available version of the JRE is used if it matches the version attribute.
    If no version is available that meets the criteria, then the RIA is blocked, and a message is shown to the user. To provide a custom message, include the message element.
    As a result:
    If Java 1.6.0_20 is listed in the version requested by the RIA and 1.6.0_20 is listed in the deployment.properties file, #1 matches.
    If Java 1.6.0_20 is listed in the version requested by the RIA, but 1.6.0_20 is NOT listed in the deployment.properties file the #1 SHOULD match, but doesn’t. It used to match up-to and including JRE 1.7 Update 51 however the ruleset appears to no longer match in subsequent versions.
    #2 should never match with our current Deployment Ruleset. It would match if we specified 1.7* as a version in the Ruleset.xml.
    #3 used to be broken as well after JRE 1.7 Update 51 however this bug has been marked as fixed. See: http://bugs.java.com/view_bug.do?bug_id=8032781
    I have reproduced this issue with Java 1.7 Update 71, Java 1.7 Update 72, and Java 1.8 Update 25 when one of these versions are installed with Java 1.6 Update 26.

    I can't seem to edit this post anymore, for some odd reason.
    So here goes;
    I found this post in NVIDIA's knowledge base;
    When installing an after-market graphics card into a certified Windows 8 PC with UEFI enabled, the s...
    The interesting parts in this post are as follows;
    When an after-market graphics card is installed into a motherboard with UEFI enabled in the system BIOS, or if the system is a certified Windows 8 PC with Secure Boot enabled, the system may not boot.
    UEFI is a new system BIOS feature that is provided on most new motherboards. A UEFI system BIOS is required in order for the Windows 8 Secure Boot feature to work. Secure boot is enabled by default on certified Windows 8 PCs.
    In order to get the PC to boot with a graphics card that does not contain UEFI firmware, the end-user must first disable the secure boot feature in the system's SBIOS before installing the graphics card.
    Note: Some system SBIOS's incorporate a feature called compatibility boot. These systems will detect a non-UEFI-enabled firmware VBIOS and allow the user to disable secure boot and then proceed with a compatibility boot. If the system contains a system SBIOS the supports compatibility boot, the user will need to disable secure boot when asked during boot process
    This leads me to believe that the BIOS update that wrecked my setup was 9SKT58A/9SJT58A, which only contains one change;
    "Adds support for updating BIOS from a WIN7 BIOS to a WIN8 BIOS".
    I've just ordered a cheap UEFI-compatible GT640 from Gainward, so I hope I'll be able to try that out this weekend.

  • Just tried to install the latest firmware version and the screen has been grey for the last 30 mins

    Just tried to install the latest firmware version and the screen has been grey for the last 30 mins, any ideas what to do now?

    ..Step by Step to fix your Mac

  • What's the latest firmware version for the Xperia Tablet Z?

    What's the latest firmware version for the Xperia Tablet Z?
    According to the Swedish and British Sony website, the latest version for the Xperia Tablet Z is 10.1.1.A.1.253 released on 17th of May.
    But this is the latest version for the Xperia Z (phone) not the tablet Z... Or am I wrong?
    It's a bit confusing, when the manufacturer cannot keep track of the phone and tablet...
    Solved!
    Go to Solution.

    Depends on if you have the WiF version or the LTE version. For LTE the latest is 10.1.1.A.1.253 and for WiFi it's 10.1.C.0.344.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • What is the latest software version for the Nokia ...

    So this is really just a token post to keep my service provider happy (no idea why I have to do all the asking for them when we both already know the answer) but can I please have a confirmation of the latest software versoin for the Nokia 6700 Slide.
    On a side note it would be greatly appreciated if you could PLEASE send a copy of the latest version of the software to my carrier (Vodafone Australia) so that they can finally push out the latest version of the software.
    Thanks, swinsor

    v71.004 seems to be the last released update. If the phone is Network branded your device may / may not get this update. Anyway, the update was released long ago. 
    This being a User-to-User Forum, can't do anything else than providing the info. 

  • What is the latest software versions for the Samsung Fascinate?

    Seem to have trouble updating to the latest versions with InnoPathActiveCare.
    My exisitng updates are as follows:
    Hardware Version: i500.04
    Model Number: SCH-I500
    Firmware Version: 2.1-update1
    Baseband Version: S:i500.04  V.DI01
    Kernal Version: 2.6.29
    Build Number:  SCH-I500.DI01
    Is this the latest available????
    Thanks alot.

    butch14 wrote:
    Seem to have trouble updating to the latest versions with InnoPathActiveCare.
    My exisitng updates are as follows:
    Hardware Version: i500.04
    Model Number: SCH-I500
    Firmware Version: 2.1-update1
    Baseband Version: S:i500.04  V.DI01
    Kernal Version: 2.6.29
    Build Number:  SCH-I500.DI01
    Is this the latest available????
    Thanks alot.
      If there is no pressing reason to update the phone, I would wait. There are alot of people that are having problems with the phone when they did the upgrades. Missed calls/texts, dropped calls, freezing, etc.
      Gingerbread is rumored to be in the works for the Fascinate, hopefully soon...

  • Is 5.1.1 really the latest iOS version for the original iPad?

    I am trying to download the DirectTV app that comes up in the app store to my ipad and get message that iOS version 6.1 is required.  In settings, the iPad is on version 5.1.1 and says the software is up to date.  Is 5.1.1 really the latest OS for my iPad, meaning I cannot use the DirectTV online service? 

    So true.
    Apple controls the iTunes store and decides what apps get in. They could force app developers to have their apps work with older iOS systems, but instead, it's in apples best interest to force you to go buy a new tablet every three years. Apple doesn't care that iPad1 owners are the ones that made the tablet successful for apple. If they cared about their customers, if they wanted brand loyalty, apple would offer to buy back ipad1s for a decent amount that could be put toward a newer iPad. Apple lost my business. If 'technology dictates' that I have to get a new tablet every three years, I'm gonna go with a less expensive other brand.

  • What is the latest FW version for the X6

    Nokia's Indian call center really are useless.
    They tell me the reason I cant access the ovi store is because I dont have the latest firmware.
    The firmware on my phone is v12
    The latest firmware, according to them is v11.
    They don't seem to understand that perhaps their information is wrong, and that I must speak to my network to get the latest firmware or they can't help me!
    So what IS the latest firmware for the X6?
    I really hate offshore call centres where if your problem doesn't fit the script then they just freak out. It's like they are robots or something.

    Take them however you want but keep in mind that getting annoyed on this forum will not get you an official response. This is primarily a forum where people help each other, not a place for getting help from nokia.
    FYI, I don't make stuff up, I was simply relaying problems reported on other threads and sites in an attempt to be helpful. 
    As for support nearly all companies are as bad as each other nowadays thanks to call centres.
    Post edited. 

  • What is the latest current version of the Actiontec router for FiOS internet?

    Hello,
    I will be moving in a couple of months and I'm wondering if I should turn in my current router and ask for a new one when I get the service installed at my new house, vs taking my current router with me.  I've had mine for over 2 years now. The main issue I have is that the signal is sort of weak. I will be moving to a much bigger place and I'm worried the wireless won't be strong enough to reach end to end or outside.  
    Can someone confirm the latest and greatest Actiontec model # of the router that they are installing, and I can check to see if it's something newer than what I have.
    Thanks

    The Verizon routers do have a good amount of range on them. I'm using an ActionTec MI424-WR Rev. D running DD-WRT on my DSL connection, which replaced an older and slowly dying Linksys WRT54GXv1. The ActionTec seems to broadcast just as far as the Linksys does. Transfer wise when I go out that far, I don't know how nicely it works yet but I've seen no issues with it in my home. Other homes with the FiOS routers, it is generally due to the positioning of the router (Basements are terrible places, signals don't go down nicely) or due to being on a noisy channel. In some cases, an antenna replacement is all that is needed, and additionally, disabling the Auto-Scan function and setting a channel manually on the router work wonders as well.
    The Rev. G should be able to get better range by design, since it is N compliant and supports MIMO. The Rev. F and older routers do have two antennas, one internal and one external SMA antenna, so they do support Diversity as a result which helps with range and speed.
    I do agree with you however with the routers needing a better design. More RAM for future proofing, more antennas (Maybe 6 Internal, two external?) with Simultaneous dual-band Wireless N, Gigabit and better firmware design would be nice. Wouldo also be nice to see the return of Ethernet installs comes around, instead of it being for only the 150Mbps connections. It'd be less headaches in the long run and better service quality despite some additional install time and more cabling.
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • What's the latest "stable" version of Gedit? The one in the repos?

    I was just wondering because there are some cool features that I really really want from a new Gedit that have already been added in the gnome GIT repo. If ther current version "stable" is 2.30.4 then i'll wait, but if not, then can you (Jan De Groot) please update Gedit in the repos?

    Just 'mark out of date' the package. Or email him directly. The forums are generally the WORST way to try and contact any specific developer.
    Oh, and before that, please do a quick google....
    http://projects.gnome.org/gedit/
    Closing.

  • What video formats will work on the latest ios version using the camera kit

    question as per heading

    Pad2, the new iPad Supported Video Formats & Movie Formats
    H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
     Cheers, Tom

  • I have updated my 3Gs to the latest ios version , during the process something went wronge and itunes restored my phone without back up. Due to that I lost all my data including the address book and the most important thing is my photos and videos. please

    i have tries almost every thing on the web and recomended by google and friends. please help

    Go to iTunea>Preferences>Devices and see if there is a backupright at the time you did the update. Then try restoring from that backup. If the apps are in your iTunes library, any app data will be restored to the iPod.
    When restoring from an iOS 4 (or later) backup, if the device had a passcode set, iTunes will ask if you want to set a passcode (and remind you that you had protected your device with a passcode). iTunes will not ask you to set a passcode when restoring from iOS 3.x and prior backups.
    Therefore, remembe the passcode that you enter this time.
    It appears that if you restore from a backup, that backup is not subseqyently overwritten by the next backup.

  • Latest supported version of the Java SDK for XI R3.1

    Hi all,
                Does anyone have any ideas or views on the latest supported version of the Java SDK for 3.1 on windows ?
    We are using Tomcat which ships with SDK version 1.5.0_12, I know that updating this to a later version can result in a considerable performance boost for Infoview and its supported applications especially webintelligence.

    Hi Bashir, That's interesting  you're using a relatively up to date version of the java SDK. Business Objects documentation states that versions up to 1.5.0_xx are supported. Did you notice any improvements in performance of the system by using the later version 1.6.0_17 ?. There are generally very significant improvements in successive updates of the SDK in term of memory management, reliability and other general bug fixes, so it's something that we will take into consideration.
          Thanks

Maybe you are looking for

  • External Hard Drive Unavailable After Each Restart

    Hi, everyone - I recently upgraded from a 2007 iMac to a 2012 iMac with a Fusion drive. I had two external drives on the old machine which are now connected to the new machine. Both are Seagate "Backup Desk" drives (2TB "Media" and 3TB "Time Machine"

  • Release strategy for Return PO

    Hi, Can we create Release strategy for Return PO's. ? Regards Sunil

  • Anyone else have iBooks crash when changing to PDF library?

    Since upgrading to iOS 7, iBooks consistently crashes when I try to view my PDF collection. Books all open fine. I have restarted my iPhone, reinstalled iBooks. Has anyone else had similar trouble and, more importantly, found a solution?

  • Power button wont work

    okay so about 10 minutes ago i was sitting down and had my phone charging in my lap, i didn't do anything differently and then all of a sudden my screen flashed on then off then on and off and so on about 5 or 6 times rapidly, now my power button won

  • Bug - Miniplayer loses search

    Hi, I would like to report a possible bug in Itunes 9.0.2.25 for Windows Vista. When activating the miniplayer the search field resets. So if you want to play only songs that match the criteria "chill" and you activate the miniplayer the search crite