Error failed to setup chroot mnt

Темы: 1

Темы:

1

Сообщения:

12

Участник с: 07 ноября 2018

Добрый день.
Решил установить себе второй осью арч на xiaomi air.
Столкнулся со следующей проблемой (пункт #9)

1. Проверил режим EFI.
2. Подключился к интернету
3. Провел синхронизацию системных часов
4. Разметил диск с помощью cfdisk.
5. Произвел форматирование и подключение:
#root
mkfs.ext4 /dev/sda5 -L «ARCH»
mount /dev/sda5 /mnt

#boot
mkdir -p /mnt/boot
mount /dev/sda2 /mnt/boot

#swap
mkswap /dev/sda6
swapon /dev/sda6

6.Обновил пакеты
pacman -Syy
7.Установил базовую систему и пакет для будущего использования AUR.
pacstrap /mnt base base-devel
8. Генерирую fstab
genfstab -L -p -P /mnt >> /mnt/etc/fstab

(!!!)9. Пытаюсь перейти в систему
arch-chroot /mnt
и-и-и.. «chroot: failed to run command /bin/bash: No such file or directory»

Собственно, в первый раз установка завершилась некорректно (умерла батарея).
Возможно, проблема в этом.

Читал подобные темы — в них люди пропускали те или иные пункты установки, что решалось банальным следованием инструкции.
Аналогично пробовал листать маны по расформатированию (особых успехов не принесло).

Собственно, прошу помощи в решении проблемы или указании на возможные причины моих ошибок.

UPD:
pacstrap /mnt/ base base-devel скачивает все пакеты, проверяет, после чего выдает ошибку.
error: failed to commit transaction (conflicting files)
amd-ucode: /mnt/boot/amd-ucode.img exists in filesystem.
linux: /mnt/boot/vmlinuz-linux exists in filesystem

P.S. Ставлю Арч вместе с виндой (диск разбивал), в качестве boot — sda2 указывал раздел системный, общий с виндой.
Так понимаю, где-то там остались не удаленные файлы.
Есть ли рекомендации, как попасть в EFI System винды, под который отдельно выделено 100 мб и вычистить файлы с первой неудачной установки?
P.P.S. Устанавливал бут менеджер в первый «неудачный» раз:
pacman -S efibootmgr iw wpa_supplicant dialog
bootctl install
pacman -S intel-ucode
nano /boot/loader/entries/arch.conf
и в нем отредкатировал на
«title Arch Linux
linux /vmlinuz-linux
initrd /intel-ucode.img
initrd /initramfs-linux.img
options root=/dev/sda5 rw»

После неудачной установки и попыток новой первым делом в последовательности запуска системы efibootmgr удалил арч.
Неужели проблема в файлах на системном разделе винды? Если да, то как же их убрать?

Содержание

  1. Arch Linux
  2. #1 2019-01-03 14:21:59
  3. can’t umount /mnt because /mnt/dev is busy
  4. #2 2019-01-03 14:25:46
  5. Re: can’t umount /mnt because /mnt/dev is busy
  6. #3 2019-01-03 14:34:58
  7. Re: can’t umount /mnt because /mnt/dev is busy
  8. Не входит в chroot
  9. Arch Linux
  10. #1 2020-11-09 08:12:19
  11. ISO 2020 cant mount arch-chroot
  12. #2 2020-11-09 08:28:44
  13. Re: ISO 2020 cant mount arch-chroot
  14. #3 2020-11-09 08:33:12
  15. Re: ISO 2020 cant mount arch-chroot
  16. #4 2020-11-09 14:27:01
  17. Re: ISO 2020 cant mount arch-chroot
  18. Login incorrect. Первая установка.
  19. Arch Linux
  20. #1 2017-09-21 10:45:54
  21. [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys
  22. #2 2017-09-21 10:57:39
  23. Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys
  24. #3 2017-09-21 11:00:31
  25. Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys
  26. #4 2017-09-21 11:14:59
  27. Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys
  28. #5 2017-09-21 11:17:57
  29. Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys
  30. #6 2017-09-21 11:40:58
  31. Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys
  32. #7 2017-09-21 11:59:31
  33. Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys
  34. #8 2017-09-21 12:16:38
  35. Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

Arch Linux

You are not logged in.

#1 2019-01-03 14:21:59

can’t umount /mnt because /mnt/dev is busy

Hello everyone.
I am installing Arch Linux on an old laptop and I have ran into an error.
After exiting from the new system, I cannot unmount /mnt.
When I run

, the following is output:

If I try to chroot to the new system, I get the following error:

I checked each tty and none were using the mount.
I ran

, and I got the following:

I am using gpt and my partitions are as follows:
/dev/sda1 200M, for boot
/dev/sda2 9G, swap
/dev/sda3 30G, for /
/dev/sda4 659G, for /home
/dev/sda5 2M, BIOS boot

One note is that after I created the filesystems and swap, I went back and deleted /dev/sda4, created a new partition in the same place but a little smaller, and then said NO when asked if I would like remove the signature. I then created /dev/sda5 and set it to BIOS boot type. (so that I was able to install grub). Since then, I haven’t done anything related to partitioning or mounting.
Any help would be appreciated.

Last edited by LonelyPyxel (2019-01-03 14:26:51)

#2 2019-01-03 14:25:46

Re: can’t umount /mnt because /mnt/dev is busy

You are probably using the respective mount point as working directory within some shell session.

Солідарність з Україною

#3 2019-01-03 14:34:58

Re: can’t umount /mnt because /mnt/dev is busy

after I created the filesystems and swap, I went back and deleted /dev/sda4, created a new partition in the same place but a little smaller

Did you do all of this before you chrooted? Or did you do any of these steps from within the chroot?

«UNIX is simple and coherent. » — Dennis Ritchie, «GNU’s Not UNIX» — Richard Stallman

Источник

Не входит в chroot

имеется арч, i3wm. Смонтировал псевдосистемы командами:

Хотел засадить систему на флешку через ‘chroot’, но выдает ошибку

bash обычно динамически слинкован, все библиотеки скопировали в chroot?

А либы свои bash из астрала возьмет?

Из мана по установке с арчевики.

ну так я то из системы, как я тебе pacstrap сделаю?

какие либы нужно скопить?

Никакие, используй тот shell, что там есть. Т.е. заместо

ёпрст, вы неверна меня не поняли, флешка пустая. я хочу на флешку из системы поставить систему.

chroot нужно куда-то делать, т.е. не в пустую директорию, а в директорию где есть какая-то базовая система Linux.

Если у вас arch linux, то почитайте инструкцию по его установке, в начале вам надо скачать архив базовой системы, распаковать его на подготовленную файловую систему и уже затем согласно документации делать chroot.

Просто так скопировать в пустую директорию bash и потом сделать туда chroot у вас не получится.

Источник

Arch Linux

You are not logged in.

#1 2020-11-09 08:12:19

ISO 2020 cant mount arch-chroot

# arch-chroot /mnt /bin/bash
==> WARNING: /mnt is not a mountpoint. This may have undesirable side effects.
mount: /mnt/proc: mount point does not exist.
==> ERROR: failed to setup chroot /mnt

# arch-chroot /mnt
==> WARNING: /mnt is not a mountpoint. This may have undesirable side effects.
mount: /mnt/proc: mount point does not exist.
==> ERROR: failed to setup chroot /mnt

Last edited by Paratrupper (2020-11-09 08:25:25)

#2 2020-11-09 08:28:44

Re: ISO 2020 cant mount arch-chroot

The message seems quite self explanatory no? Is the disk actually mounted and did you pacstrap the base system? Which instructions are you following?

#3 2020-11-09 08:33:12

Re: ISO 2020 cant mount arch-chroot

I can’t mount disk

mount /dev/sda1 /mnt
mount: /mnt: unknown filesystem type ‘LVM2_member’.

How to fix it ? Debian was on this disc. I didn’t repartition the disk, just reformatted

Disk /dev/sda: 74.53 GiB, 80026361856 bytes, 156301488 sectors
Disk model: WDC WD800JD-00MS
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xd88f769a

Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 152143871 152141824 72.5G 83 Linux
/dev/sda2 152145918 156301311 4155394 2G 5 Extended
/dev/sda5 152145920 156301311 4155392 2G 82 Linux swap / Solaris
GPT PMBR size mismatch (1497751 != 1986557) will be corrected by write.
The backup GPT table is not on the end of the device.

Last edited by Paratrupper (2020-11-09 08:54:47)

#4 2020-11-09 14:27:01

Re: ISO 2020 cant mount arch-chroot

First, backup your personal data to somewhere else, and make sure you make the backup right.

Third, before the partitioning, use “wipefs -a” to clear that mess if you don’t know how it ended up like that nor what to do with it.

Remember, keep your backup safe.

Now that I said the obvious that you must have done until now, post the output of “lsblk”, use a pastebin client.
https://wiki.archlinux.org/index.php/Li … in_clients

If you have a more confortable way of doing so then go on, but I assumed that you have the live system and a cellphone.

Side note: before posting a wall of text, use
[ code ]
[ / code ]
tags, without the spaces and the content In between.

Last edited by GaKu999 (2020-11-09 14:33:30)

Источник

Login incorrect. Первая установка.

# 2 года, 4 месяца назад (отредактировано 2 года, 4 месяца назад)

Молодцом, у вас запускается pam и выводит сообщение об авторизации, дальнейшее это либо:
Что-то наменяли в pam.d
Либо на момент считывания файл passwd недоступен(зашифрован как вариант)
Либо в passwd не то что вы вводите.

Обычно советуют загрузиться в initramfs но при шифровани.

Проверьте все же на pacnew файлы.

Из системы (грузимся с опцией ядра «systemd.unit = rescue.target»)
Из чрута
И гляньте журнал
из чрута

# 2 года, 4 месяца назад (отредактировано 2 года, 4 месяца назад) # 2 года, 4 месяца назад (отредактировано 2 года, 4 месяца назад)

Droid007
failed to run command /usr/bin/zsh no such file or directory

indeviral
Либо на момент считывания файл passwd недоступен(зашифрован как вариант)

В принципе для проверки и исправления файлов чрут не обязателен, это просто если устанавливать доп пакеты.

Просто примонтируйте корень и проверьте журнал и etc на pacnew

vs220
В принципе для проверки и исправления файлов чрут не обязателен, это просто если устанавливать доп пакеты.

Просто примонтируйте корень и проверьте журнал и etc на pacnew

Я победил проблему, с логином, теперь и рут работает и мой профиль имеется и все нормально поставилось, дошел до установки судо, оболочки и прочих штук, и пропал интернет.
ping 8.8.8.8 выдает connect: Network is unreachable.
любая попытка скачать что либо через pacman выдает что-то из серии:
failed retrieving file ‘ ‘ from mirror .
failed to update community (invalid url for server)
failed to synchronize all databases
есть подозрения, что это дело в файле /etc/hosts у меня он выглядит следующим образом:
# Static table lookup for hostnames.
# See hosts(5) for details.
127.0.0.1 localhost
::1 localhost
127.0.1.1 droidarch

в нем ли проблема ? Я может что-то не правильно заполнил, или что-то другое может быть.

© 2006-2023, Русскоязычное сообщество Arch Linux.
Название и логотип Arch Linux ™ являются признанными торговыми марками.
Linux ® — зарегистрированная торговая марка Linus Torvalds и LMI.

Источник

Arch Linux

You are not logged in.

#1 2017-09-21 10:45:54

[SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

I followed the wiki about the usage of arch-chroot: https://wiki.archlinux.org/index.php/ch … rch-chroot
I’m doing this on a regular ArchLinux installation (no live system at all).

Here is what I’ve done:

1) I made sure the `arch-install-scripts` package was installed on my system
2) as root, I created a simple test folder in which I would like to have my chroot, like this: `# mkdir /mnt/testchroot`
3) as root, I simply ran the command suggested in the wiki: `# arch-chroot /mnt/testchroot`

And here is the result of the last command:

# arch-chroot /mnt/testchroot
mount: /mnt/testchroot/proc: mount point does not exist.
==> ERROR: failed to setup chroot /mnt/testchroot

From what I understood, this command (which is a script apparently) was supposed to mount `/proc` automatically.
Any clue about why it’s not the case ?

Last edited by cluxter (2017-09-21 12:18:22)

#2 2017-09-21 10:57:39

Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

Change root changes your root to an existing root filesystem, using the kernel you are currently running on. An empty directory doesn’t contain a root filesystem structure.

This looks like a XY problem what is it that you actually want to solve? Just a learning experience, or do you have any further plans with the chroot?

Last edited by V1del (2017-09-21 11:03:14)

#3 2017-09-21 11:00:31

Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

You need to actually install Arch into the directory before you can arch-chroot into it.

No, it didn’t «fix» anything. It just shifted the brokeness one space to the right. — jasonwryan
Closing — for deletion; Banning — for muppetry. — jasonwryan

#4 2017-09-21 11:14:59

Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

Thanks a lot for you fast answers. It really clarifies things!

@V1del: my goal is to run Firefox in a chroot because it has kept crashing again and again for months (!!) and I tried to trace the origin of these crashes and I came to the conclusion that it might come from a shared library issue (maybe something related to 32/64 bits or something). Same problem is happening with Chromium. I really tried many things to solve this issue but nothing successful so far.
EDIT: so isolating Firefox would at least help me to reduce the scope of the research.

@slithery: running this command returns:

# pacstrap /mnt/testchroot base
==> ERROR: /mnt/testchroot is not a mountpoint!

So my understanding is that I should mount «/» in this folder? But I doubt that running `# mount / /mnt/testarchroot` is a good idea, right?

I’m really trying to understand how this chroot thing works but it’s not that easy

Last edited by cluxter (2017-09-21 11:16:38)

#5 2017-09-21 11:17:57

Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

Sorry, I missed an option.

This will install a separate copy of Arch into your /mnt/testchroot folder.

Although the correct solution would be to post the error messages that Firefox is producing and fix it, a chroot is just a workaround.

Last edited by Slithery (2017-09-21 11:20:22)

No, it didn’t «fix» anything. It just shifted the brokeness one space to the right. — jasonwryan
Closing — for deletion; Banning — for muppetry. — jasonwryan

#6 2017-09-21 11:40:58

Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

Yeah just setting up a chroot is at best a workaround and depending on what the actual issue is, likely to be completely irrelevant.

You should open up a new thread containing information on your system (hardware, software versions involved etc), your environment (WM/DE maybe even the output of

) terminal output that firefox is producing when it crashes. Maybe you even get a coredump

will give you info on how you can examine these.

I’m going to leave this thread open if you want to further pursue anything related to the chroot, however the firefox issue should really be dealt with in a seperate manner.

Mod note: Not an installation issue, moving to NC

#7 2017-09-21 11:59:31

Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

First, you probably want systemd-nspawn not chroot.

There is even a heading for running firefox in an nspawn container which links to the firefox page with details on precisely how to do so:
https://wiki.archlinux.org/index.php/Fi … _container

I’m not sure how you didn’t find the firefox page when looking for a solution for a firefox problem.

Secondly, you probably don’t want systemd-nspawn.

Last edited by Trilby (2017-09-21 12:07:41)

«UNIX is simple and coherent. » — Dennis Ritchie, «GNU’s Not UNIX» — Richard Stallman

Online

#8 2017-09-21 12:16:38

Re: [SOLVED] ‘arch-chroot /mnt/testchroot’ fails on non live ArchLinux sys

Thank you for all your answers. I was able to make it work. Marking this issue as solved now.

I totally agree that it’s at best a workaround, even kind of a hack. But you’ve got to understand that having a browser that crashes

25-30 times a day is a pain in the ass, especially when you’re a front-end web developer.
So yes I do want to debug this the proper way and I’m going to do it. Meanwhile I needed a solution to avoid reinstalling Archlinux from scratch, for 3 reasons:

— I don’t want to reinstall my whole system just because of that
— reinstalling the whole system is not a fix
— I want to debug it to increase my skills and maybe to patch something if necessary (pretty unlikely though).

This temporary hack will help me to avoid throwing my laptop through the window while keeping my system up and running. Plus it’s easier to look for some info on the web when the browser remains open for more than 20 minutes!

@V1del: thank you for these 2 commands. I’ve never done any real deep debugging so I will start with these and dig further.

@Trilby: I did read the Firefox wiki page and I would have used systemd-nspawn if only I would have known what it was. Now that I know what systemd-nspawn is I will gladly use it. Thanks!

Источник

@fungalnet, below the chroot procedure for both standard and encrypted partition. I prefer the standard chroot approach (usable for ALL the platforms) than the personalized version, that I can never fully control :)

#——————————-#
#  Standard chroot      #
#——————————-#

This command manually Identify and Prepare the Installed Partition(s)

1. Open your terminal and start a root session: su

2. List all your partitions: lsblk -f

3. Mount your system partition. The syntax to mount the system partition is: mount /dev/[partition_to_mount] /mnt

Example: if the system partition is /dev/sda3, this will be mounted using the following command:  mount /dev/sda3 /mnt  if a separate partition /dev/sda1 has been used for the GRUB, mount it with the following command: mount /dev/sda1 /mnt/boot

4. Change to the root directory of your mounted partitions: cd /mnt

To complete the operation, and to mount completely the file system, it will be necessary to enter a series of commands in the following order:

mount -t proc proc /mnt/proc
mount -t sysfs sys /mnt/sys
mount -o bind /dev /mnt/dev
mount -o bind /run /mnt/run
mount -t devpts pts /mnt/dev/pts/

cp /etc/resolv.conf /mnt/etc/resolv.conf

chroot /mnt

DONE and now you are positioned on the chroot-ed file system, where all your command will act.

#———————————#
# LUKS Partition chroot #
#———————————#

1) Boot with a liveUSB

2) Open a Terminal session

3) Identify the hd partition: lsblk

In this example I suppose that:
/dev/sda1 is the /boot partition
/dev/sda2 is the LUKS encrypted partition

NOTE: replace sda1 or sda2 with the partition name that you get with the lsblk command

$ su
$ cryptsetup open —type luks /dev/sda2 root # where sda2 is the encrypted device
$ mount /dev/mapper/root /mnt
$ mount /dev/sda1 /mnt/boot # mount here the boot partition
$ mount -t proc proc /mnt/proc
$ mount -t sysfs sys /mnt/sys
$ mount -o bind /dev /mnt/dev
$ mount -o bind /run /mnt/run
$ mount -t devpts pts /mnt/dev/pts

$ cp /etc/resolv.conf /mnt/etc/resolv.conf

$ chroot /mnt

DONE also for an encrypted partition.

I hope this can help you.

Dimofey

1 / 1 / 1

Регистрация: 16.12.2013

Сообщений: 90

1

25.09.2016, 00:43. Показов 6536. Ответов 9

Метки нет (Все метки)


В общем решил установить арч на свой комп. Поделил диск на 3 раздела, один оставил винде, другой линуксу и третий для свопа. Далее примерно действовал инструкции за исключением доп разделов для home и root. Смонтировал диск

Bash
1
mount /dev/sda1 /mnt

, после этого

Bash
1
swapon /dev/sda2

. Далее я не скачивал новые пакеты из интернета, так как его нет и решил установить загрузчик, однако после неудачных попыток заметил странную ошибку, которая не гуглится в моем случае

Bash
1
2
 arch-chroot /mnt
Chroot: failed to run command /bin/bash: No such file or directory

Как ее исправить?

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



Модератор

Эксперт NIX

2792 / 2035 / 682

Регистрация: 02.03.2015

Сообщений: 6,509

25.09.2016, 09:38

2

Цитата
Сообщение от Dimofey
Посмотреть сообщение

/bin/bash: No such file or directory

Что из этой фразы вызывает стойкое непонимание? Или /mnt/bin/bash есть?



0



1 / 1 / 1

Регистрация: 16.12.2013

Сообщений: 90

25.09.2016, 11:30

 [ТС]

3

Marinero, я потом вручную сделал эту папку, но вылезла другая ошибка вроде permission denied. В любом случае, до этого ошибок не было, а подобные ошибки в инструкциях не предусмотрены.



0



Модератор

Эксперт NIX

2792 / 2035 / 682

Регистрация: 02.03.2015

Сообщений: 6,509

25.09.2016, 16:50

4

При чем здесь папка и «создание её в ручную»? Если Вы переходите в другую систему — то она как минимум должна быть на диске.



0



1 / 1 / 1

Регистрация: 16.12.2013

Сообщений: 90

25.09.2016, 17:34

 [ТС]

5

Marinero,

она как минимум должна быть на диске.

я её вообще-то устанавливаю, это один из пунктов в wiki и в инструкции на сайте. Я сомневаюсь, что после монтировки там есть система, ну может только несколько системных каталогов

Добавлено через 31 минуту
У меня вообще возникло подозрение, что арч в принципе не устанавливается без интернета или я ошибаюсь?



0



Marinero

Модератор

Эксперт NIX

2792 / 2035 / 682

Регистрация: 02.03.2015

Сообщений: 6,509

25.09.2016, 20:09

6

Пункты надо все выполнять, а не через один

Установим базовые пакеты

системы. В этот список вы можете добавить какие-нибудь нужные вам пакеты для установки.

Bash
1
# pacstrap -i /mnt base base-devel

После выполнения команды и выбора всех пакетов,

скачаются(около 150 Мб)

и установятся(около 130) последние версии необходимых пакетов.



0



23 / 22 / 3

Регистрация: 15.07.2016

Сообщений: 86

25.09.2016, 22:23

7

Как и написано в предыдущем комментарии, нужно сначала установить базовую систему в этому попку, а потом уже делать chroot. Выполняйте все пункты по порядку — установка ArchLinux.



0



1 / 1 / 1

Регистрация: 16.12.2013

Сообщений: 90

25.09.2016, 22:56

 [ТС]

8

Marinero, я этот пункт выполнил, просто он выдал кучу ошибок об отсутствии интернет соединения. Я так понял базовой системы в дистрибутиве нет? Он вообще все скачивает?

Добавлено через 9 минут
Tester01,

простите, эту фразу не понял, но она рассмешила



0



MadBittern

7 / 7 / 2

Регистрация: 12.11.2012

Сообщений: 203

30.09.2016, 15:24

9

Цитата
Сообщение от Dimofey
Посмотреть сообщение

Я так понял базовой системы в дистрибутиве нет?

Какой образ используете для установки случаем не NetBoot? Потому что в простом образе базовая система как раз есть!

>>Поделил диск на 3 раздела, один оставил винде, другой линуксу и третий для свопа.

Плохая идея ставить linux весь в один раздел, выделили хотя бы хомяку отдельный раздельчик.

Цитата
Сообщение от Dimofey
Посмотреть сообщение

Bash
1
2
arch-chroot /mnt
Chroot: failed to run command /bin/bash: No such file or directory
Bash
1
 

Выхлоп:

Bash
1
ls /mnt

в студию плиз.

Цитата
Сообщение от Dimofey
Посмотреть сообщение

выдал кучу ошибок об отсутствии интернет соединения.

Точно были выполнены все этпы?

Кликните здесь для просмотра всего текста

1 Загрузка
2 Перед установкой
2.1 Установка раскладки клавиатуры
2.2 Соединение с Интернетом
2.3 Синхронизация системных часов
2.4 Разбиение дисков на разделы
2.5 Форматирование разделов
2.6 Монтирование разделов
3 Установка
3.1 Выбор зеркал для загрузки
3.2 Установка основных пакетов
3.3 Настройка системы
3.4 Установка загрузчика
3.5 Перезагрузка
4 После установки

Если пройти по гайду сложно — установите majaro или google-> ArchLinux gui install



0



1 / 1 / 1

Регистрация: 16.12.2013

Сообщений: 90

04.10.2016, 13:46

 [ТС]

10

MadBittern, честно говоря я не знаю какой у меня дистрибутив, но я проблему решил обычным копированием файлов из существующего арча на виртуалке. Появилась другая проблема, которая однажды была в убунте, граб решил искать файлы не в том диске. И тогда и сейчас я эту проблему не смог решить адекватно, но это другая история



0



Понравилась статья? Поделить с друзьями:
  • Error failed to send host log message linux
  • Error failed to scan file что это
  • Error failed to save to the destination store
  • Error failed to run repack
  • Error failed to run jetifier