Ubuntu 17.04 Congelando Problema [duplicado]

5

Caso contrário, a máquina Ubuntu estável tem um problema desde a instalação que é o congelamento crítico sem motivos aparentes. Existem altas probabilidades de que o problema tenha sido causado por placa de vídeo NVDIA.

sudo blkid output:

/dev/sda2: UUID="0E5C95E45C95C73D" TYPE="ntfs" PARTUUID="1ef0523b-02"
/dev/sda5: UUID="16EA-1372" TYPE="vfat" PARTUUID="1ef0523b-05"
/dev/sda6: UUID="fe90c52c-c1b7-4845-971e-e7ed5cb45ac4" TYPE="ext4" PARTUUID="1ef0523b-06"

/etc/fstab :

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda6 during installation
UUID=fe90c52c-c1b7-4845-971e-e7ed5cb45ac4 /               ext4    errors=remount-ro 0       1
/swapfile                                 none            swap    sw              0       0
/dev/mapper/cryptswap1 none swap sw 0 0

/etc/crypttab :

cryptswap1 UUID=f09a516a-22c0-475c-b749-31ffed5c7bda /dev/urandom swap,offset=1024,cipher=aes-xts-plain64

ls -alh /swapfile :

-rw------- 1 root root 2.0G May  3 13:31 /swapfile
    
por parakovsky 05.06.2017 / 13:28

1 resposta

3

Parece haver problemas com o 17.04 e com os arquivos de permuta criptografados ... e há algumas soluções alternativas ...

Edite seu /etc/crypttab da seguinte forma:

gksudo gedit /etc/crypttab

Altere esta linha:

cryptswap1 UUID=xxxx-xxxx-xxxx-xxxx /dev/urandom swap,offset=1024,cipher=aes-xts-plain64

Para isso:

cryptswap1 /swapfile /dev/urandom swap,offset=1024,cipher=aes-xts-plain64

Verifique também se o /etc/fstab contém isso:

/swapfile               none  swap  sw  0  0
/dev/mapper/cryptswap1  none  swap  sw  0  0

Referências:

Ubuntu Desktop 17.04 inicialização lenta de 64 bits

link

link

    
por heynnema 05.06.2017 / 20:11