8,533
edits
(Created page with "Первое, что Вы должны сделать, это создать директорию для работы и перейти в нее с помощью cd. Это...") Tags: Mobile web edit Mobile edit |
(Updating to match new version of source page) |
||
Line 16: | Line 16: | ||
Первое, что Вы должны сделать, это создать директорию для работы и перейти в нее с помощью cd. Это поможет организовать работу. | Первое, что Вы должны сделать, это создать директорию для работы и перейти в нее с помощью cd. Это поможет организовать работу. | ||
mkdir -p ~/work/ | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=mkdir -p ~/work/}} | |||
</div> | |||
==2. Обновите свою систему== | ==2. Обновите свою систему== | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
To update your system | To update your system | ||
</div> | |||
sudo pacman -Syu | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=sudo pacman -Syu}} | |||
</div> | |||
==3. Установите ManjaroISO== | ==3. Установите ManjaroISO== | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
Next, install manjaroiso without its profiles: | Next, install manjaroiso without its profiles: | ||
</div> | |||
sudo pacman -S manjaroiso | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=sudo pacman -S manjaroiso}} | |||
</div> | |||
==4. Клонируйте с Github== | ==4. Клонируйте с Github== | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
The latest code for ManjaroISO is available on [https://github.com/manjaro/manjaroiso/ Github]. | The latest code for ManjaroISO is available on [https://github.com/manjaro/manjaroiso/ Github]. | ||
There is the "master" branch and the "development" branch available. | There is the "master" branch and the "development" branch available. | ||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
The "'''master'''" branch is meant for creation of install-medias based on the latest '''stable''' Manjaro release. | The "'''master'''" branch is meant for creation of install-medias based on the latest '''stable''' Manjaro release. | ||
Clone ManjaroISO directly from Github to your work directory: | Clone ManjaroISO directly from Github to your work directory: | ||
</div> | |||
git clone https://github.com/manjaro/manjaroiso.git ~/work/manjaroiso | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=git clone https://github.com/manjaro/manjaroiso.git ~/work/manjaroiso}} | |||
</div> | |||
The "'''development'''" branch contains code for ''buildiso'' to build a '''RC''' or '''pre''' release install-media. Additionally, it contains more ManjaroISO profiles. | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
The "'''development'''" branch contains code for ''buildiso'' to build a '''RC''' or '''pre''' release install-media. Additionally, it contains more ManjaroISO profiles. | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
Attention: Not all ManjaroISO profiles in the "development" branch work and it can contain more bugs. Usually, it is updated more often, too. | Attention: Not all ManjaroISO profiles in the "development" branch work and it can contain more bugs. Usually, it is updated more often, too. | ||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
Clone ManjaroISO from the "development" branch on Github: | Clone ManjaroISO from the "development" branch on Github: | ||
</div> | |||
git clone -b development https://github.com/manjaro/manjaroiso.git ~/work/manjaroiso | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=git clone -b development https://github.com/manjaro/manjaroiso.git ~/work/manjaroiso}} | |||
</div> | |||
==Обновления== | ==Обновления== | ||
Immediately after you have cloned the code from Github - as described in the last chapter - your ManjaroISO is up-to-date. When you wait a couple of days or longer, it is recommended to update. | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
Immediately after you have cloned the code from Github - as described in the last chapter - your ManjaroISO is up-to-date. When you wait a couple of days or longer, it is recommended to update. | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
An update pulls the latest changes from Github and puts them in your <code>~/work/manjaroiso</code> directory. Therefore, the following commands make sense. | An update pulls the latest changes from Github and puts them in your <code>~/work/manjaroiso</code> directory. Therefore, the following commands make sense. | ||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
First, you have to make sure you are in the directory you cloned the code from Github: | First, you have to make sure you are in the directory you cloned the code from Github: | ||
</div> | |||
cd ~/work/manjaroiso | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=cd ~/work/manjaroiso}} | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
Use this "update" command, if you cloned from the master branch: | Use this "update" command, if you cloned from the master branch: | ||
</div> | |||
git pull origin master | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=git pull origin master}} | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
Use this "update" command, if you cloned from the development branch: | Use this "update" command, if you cloned from the development branch: | ||
</div> | |||
git pull origin development | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{UserCmd|command=git pull origin development}} | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
These "update" commands do '''not''' overwrite any changes you have made to files. | These "update" commands do '''not''' overwrite any changes you have made to files. | ||
</div> | |||
==Различия== | ==Различия== | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
In comparison to the other way to install [[ManjaroISO]], there are a couple more files and directories in your <code>~/work/manjaroiso/</code> folder. But other than that, everything works the same. | In comparison to the other way to install [[ManjaroISO]], there are a couple more files and directories in your <code>~/work/manjaroiso/</code> folder. But other than that, everything works the same. | ||
</div> | |||
Now, you can modify your ManjaroISO profile and use ''buildiso'' to build your own install-media as described [ | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
Now, you can modify your ManjaroISO profile and use ''buildiso'' to build your own install-media as described [[ManjaroISO#Modifying_a_ManjaroISO_Profile|here]]. | |||
</div> | |||
[[Category:Contents Page{{#translation:}}]] | [[Category:Contents Page{{#translation:}}]] | ||
[[Category:ISO{{#translation:}}]] | [[Category:ISO{{#translation:}}]] |