| 1 | <?xml version='1.0' encoding="UTF-8"?> |
1 | <?xml version='1.0' encoding="UTF-8"?> |
| 2 | <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> |
2 | <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> |
| 3 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-upgrading.xml,v 1.35 2006/11/09 07:00:18 nightmorph Exp $ --> |
3 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-upgrading.xml,v 1.36 2007/01/10 07:29:40 nightmorph Exp $ --> |
| 4 | |
4 | |
| 5 | <guide link="/doc/en/gentoo-upgrading.xml"> |
5 | <guide link="/doc/en/gentoo-upgrading.xml"> |
| 6 | <title>Gentoo Upgrading Guide</title> |
6 | <title>Gentoo Upgrading Guide</title> |
| 7 | |
7 | |
| 8 | <author title="Author"> |
8 | <author title="Author"> |
| … | |
… | |
| 18 | |
18 | |
| 19 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
19 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
| 20 | <!-- See http://creativecommons.org/licenses/by-sa/2.5 --> |
20 | <!-- See http://creativecommons.org/licenses/by-sa/2.5 --> |
| 21 | <license/> |
21 | <license/> |
| 22 | |
22 | |
| 23 | <version>2.6</version> |
23 | <version>2.7</version> |
| 24 | <date>2006-11-08</date> |
24 | <date>2007-01-09</date> |
| 25 | |
25 | |
| 26 | <chapter> |
26 | <chapter> |
| 27 | <title>Gentoo and Upgrades</title> |
27 | <title>Gentoo and Upgrades</title> |
| 28 | <section> |
28 | <section> |
| 29 | <title>Philosophy</title> |
29 | <title>Philosophy</title> |
| … | |
… | |
| 321 | <section> |
321 | <section> |
| 322 | <title>Updating to 2006.1</title> |
322 | <title>Updating to 2006.1</title> |
| 323 | <body> |
323 | <body> |
| 324 | |
324 | |
| 325 | <p> |
325 | <p> |
|
|
326 | If you intend to upgrade to this profile, you should be aware that it expects |
|
|
327 | the system to be set to a Unicode locale by default; specifically that |
|
|
328 | UNICODE="yes" is set in <path>/etc/rc.conf</path>. For this to work, you must |
|
|
329 | have created a Unicode locale for your system to use. Please read our <uri |
|
|
330 | link="/doc/en/utf-8.xml">UTF-8 guide</uri> to learn how to create the proper |
|
|
331 | locale. |
|
|
332 | </p> |
|
|
333 | |
|
|
334 | <p> |
|
|
335 | Alternatively, if you do not wish to set a locale, you should specify |
|
|
336 | UNICODE="no" in <path>/etc/rc.conf</path>, and re-emerge <c>baselayout</c> (or |
|
|
337 | wait until your next <c>baselayout</c> update) with the <c>-unicode</c> USE |
|
|
338 | flag. You can set <c>-unicode</c> just for <c>baselayout</c>, or you can set it |
|
|
339 | globally for all packages by adding it to your USE variable in |
|
|
340 | <path>/etc/make.conf</path>. |
|
|
341 | </p> |
|
|
342 | |
|
|
343 | <pre caption="Optional: removing Unicode support"> |
|
|
344 | <comment>(To remove Unicode support just for baselayout)</comment> |
|
|
345 | # <i>echo "sys-apps/baselayout -unicode" >> /etc/portage/package.use</i> |
|
|
346 | # <i>emerge -a baselayout</i> |
|
|
347 | |
|
|
348 | <comment>(To remove Unicode support from your whole system)</comment> |
|
|
349 | # <i>nano -w /etc/make.conf</i> |
|
|
350 | USE="-unicode" |
|
|
351 | # <i>emerge -a baselayout</i> |
|
|
352 | </pre> |
|
|
353 | |
|
|
354 | <p> |
| 326 | To switch to the 2006.1 profile, point the <path>/etc/make.profile</path> |
355 | To switch to the 2006.1 profile, point the <path>/etc/make.profile</path> |
| 327 | symlink to the new location. Make sure your Portage is updated before you |
356 | symlink to the new location. Make sure your Portage is updated before you |
| 328 | change your profile. |
357 | change your profile. |
| 329 | </p> |
358 | </p> |
| 330 | |
359 | |