linux-tools/modules/swap/module.py

129 lines
4.9 KiB
Python
Raw Normal View History

2020-01-17 19:21:48 +01:00
import subprocess
from AbstractModule import AbstractModule
2020-01-18 04:15:08 +01:00
from PyInquirer import prompt
2020-01-17 19:21:48 +01:00
2020-01-18 04:15:08 +01:00
class SwapModule(AbstractModule):
2020-01-17 19:21:48 +01:00
def __init__(self):
super().__init__()
2020-01-18 04:15:08 +01:00
self.swap_file = None
2020-01-17 19:21:48 +01:00
2020-01-18 04:15:08 +01:00
def run(self):
2020-01-17 19:21:48 +01:00
2020-01-20 22:42:01 +01:00
actions = {
"Create/Resize temp. swap": self.create_resize_swap,
"Create/Resize persistent swap": self.create_resize_peristent_swap,
"Delete swap": self.delete_swap,
"Make temp. swap persistent": self.make_swap_persistent,
"Get swap location": self.swap_location_check,
"Get swap size": self.get_swap_size,
"Show swapiness": self.show_swapiness,
"Adjust temp. swapiness": self.adjust_swapiness_temp
}
2020-01-18 04:15:08 +01:00
menu = [
{
'type': 'list',
'message': 'Select action',
'name': 'action',
2020-01-20 22:42:01 +01:00
'choices': list(map(lambda x: {"name": x}, actions.keys()))
2020-01-18 04:15:08 +01:00
}
]
selected_action = prompt(menu)['action']
2020-01-20 22:42:01 +01:00
actions[selected_action]()
def create_resize_peristent_swap(self):
self.create_resize_swap()
self.make_swap_persistent()
2020-01-17 19:21:48 +01:00
def swap_location_check(self):
2020-01-18 04:15:08 +01:00
output_swaps = subprocess.check_output(['cat', '/proc/swaps']).decode("UTF-8")
final_list = list(output_swaps.split())
2020-01-18 04:15:08 +01:00
try:
print("Swap is located here:", final_list[5])
self.swap_file = final_list[5]
except IndexError:
print("Swap file doesn´t exist!\n")
def get_swap_size(self):
swap_size = subprocess.check_output(['swapon', '--show']).decode("UTF-8")
final_list = list(swap_size.split())
try:
print("Swap is {}b big!".format(final_list[7]))
except IndexError:
print("Swap file doesn´t exist!")
2020-01-17 19:21:48 +01:00
2020-01-18 04:15:08 +01:00
def create_resize_swap(self):
output_swapon = subprocess.check_output(['swapon', '--show']).decode("UTF-8")
if not output_swapon:
size = input("How big should the swap be (numbers in Gigabyte)? ")
create_swapfile = "sudo fallocate -l {}G /swapfile && ".format(size) + \
"sudo chmod 600 /swapfile && " + \
"sudo mkswap /swapfile && " + \
"sudo swapon /swapfile"
2020-01-18 04:15:08 +01:00
subprocess.call(create_swapfile, shell=True)
2020-01-17 19:21:48 +01:00
2020-01-18 04:15:08 +01:00
output_free = subprocess.check_output(['free', '-h']).decode("UTF-8")
print(output_free.strip())
2020-01-17 19:21:48 +01:00
2020-01-18 04:15:08 +01:00
else:
swap_size = subprocess.check_output(['swapon', '--show']).decode("UTF-8")
final_list = list(swap_size.split())
2020-01-18 04:15:08 +01:00
print("")
print("Swap already installed! You can resize it!")
print("Curr. swap size: {}b".format(final_list[7]))
2020-01-18 04:15:08 +01:00
resize = input("How big should your swap become(numbers in Gigabyte)? ")
resize_swapfile = "sudo swapoff /swapfile && " + \
"sudo fallocate -l {}G /swapfile && ".format(resize) + \
"sudo mkswap /swapfile && " + \
"sudo swapon /swapfile"
2020-01-18 04:15:08 +01:00
subprocess.call(resize_swapfile, shell=True)
output_free = subprocess.check_output(['free', '-h']).decode("UTF-8")
print(output_free.strip())
2020-01-17 19:21:48 +01:00
def make_swap_persistent(self):
self.swap_location_check()
backup_fstab = "sudo cp /etc/fstab /etc/fstab.bak"
enable_persistence = "echo '{} none swap sw 0 0' | sudo tee -a /etc/fstab".format(self.swap_file)
subprocess.call(backup_fstab, shell=True)
subprocess.call(enable_persistence, shell=True)
print("Swap is now persistent!")
def show_swapiness(self):
get_swapiness = "cat /proc/sys/vm/swappiness"
subprocess.call(get_swapiness, shell=True)
2020-01-20 14:58:24 +01:00
def adjust_swapiness_temp(self):
2020-01-20 22:33:50 +01:00
actions = {
"Light": 25,
"Default": 60,
"Aggressive": 100
}
2020-01-20 14:58:24 +01:00
menu = [
{
'type': 'list',
'message': 'Select action',
'name': 'action',
2020-01-20 22:33:50 +01:00
'choices': list(map(lambda x: {"name": x}, actions.keys()))
2020-01-20 14:58:24 +01:00
}
]
selected_swapiness = prompt(menu)['action']
2020-01-20 22:33:50 +01:00
adjust = "sudo sysctl vm.swappiness=" + str(actions[selected_swapiness])
subprocess.call(adjust, shell=True)
print("Temporary swapiness is " + str(actions[selected_swapiness]))
2020-01-20 14:58:24 +01:00
2020-01-18 04:15:08 +01:00
def delete_swap(self):
self.swap_location_check()
disable_swapfile = "sudo swapoff {} && ".format(self.swap_file) + \
"sudo rm {}".format(self.swap_file)
2020-01-17 19:21:48 +01:00
2020-01-18 04:15:08 +01:00
subprocess.call(disable_swapfile, shell=True)
output_swapon = subprocess.check_output(['swapon', '--show']).decode("UTF-8")
2020-01-17 19:21:48 +01:00
output_free = subprocess.check_output(['free', '-h']).decode("UTF-8")
2020-01-18 04:15:08 +01:00
if not output_swapon:
print("Swap deleted!")
print(output_free.strip())