Translations:How To Build Linux Kernel/2/en: различия между версиями

Материал из Wiren Board
(Новая страница: «'''0.''' The kernel should be built on your Linux desktop (not on the Wiren Board - theoretically it is possible, but it will require several gigabytes of free sp…»)
 
м (FuzzyBot переименовал страницу Translations:Сборка ядра/2/en в Translations:How To Build Linux Kernel/2/en без оставления перенаправления: Часть переводимой страницы Сборка ядра.)
 
(нет различий)

Текущая версия на 05:36, 31 мая 2021

Определение сообщения (How To Build Linux Kernel)
'''0.''' Сборку ядра следует проводить на вашем настольном компьютере под управлением Linux (не на Wiren Board - теоретически это возможно, но потребует несколько гигабайт свободного места, и займёт много времени).
Убедитесь, что у вас установлен git (http://en.wikipedia.org/wiki/Git_%28software%29). Если нет, установите его:<pre>
sudo apt-get install git
</pre>
Установите произвольные имя пользователя и почту:
<pre>
git config --global user.name "Imya Familiya"
git config --global user.email "vash@adres.ru"
</pre>

0. The kernel should be built on your Linux desktop (not on the Wiren Board - theoretically it is possible, but it will require several gigabytes of free space, and will take a long time).

Make sure you have git installed(http://en.wikipedia.org/wiki/Git_%28software%29). If not, install it:

sudo apt-get install git

Select a random user name and email:

git config --global user.name "Imya Familiya"
git config --global user.email "vash@adres.ru"