Como posso aumentar o diretório / tmp no Linux?

1

Estou tentando instalar o android-studio a partir do Arch User Repository (AUR). Eu tive um erro sem espaço no dispositivo

Saída do Arch User Repository (AUR) - detalhes

                                 Dload  Upload   Total   Spent    Left  Speed
100  737M  100  737M    0     0  4497k      0  0:02:48  0:02:48 --:--:-- 4908k
  -> Found android-studio.desktop
==> Validating source files with sha256sums...
    android-studio-ide-171.4443003-linux.zip ... Passed
    android-studio.desktop ... Passed
==> Extracting sources...
  -> Extracting android-studio-ide-171.4443003-linux.zip with bsdtar
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "android-studio"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
cat: write error: No space left on device
bsdtar: Write error
==> ERROR: Failed to create package file.

Usando o terminal

➜  ~ df -h
Filesystem                           Size  Used Avail Use% Mounted on
dev                                  3.8G     0  3.8G   0% /dev
run                                  3.8G  1.3M  3.8G   1% /run
/dev/mapper/AntergosVG-AntergosRoot  102G   91G  6.5G  94% /
tmpfs                                3.8G   62M  3.7G   2% /dev/shm
tmpfs                                3.8G     0  3.8G   0% /sys/fs/cgroup
/dev/sda1                            243M  109M  118M  48% /boot
tmpfs                                3.8G  3.8G     0 100% /tmp
tmpfs                                769M   20K  769M   1% /run/user/1000

Agora eu limpo algum espaço em / tmp

➜  ~ df -h
Filesystem                           Size  Used Avail Use% Mounted on
dev                                  3.8G     0  3.8G   0% /dev
run                                  3.8G  1.3M  3.8G   1% /run
/dev/mapper/AntergosVG-AntergosRoot  102G   91G  6.5G  94% /
tmpfs                                3.8G   63M  3.7G   2% /dev/shm
tmpfs                                3.8G     0  3.8G   0% /sys/fs/cgroup
/dev/sda1                            243M  109M  118M  48% /boot
tmpfs                                3.8G  8.0K  3.8G   1% /tmp
tmpfs                                769M   20K  769M   1% /run/user/1000

Então eu tentei reinstalar o android-studio, mas ainda tenho o mesmo erro. Eu não sei por que que, ao baixar um arquivo de 737MB, o prédio receba 3,8GB. Como posso aumentar o tamanho do meu diretório / tmp para 4.5GB?

    
por Papouche Guinslyzinho 21.12.2017 / 17:15

1 resposta

4

remount / tmp:

# mount -o remount,size=4500M /tmp
    
por 21.12.2017 / 17:20

Tags