Fedora 25 Workstation: Anaconda lança erro Traceback durante a instalação

2

Estou tentando instalar o Fedora 25 Workstation no Lenovo Ideapad. Usando o VMWare Player com 20 GB de espaço em HD, 2 GB de RAM, 2 núcleos de processador. A instalação vai bem até a fase 2, onde o Anaconda tenta criar o usuário. Em seguida, mostra um pop-up que ocorreu um erro. A seguir, o erro:

The following was filed automatically by anaconda:
anaconda 25.20.8-1 exception report
Traceback (most recent call first):
  File "/usr/lib64/python3.5/site-packages/pyanaconda/users.py", line 379,     in createUser
    raise OSError("Unable to create user %s: status=%s" % (user_name, status))
  File "/usr/lib64/python3.5/site-packages/pyanaconda/kickstart.py", line 1801, in execute
    users.createUser(usr.name, **kwargs)
  File "/usr/lib64/python3.5/site-packages/pyanaconda/install.py", line 95, in doConfiguration
    ksdata.user.execute(storage, ksdata, instClass, u)
  File "/usr/lib64/python3.5/threading.py", line 862, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/lib64/python3.5/site-packages/pyanaconda/threads.py", line 251, in run
    threading.Thread.run(self, *args, **kwargs)
OSError: Unable to create user 0111: status=3

Additional info:
addons:         com_redhat_kdump
cmdline:        /usr/bin/python3  /sbin/anaconda --liveinst --  method=livecd:///dev/mapper/live-base
cmdline_file:   BOOT_IMAGE=vmlinuz initrd=initrd.img  root=live:CDLABEL=Fedora-WS-Live-25-1-3 rd.live.image quiet
executable:     /sbin/anaconda
hashmarkername: anaconda
kernel:         4.8.6-300.fc25.x86_64
other involved packages: system-python-libs-3.5.2-4.fc25.x86_64
product:        Fedora
release:        Fedora release 25 (Twenty Five)
type:           anaconda
version:        25

Observe também que eu instalei o LinuxMint e o Lubuntu no VMWare Player com as mesmas configurações na mesma máquina e eles estão trabalhando sem esses problemas. Esperando consertar isso e mudar para o fedora em breve!

    
por user206136 18.12.2016 / 20:09

1 resposta

2

Bug conhecido, Bugzilla: OSError : Não é possível criar usuário 1234: status = 3 . Causado ao tentar criar um nome de usuário falso.

A correção é para não solicitar nomes de usuário falsos.

Anaconda interface should show an error message when an invalid User Name is entered and pressed Done.

Note: From man page of adduser it says "Usernames must start with a lower case letter or an underscore, followed by lower case letters, digits, underscores, or dashes. They can end with a dollar sign. In regular expression terms: [a-z_][a-z0-9_-]*[$]?

    
por 18.12.2016 / 20:44