How to rebuild glibc on older gcc & kernel?

My env (these are dummy package with STLinux's prebuild binaries)
binutils 2.18.50.0.8-43
gcc 4.2.4-76
gcc-libs 4.2.4-76
glibc 2.6.1-74
linux-api-headers 2.6.23.17-1
I'm using old kernel on sh4 CPU arch and want to upgrade to newest gcc. So, I changed the glibc's PKGBUILD as
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
# NOTE: valgrind requires rebuilt with each major glibc version
pkgname=glibc
pkgver=2.17
pkgrel=3
pkgdesc="GNU C Library"
arch=('i686' 'x86_64' 'sh4')
url="http://www.gnu.org/software/libc"
license=('GPL' 'LGPL')
groups=('base')
depends=('linux-api-headers' 'tzdata' 'filesystem')
makedepends=('gcc')
backup=(etc/gai.conf
etc/locale.gen
etc/nscd.conf)
options=('!strip')
install=glibc.install
source=(http://ftp.gnu.org/gnu/libc/${pkgname}-${pkgver}.tar.xz{,.sig}
glibc-2.17-sync-with-linux37.patch
nscd.service
nscd.tmpfiles
locale.gen.txt
locale-gen)
md5sums=('87bf675c8ee523ebda4803e8e1cec638'
'6db4d1661cf34282755dc90330465f6d'
'fb99380d94598cc76d793deebf630022'
'c1e07c0bec0fe89791bfd9d13fc85edf'
'bccbe5619e75cf1d97312ec3681c605c'
'07ac979b6ab5eeb778d55f041529d623'
'476e9113489f93b348b21e144b6a8fcf')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
# combination of upstream commits 318cd0b, b540704 and fc1abbe
#patch -p1 -i ${srcdir}/glibc-2.17-sync-with-linux37.patch
cd ${srcdir}
mkdir -p glibc-build
cd glibc-build
if [[ ${CARCH} = "i686" ]]; then
# Hack to fix NPTL issues with Xen, only required on 32bit platforms
# TODO: make separate glibc-xen package for i686
export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs"
fi
echo "slibdir=/usr/lib" >> configparms
# remove hardening options from CFLAGS for building libraries
CFLAGS=${CFLAGS/-fstack-protector/}
CFLAGS=${CFLAGS/-D_FORTIFY_SOURCE=2/}
${srcdir}/${pkgname}-${pkgver}/configure --prefix=/usr \
--libdir=/usr/lib --libexecdir=/usr/lib \
--with-headers=/usr/include \
--with-bugurl=https://bugs.archlinux.org/ \
--enable-add-ons=nptl,libidn \
--enable-obsolete-rpc \
--enable-kernel=2.6.23 \
--enable-bind-now --disable-profile \
--enable-stackguard-randomization \
--disable-multi-arch
# build libraries with hardening disabled
echo "build-programs=no" >> configparms
make
# re-enable hardening for programs
sed -i "/build-programs=/s#no#yes#" configparms
echo "CC += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms
echo "CXX += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms
make
# remove harding in preparation to run test-suite
sed -i '2,4d' configparms
check() {
# bug to file - the linker commands need to be reordered
LDFLAGS=${LDFLAGS/--as-needed,/}
cd ${srcdir}/glibc-build
make check
package() {
cd ${srcdir}/glibc-build
install -dm755 ${pkgdir}/etc
touch ${pkgdir}/etc/ld.so.conf
make install_root=${pkgdir} install
rm -f ${pkgdir}/etc/ld.so.{cache,conf}
install -dm755 ${pkgdir}/usr/lib/{locale,systemd/system,tmpfiles.d}
install -m644 ${srcdir}/${pkgname}-${pkgver}/nscd/nscd.conf ${pkgdir}/etc/nscd.conf
install -m644 ${srcdir}/nscd.service ${pkgdir}/usr/lib/systemd/system
install -m644 ${srcdir}/nscd.tmpfiles ${pkgdir}/usr/lib/tmpfiles.d/nscd.conf
install -m644 ${srcdir}/${pkgname}-${pkgver}/posix/gai.conf ${pkgdir}/etc/gai.conf
install -m755 ${srcdir}/locale-gen ${pkgdir}/usr/bin
# temporary symlink
ln -s ../../sbin/ldconfig ${pkgdir}/usr/bin/ldconfig
# create /etc/locale.gen
install -m644 ${srcdir}/locale.gen.txt ${pkgdir}/etc/locale.gen
sed -e '1,3d' -e 's|/| |g' -e 's|\\| |g' -e 's|^|#|g' \
${srcdir}/glibc-${pkgver}/localedata/SUPPORTED >> ${pkgdir}/etc/locale.gen
# Do not strip the following files for improved debugging support
# ("improved" as in not breaking gdb and valgrind...):
# ld-${pkgver}.so
# libc-${pkgver}.so
# libpthread-${pkgver}.so
# libthread_db-1.0.so
cd $pkgdir
strip $STRIP_BINARIES sbin/{ldconfig,sln} \
usr/bin/{gencat,getconf,getent,iconv,locale,localedef} \
usr/bin/{makedb,pcprofiledump,pldd,rpcgen,sprof} \
usr/lib/getconf/* \
usr/sbin/{iconvconfig,nscd}
[[ $CARCH = "i686" ]] && strip $STRIP_BINARIES usr/bin/lddlibc4
strip $STRIP_STATIC usr/lib/*.a
strip $STRIP_SHARED usr/lib/{libanl,libBrokenLocale,libcidn,libcrypt}-*.so \
usr/lib/libnss_{compat,db,dns,files,hesiod,nis,nisplus}-*.so \
usr/lib/{libdl,libm,libnsl,libresolv,librt,libutil}-*.so \
usr/lib/{libmemusage,libpcprofile,libSegFault}.so \
usr/lib/{pt_chown,{audit,gconv}/*.so}
checking for autoconf... autoconf
checking whether autoconf works... no
configure: error:
*** These critical programs are missing or too old: as ld gcc
*** Check the INSTALL file for required versions.
==> ERROR: A failure occurred in build().
Aborting...

a *very* quick guide
you can change the details to suit your environment
# = run as root
$ = run as regular user
# pacman -S abs
# abs
$ mkdir -p ~/abs/core/glibc
$ cp -R /var/abs/core/glibc ~/abs/core/glibc
$ cd ~/abs/core/glibc
$ vi PKGBUILD
modify the --enable-kernel line so it reads 2.6.18
$ makepkg
# pacman -U <your new glibc package>.xv
You might also want to add glibc to the ignorepkg line in pacman.conf.  That way, you'll just be notified when a new version is out and you can repeat all of this.  You don't need to resync the entire abs tree though, the following command will do it for one package
# abs core/glibc
One other tip - make sure you have a copy of the regular glibc package before making any changes just to be safe
Last edited by oliver (2011-03-02 21:17:24)

Similar Messages

  • How to rebuild glibc?

    Hey,
    I read on http://www.archlinux.org/news/minimum-r … creased-1/ that for kernels older than that we need to rebuild glibc for them,
    the VPS i have has 2.6.18-194.26.1.el5.028stab079.2 but im unsure how to go about rebuilding it is there any guides or anything about that?

    a *very* quick guide
    you can change the details to suit your environment
    # = run as root
    $ = run as regular user
    # pacman -S abs
    # abs
    $ mkdir -p ~/abs/core/glibc
    $ cp -R /var/abs/core/glibc ~/abs/core/glibc
    $ cd ~/abs/core/glibc
    $ vi PKGBUILD
    modify the --enable-kernel line so it reads 2.6.18
    $ makepkg
    # pacman -U <your new glibc package>.xv
    You might also want to add glibc to the ignorepkg line in pacman.conf.  That way, you'll just be notified when a new version is out and you can repeat all of this.  You don't need to resync the entire abs tree though, the following command will do it for one package
    # abs core/glibc
    One other tip - make sure you have a copy of the regular glibc package before making any changes just to be safe
    Last edited by oliver (2011-03-02 21:17:24)

  • Building glibc with older required kernel version

    I need my glibc to support kernels back to linux-2.6.18, and Arch recently bumped the required kernel version up to 2.6.27. If I build the glibc PKGBUILD out of ABS, changing the kernel-version argument to glibc's configure to 2.6.18, will that be enough to restore support or will I have to build an entire new toolchain/make other changes?
    Thanks for any advice.

    That should be enough.

  • How do I install 32 bit gcc on a OEL 5.8 64 bit system

    Hi,
    How do I install 32 bit gcc on a OEL 5.8 64 bit system
    the command to check whether the required versions of the 32-bit and 64-bit glibc packages are installed is as follows:
    rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE}-%{ARCH}\n' packagename
    while I understand the package name is gcc, how do I know the name for its 32 bit counterpart?
    thanks

    Hi dude thanks a lot,
    my objective: install oracle 10gr2 on oel 5.8 remotely. I've set up a virtualbox for oel 5.8
    but right now I encountered another problem,
    enterprise manager configuration failed due to the following error - invalid value null for parameter PORT
    from Unable to start enterprise management console
    and have rebuild the repository
    oracle@source ~]$ emca -repos create
    STARTED EMCA at Aug 30, 2012 6:00:08 AM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: orcl
    Listener port number: 1521
    Password for SYS user:
    Password for SYSMAN user:
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Aug 30, 2012 6:00:28 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/orcl/emca_2012-08-30_06-00-08-AM.log.
    Aug 30, 2012 6:00:28 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Aug 30, 2012 6:00:28 AM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Aug 30, 2012 6:00:28 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/orcl/emca_repos_create_<date>.log for more details.
    Aug 30, 2012 6:00:28 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/orcl/emca_2012-08-30_06-00-08-AM.log for more details.
    Could not complete the configuration. Refer to the log file at /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/orcl/emca_2012-08-30_06-00-08-AM.log for more details.
    [oracle@source ~]$
    details for u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/orcl/emca_2012-08-30_06-00-08-AM.log is as follow
    Aug 30, 2012 6:00:28 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/orcl/emca_2012-08-30_06-00-08-AM.log for more details.
    Aug 30, 2012 6:00:28 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error creating the repository
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:194)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    118,1 Bot
    here's my /etc/hosts profile
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1          localhost.localdomain localhost
    ::1          localhost6.localdomain6 localhost6
    #92.242.132.18          source.localdomain source
    192.168.0.211          source.localdomain source
    here's my ifconfig settings
    [oracle@source ~]$ /sbin/ifconfig
    eth0 Link encap:Ethernet HWaddr 08:00:27:EE:68:57
    inet addr:192.168.0.211 Bcast:192.168.0.255 Mask:255.255.255.0
    inet6 addr: fe80::a00:27ff:feee:6857/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:180055 errors:0 dropped:0 overruns:0 frame:0
    TX packets:323764 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:26740364 (25.5 MiB) TX bytes:62621397 (59.7 MiB)
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:18198 errors:0 dropped:0 overruns:0 frame:0
    TX packets:18198 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:22512862 (21.4 MiB) TX bytes:22512862 (21.4 MiB)
    would really appreciate some one could really guide me what's the solutions to the above EM confugration problem as I'm run out of ideas.
    thanks a lot!

  • I had an old version of firefox & it made me upgrade to a newer version, however once I upgraded it said it does not work with my Mac that is a OS 10.4 & not I cannot access or download firefox, how can I download a older version for my Mac?

    I had firefox on my computer and it made me download the newer version, but once I downloaded it, it said it does not work on my computer which is a Mac OS 10.4 and now I cannot use firefox at all on my computer. How do I download an older version that will work on my computer?

    As of Firefox 4.0 and newer one needs at least OSX 10.5+ and Intel hardware.
    The latest you can use on your Intel with OSX 10.4.11 is Firefox 3.6.25 (released recently) which can be found at http://www.mozilla.org/en-US/firefox/all-older.html
    If you were to update to say OSX 10.5.8 then you can use Firefox 9.0.1

  • How do I access an older version in the App Store?

    Does anyone know how do I access an older version of FCP X in the App Store to reinstall on an older computer that won't support this latest version? I recall minimum spec on older version being 2GB RAM (4GB recommended). Now it's 4GB minium (8GB recommended) and I cant install via my Apps Store account. I know upgrading RAM is an option but I am looking to get back the version I had running before I had to wipe & reinstall the laptop this past week as I'd prefer not to have to send money on this older machine (2008 unibody MacBook with 3GB RAM)
    Thanks in advance for any help/advice (or offers of cheap but reliable UK based RAM sources)

    iBungie,
    I hate to say this, but Apple would like you to buy, a new MacBook, or iMac, or new Mac Pro
    That way, you can do, what they want you, to do.
    I've noticed a change in their business practices, over the last 4 yrs.
    I tried to update to FCPX.1, but was told I would have to update the OS to 10.9 from 10.7.
    When I updated from 10.6.x to 10.7 I lost the use of 5 3rd party software programs.
    I do not want to lose, the use of other programs, by updateing the OS to 10.9.
    Been a Mac user for over 25 yrs. Lived in Cupertino before and during the growth of Apple.
    Meet both Woz & Jobs, during the late 70's & early 80's.
    If you can afford a new system, then do. If not, look at systems from around 2012 that can handle the RAM, plus they will still have optic drives and hard drives. I have clients that want a disk.
    Any way good luck.
    RussA

  • HOW DO I GET THE OLDER BROWSER BACK???

    ORIGINAL REVISED QUESTION =
    AFTER ALL THAT ~ going through the whole MESS you have created and YOU TELLING ME that "in order to have a chance of getting my question answered ~ to give you ALL THE DETAILS I CAN", you REFUSE to accept is by saying, "Please keep the length of your question to 255 characters or less ..."!!! Are you INCAPABLE of saying that BEFORE I go through all the other MESS??? HOW DO I GET THE OLDER BROWSER BACK???
    ORIGINAL QUESTION = I had SEVERAL plugins that WORKED!!! Then, I "upgraded" {as you, LAUGHINGLY, claim} to your Firefox 4 version after being promised by you that it's BETTER and, supposedly, an IMPROVEMENT over the older version. After I installed the NEW one ~ IT TURNED OFF ALL MY PREVIOUS PLUGINS!!! Your WISHTHEYWUZ "PROGRAMMERS", very cleverly {and, actually, HATEFULLY} ummmm, kinda "forgot" to make the new browser BACKWARD-COMPATIBLE so that it didn't DESTROY everything we, already, had ~ that WORKED before YOU got hold of it!!! So, now, *HOW* do I get the OLDER version back??? I think you should KNOW what you can do with this newer "UPGRADE" that is, actually, a LIE!!! UPGRADES do NOT take you in REVERSE ~ making things WORSE ~ real upgrades make things BETTER!!! DUH-H-H-H!!!
    ORIGINAL DETAILS =
    I, recently, purchased a new HP 4500 Printer and it came with a video-capture extension/plugin. Attempting to use it, the program informed me that I needed to be using, either, an EI or a Firefox Browser mentioning version 1.5 {I think it was} or later. The Firefox browser I was using was 3.something; so, everything was going along FINE. When I installed the video capture program, it added the plugin to the browser ~ PERFECTLY!!! I, also, had MANY other plugins that worked and that I used somewhat regularly!!! NOT ANY MORE!!! YOU and your TOTALLY INEPT, WISHTHEYWUZ "PROGRAMMERS" have STOLEN nearly HALF of my COMPUTER!!! I can, no longer, USE ANY OF THOSE PLUGINS, simply, because YOU "forgot" {let's say} to INCLUDE them in your new browser version 4. WHAT WAS WRONG WITH THEM??? WHY DIDN'T *YOU* WANT ME TO BE ABLE TO USE THEM, ANY LONGER???
    Apparently, YOU think that the computer world revolves around YOU and that YOU are its AXIS!!! You feel that YOU have NO RESPONSIBILITY to make YOUR programs in any way compatible with what is, already, available ~ according to the "advice" I noticed on one of YOUR pages WHILE REACHING THIS ONE, you said that everybody else must accommodate YOUR claimed "improvements" that do nothing but DESTROY!!!
    All I want is for YOU to, either, MAKE YOUR VERSION 4 COMPATIBLE; or, advise me on HOW to get the EARLIER version back that *IS* compatible. Otherwise, I'll switch to a different browser and advise all others over whom I have any influence to do the same for the sake of their overall computering enjoyment!!!
    PLEASE ADVISE!!!
    I see that you have provided {below this window} a space for, likely, a SINGLE Extension / Plugin. Therefore, a PARTIAL LIST follows ~
    ArcSoft Video Downloader Extension 2.0.0.8
    Copy to Wordperfect Lightning 1.0
    Google Photos Screensaver 2.0
    HP Smart Web Printing 4.5
    iWinGames Plugin 1.5
    Microsoft.NET Framework Assistant 1.2.1
    RAW Thumbnail Viewer 2.0.0.11
    Real Player Browser Record Plugin 1.1.3
    TVU Web Player 2.5.3.1
    Yahoo! Toolbar 2.1.3.20100310105313

    THANK YOU, TREMENDOUSLY, for the responsive information!!! Although, the WISHTHEYWUZ "programmers" and those that are, actually, controlling and "in charge" of this website ~ you know who I mean ~ those that are so SUPERB at, ONLY, "PASSING THE BUCK" in order to get the regular USERS to answer the questions directed at THEM {as mine was}!!! In that way, of course, they EVADE countless issues and what would be EXTREME PANGS OF GUILT to anyone that "stood responsible" for their actions!!! Regardless, even though, "THEY" continued to lay the blame for the SHODDINESS & EXTREME INEPTNESS OF *THEIR* PROGRAMMING ATTEMPTS onto others ~ the links that *YOU* were kind enough to share with me *DID*, in fact, get my older ~ MUCH MORE USABLE browser back!!! Of course, NOW, the shoddy WISHTHEYWUZ "PROGRAMMERS" have rigged everything so that I will be HOUNDED and HARASSED in order to try to FORCE the crappy version 4 back onto me!!! I, still, wanna provide YOU with all the ACCOLADES possible!!! Your desire to attempt to HELP OTHERS is, truly, a remarkable characteristic in today's world of SELFISHNESS and UNGODLY attitude problems!!!

  • I have a 3rd gen Ipod touch and when i connect it to my Macbook pro to sync it with itunes, it doesn't show up on iTunes. When I connect my iPhone 6 to my computer it syncs, backs up, ect. How do I connect this older iPod to my iTunes?

    I have a 3rd gen Ipod touch. When I connect it to my Macbook pro to sync it with itunes, it doesn't show up on iTunes. When I connect my iPhone 6 to my computer it syncs, backs up, ect. How do I make this older iPod show up on my iTunes?

    Hi ChristianHelpplz,
    Thanks for visiting Apple Support Communities.
    It seems like your iPod touch is not recognized by iTunes on your Mac, but your iPhone 6 is working normally.
    I recommend starting with these steps to troubleshoot your iPod touch and connection with your Mac:
    Check your USB connections
    Unplug other USB devices from your Mac and try again.
    Try a different USB port.
    Try a different USB cable.
    Restart your device
    Restart your iOS device or reset your iPod.
    Restart your Mac
    Turn your Mac off and back on.
    Update your software
    Check for software updates on your Mac.
    Check for an iTunes update.
    Check your security software
    If you have security software installed, learn how to resolve issues between iTunes and your security software.
    From:
    If you don't see your connected device in iTunes for Mac - Apple Support
    If you've tried these steps and your iPod touch is still not recognized, try placing it into Recovery Mode next:
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support
    Sincerely,
    Jeremy

  • How can I remove an older version of iTunes ao I can download 10.3.1?

    How can I remove an older version of iTunes from my PC in order to down load 10.3.1?

    You shouldn't need to.  Just update the iTunes application or download the newest version from here.
    http://www.apple.com/itunes/download/
    B-rock

  • How can I get an older version of ibooks?

    Sorry if this question has previously been answered....I cant find a direct answer.
    I purchased a 1st gen ipad in pristine condition.  Unfortunately I cannot find an older version of ibooks anywhere. istore will not allow me to install the newer version because of compatibility issues. ( I have OS 5.1.1 ) I am not offered a compatible version through the store. Reading is important to me and I love the ipad. Is there anything I can do?  Thanks in advance.

    HI! I have a somewhat similar problem I have an iPad with an iOS 5. I already have downloaded the iBooks and been using it for a long time. The problem is that i used my Apple ID on an iPhone 4 with an updated iOS 7 and downloaded iBooks on that device. When i checked my iPad, i can't access the iBooks anymore. It started to reinstall by itself but it is only installing halfway. Same problem i have with my Twitter app. I have already logged out my Apple ID on the iPhone 4 and tried to reinstall iBooks on my iPad but its says that it is already iBook 3 and that it is only compatible with iOS 7. How can I reinstall the older version of iBooks without losing all the books that I have placed on it? Please, i badly need your help. Thank you!

  • How can i get an older Version of numbers?

    Good evening to everybody. My problem: Numbers will not be load on my mac book air. Version in App Store is just for 0Sx 10.9 or higher. But my Mac is 0SX 10.8.5. How can i get an older version????

    iWork '09, the version prior to the current major version, is still available on Amazon.  But I just noticed there are only a few left in stock.  Price is $26.99.  It may be worth the price if you use one or more of these apps regularly.  A large number of features have been removed from the latest version (10.9.x) in order to make it compatible with the iOS version.

  • How can I restore an older version (before the sync)?

    I'm using Numbers on my iPad and my Macbook.
    Yesterday I opened my Macbook and for some reason it opened the Numbers app but didn't sync.
    I didn't really need to work on the file so I just left it open.
    A few hours later I wanted to do some work on my iPad.
    It prompted me with a "there's a newer version on your Macbook" and asked me if I want to sync to that version.
    I actually forgot I didn't do any work on my computer and tapped on the sync button.
    Now I lost all of the information since before the sync.
    How can I restore the older version on the iPad - before the sync?

    From your last backup.
    Barry

  • HT3384 I am using Pages v 5.2. How do I convert my older Pages documents to 5.2? When I try to open them I get a notice that I have to use a newer version, which I already have. So I have to go to the "Open with" menu and click on Pages 5.2. Happens every

    Every time I want to open a document created in an older version of Pages, I have to right click and select "Open with Pages (default) (5.2). Then it will open but when I close it it is still the old version. I want to be able to simply double click the document I want and have it open. How can I make those older documents into v. 5.2? Any help greatly appreciated. Thank you.

    You are opening the old Pages version by mistake. This version is kept after installing the most recent Pages version in case you want to use it again, and I recommend you not to delete it.
    I recommend you to put the new Pages version in a place where you can open it easily, for example, in the Dock. The only thing you have to do is to go to Applications folder (open a Finder window and choose Applications in the sidebar), and drag Pages to the Dock. The new Pages version has got this icon:
    After putting Pages in the Dock, open it and access to all your documents. They will be converted to Pages 5.2 format if they were not opened with Pages 5.2 before.

  • How do I reinstall an older version of the software on my IPod touch?  Installed the latest update and now it no longer works in my car

    How do I reinstall an older version of the software on my IPod touch?  Installed the latest update and now it no longer works in my car.

    I'm sorry, but Apple does not provide a downgrade path for iOS. Because downgrading is unsupported by Apple we cannot discuss it on these forums.
    You may leave comments at Apple Feedback.

  • I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    You don't. Since you have an Intel Mac, buy a Mac OS X 10.6 DVD from the online Apple Store.
    (71894)

Maybe you are looking for

  • NOOB: Simple button to insert a new row...

    I have a two column database table. It is displayed on an interactive report in two columns. I want to create a new row via button with the values of "new" "new" in the two fields. I was thinking this should be pretty simple however have not found th

  • How do i change the icloud account on my iphone to a different existing account

    I have a business iPhone 5S on which the iTunes account is associated with the Apple ID I signed up for using my business e-mail. I signed in to iCloud with a personal Apple ID account to get some of my personal music onto the device. I have been try

  • Message when installing itunes?

    When im installing itunes, a message pops up stating "Service "Ipod Service" could not be stopped. Verify that you have sufficient privelages to stop system services." Does anyone know the cause of this and how it can be fixed? Thanks.

  • In Design View, not seeing PHP includes

    I'm on a new Vista laptop using DW CS3, and pages whose contents displayed in Design View before aren't displaying in Design View. They're PHP pages with some includes, such as this one: http://www.miraverse.com/manifold20/studio/music-room.php In De

  • Multiple Columns in MiniTOC

    In RoboHelp 9, I know the MiniTOC is pretty much locked down tight so that it's manipulation is quite limited, but is there a way to create a minitoc that displays the items in columns? Some topics have many headings that are included in the MiniTOC