- add
cgroup_enable=memoryto GRUB_CMDLINE_LINUX_DEFAULT var in/etc/default/grub - update-grub
- restart machine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import glob | |
| import plistlib | |
| clientProject = 'My Project' | |
| for filename in glob.glob("*.bex"): | |
| root = plistlib.readPlist(filename) | |
| with open(filename+'.csv', 'wb') as out: | |
| out = csv.writer(out, delimiter='|') | |
| out.writerow(['Slip', 'Start', 'End', 'Duration (minutes)']) |
NewerOlder