3 Aralık 2023 Pazar

tmpfs

Giriş
tmpfs'i yüklemek için iki seçenek var
1. /etc/fstab
2. mount komutu

1. /etc/fstab Dosyası - 
Kalıcıdır

Örnek
Şöyle yaparız.
$ sudo vim /etc/fstab

...
# tmpfs in RAM
tmpfs         /tmp         tmpfs         defaults,noatime,mode=1777      0 0
...
Şöyle yaparız.
$ sudo mount /tmp
$ mount | grep tmp # Check /tmp is in RAM
tmpfs on /tmp type tmpfs (rw,noatime)
Örnek
/etc/fstab dosyasına şöyle yaparız. Bir dahaki tekrar başlatmada bu dizin otomatik yüklenir.
tmpfs /mnt/dbtemp/PG_13_202007201/936082 tmpfs \ 
  rw,nodev,nosuid,noatime,nodiratime,size=1G 0 0
Ama bir dahaki başlatmayı beklememek için dizini RAM'e yükleriz
mount /mnt/dbtemp/PG_13_202007201/936082

2. mount komutu
Geçicidir

Örnek
Şöyle yaparız
# mount tmpfs /path/to/your/mountpoint -t tmpfs