BTW, beberapa akhir terakhir, saya juga gemar me-unfriend orang tidak dikenal yang ada di daftar teman saya atau yang lebih sering adalah ketika ada kemunculan nama tidak dikenal di News Feed. Saya melakukan unfriend biasanya terkait dengan informasi pribadi di FB. Bagi orang yang tidak dikenal lebih baik tidak perlu mengetahui terlalu banyak seperti foto-foto, nomor HP, dan lainnya. Jika ada teman yang saya kenal namun sering mengirim post yang tidak penting tidak saya unfriend tapi cukup di-unsubscribe atau yang lebih sering saya pilih pilihan "only important".
If we maintain a Linux machine with a low memory capacity while we are required to run an application with high memory consumption, enabling swap memory is an option. Ansible can be utilized as a helper tool to automate the creation of swap memory. A swap file can be allocated in the available storage of the machine. The swap file then can be assigned as a swap memory. Firstly, we should prepare the inventory file. The following snippet is an example, you must provide your own configuration. [server] 192.168.1.2 [server:vars] ansible_user=root ansible_ssh_private_key_file=~/.ssh/id_rsa Secondly, we need to prepare the task file that contains not only the tasks but also some variables and connection information. For instance, we set /swapfile as the name of our swap file. We also set the swap memory size to 2GB and the swappiness level to 60. - hosts: server become: true vars: swap_vars: size: 2G swappiness: 60 For simplicity, we only check the...
Comments
Post a Comment