Particionamento.

13. Re: Particionamento.

Luciano Barbosa Marques
lucianomarques1

(usa Ubuntu)

Enviado em 18/02/2015 - 10:33h

h4rd3r escreveu:

vivendo e aprendendo... tasca aí num terminal e retorne:


$ ls -al /dev/disk/by-uuid/
$ blkid
$ cat /etc/fstab


pode ser que seu usuário não tenha permissão de escrita ao diretório, isso talvez possa ser resolvido facilmente com:


# chown -hR SEU_USUARIO /home/SEU_USUARIO/


Segue em ordem:

luciano@luciano-desktop:~$ ls -al /dev/disk/by-uuid/
total 0
drwxr-xr-x 2 root root 80 Fev 18 09:27 .
drwxr-xr-x 4 root root 80 Fev 18 09:27 ..
lrwxrwxrwx 1 root root 10 Fev 18 09:27 1f0cbdec-129f-4bcd-bd4f-ed5a31934338 -> ../../sda1
lrwxrwxrwx 1 root root 10 Fev 18 09:27 a24b43c0-4c4a-4169-8bbf-ddd70c0ae7ea -> ../../sdb5

/dev/sda1: UUID="1f0cbdec-129f-4bcd-bd4f-ed5a31934338" TYPE="ext4" PARTUUID="470f470e-01"
/dev/sdb5: UUID="a24b43c0-4c4a-4169-8bbf-ddd70c0ae7ea" TYPE="ext4" PARTUUID="cf4ecf4e-05"

luciano@luciano-desktop:~$ cat /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/sda1 during installation
UUID=1f0cbdec-129f-4bcd-bd4f-ed5a31934338 / ext4 errors=remount-ro 0 1
# /home was on /dev/sdb5 during installation
UUID=a24b43c0-4c4a-4169-8bbf-ddd70c0ae7ea /home ext4 defaults 1 1

[]'s e obrigado pela ajuda!





  


14. Re: Particionamento.

edps
edps

(usa Slackware)

Enviado em 18/02/2015 - 12:26h

lucianomarques1 escreveu:

h4rd3r escreveu:

vivendo e aprendendo... tasca aí num terminal e retorne:


$ ls -al /dev/disk/by-uuid/
$ blkid
$ cat /etc/fstab


pode ser que seu usuário não tenha permissão de escrita ao diretório, isso talvez possa ser resolvido facilmente com:


# chown -hR SEU_USUARIO /home/SEU_USUARIO/


Segue em ordem:

luciano@luciano-desktop:~$ ls -al /dev/disk/by-uuid/
total 0
drwxr-xr-x 2 root root 80 Fev 18 09:27 .
drwxr-xr-x 4 root root 80 Fev 18 09:27 ..
lrwxrwxrwx 1 root root 10 Fev 18 09:27 1f0cbdec-129f-4bcd-bd4f-ed5a31934338 -> ../../sda1
lrwxrwxrwx 1 root root 10 Fev 18 09:27 a24b43c0-4c4a-4169-8bbf-ddd70c0ae7ea -> ../../sdb5

/dev/sda1: UUID="1f0cbdec-129f-4bcd-bd4f-ed5a31934338" TYPE="ext4" PARTUUID="470f470e-01"
/dev/sdb5: UUID="a24b43c0-4c4a-4169-8bbf-ddd70c0ae7ea" TYPE="ext4" PARTUUID="cf4ecf4e-05"

luciano@luciano-desktop:~$ cat /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/sda1 during installation
UUID=1f0cbdec-129f-4bcd-bd4f-ed5a31934338 / ext4 errors=remount-ro 0 1
# /home was on /dev/sdb5 during installation
UUID=a24b43c0-4c4a-4169-8bbf-ddd70c0ae7ea /home ext4 defaults 1 1

[]'s e obrigado pela ajuda!


Tudo está normal pela saída dos comandos, o que posso sugerir é:

1 - criar um novo usuário:


# adduser usuario


E ver se o problema persiste.

ou

2 - apenas remover a entrada /home de seu fstab e usar uma única partição

ou

3 - isso vai dar trabalho!

a. Iniciar o sistema;
b. remover a entrada de /home do seu fstab;
c. com o rsync copiar todo o conteúdo de sua /home ??? funcional para algum local:

$ rsync -av /home/seu_usuario/ /caminho/do/backup/

d. reiniciar o sistema no recovery-mode do Grub;
e. formatar essa partição /home:

# mkfs.ext4 -L home /dev/sdb5 ### certifique-se que é realmente /dev/sdc5!!!

f. obter a nova UUID da partição formatada com:

# blkid
# ls -al /dev/disks/by-uuid

g. acrescenta-la no fstab:

UUID=A_UUID_OBTIDA_NO_PASSO_ANTERIOR /home ext4 noatime,defaults 0 2

* a opção noatime é opcional, pode deixar apenas defaults
h. reiniciar o sistema:

# blkid
# reboot




01 02



Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts