nenhum dash / applets mostrado depois de instalar o desktop ubuntu no servidor ubuntu 14.04 64bit

0

Eu tentei instalar o Ubuntu Server 14.04 no meu servidor, por exemplo:

  - Motherboard: mini-ITX GIGABYTE H77N-WIFI
  - Processor : Core i3
  - DDR3      : 8 GB
  - SATA HDD  : 1 x 500GB, 3 x 1TB
  - Network if: eth0,eth1,wlan0

Esta placa-mãe suporta o UEFI BOOT, bem como o CSM (Compatibility Support Module: fornece compatibilidade legalizada com o BIOS) wiki: [Unified Extensible Firmware Interface] [1] que eu desativou na minha instalação. Então, eu configuro o BIOS para inicializar apenas no modo UEFI e inicializo usando o servidor Ubuntu 14.04 x64bit.iso flashdisk.

Quando o instalador chegou ao ponto de definir a partição, eu escolhi:

   - guided-use entire partition
   - select disk : sda - 500GB
   - SCSI1 (0,0,0) (sda) - 500.1 GB ATA
            1.0 MB       FREE SPACE
     #1   536.9 MB  B  F EFIBoot
     #2   492.1 GB     F ext4       /
     #3     7.5 GB     F swap       swap
            1.1 MB       FREE SPACE
   - Finish partitioning and write changes to disk

A instalação do Ubuntu Server 14.04 x64bit foi sem erros, a conexão à internet no eth0 também foi ok.

após a reinicialização e login, a tela mostra:

no tallocstackframe at ../source3/param/loadparm.c:4864, leaking memory
.
.
ubuntu@ubuntu:$

$ sudo apt-get update..ok
$ sudo apt-get install ubuntu-desktop...ok

Mas após a reinicialização, a tela mostrou apenas um desktop do tema em branco do Ubuntu sem applets, dash ou qualquer coisa e depois de alguns instantes, mostra a caixa de diálogo de erro:

" nautilus  pop up " Oops! Something went wrong." dialog. (repeat momentarily.)
---------------------------------------------
Nautilus Unable to create a required folder. Please create the following folder, or set permissions such that it can be created:
/home/user/.config/nautilus}
---------------------------------------------

Será que a versão para desktop não conseguiu localizar a partição UEFI na qual o arquivo de configuração do nautilus reside?

Porque quando eu digito:

$ sudo fdisk -l

saída:

-----------------------------------------------------------------------------------
WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU parted.

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60001 Cylinders, total 976773168bytes
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes/4096 bytes
Disk identifier: 0x00000000

    Device Boot           Stat           end          Blocks         Id       System
/dev/sda1                   1          976773167    488386583+       ee        GPT
partition 1 does not start on physical sector boundary.
-----------------------------------------------------------------------------------

quando instalei o desktop ubuntu pelo servidor e ative o suporte a CSM da mobo bios, não tive nenhum problema.

    
por lindevox 03.10.2014 / 22:02

1 resposta

1

Depois de mudar a permissão, consegui que funcionasse. Aqui está como eu fiz:

sudo chmod -R 777 /home/user/.config/nautilus

Então

sudo shutdown -r now

e depois do login, Voila ..! O Ubuntu Desktop aparece sem erros.

Mas não sei se esta é a solução certa para definir /home/user/.config/nautilus para 777.

    
por lindevox 07.10.2014 / 15:00