- Machine: IBM AC922
- SSD: Samsung PM1725a NVMe PCIe SSD (6.4TB), Firmware version:
MN12MN12 - OS: Ubuntu 18.04 ppc64le
- You should work on "18.04" (kernel version = 4.x)
- Do not use "20.04" or "18.04 HWE" (kernel version >= 5.x)
MN12MN12Graph Processing Platforms 논문 모음
코드 예시 모음
| DIST=$( | |
| . /etc/os-release | |
| echo $ID | |
| ) | |
| if [[ $DIST == "ubuntu" ]]; then | |
| VERSION=$(lsb_release -r | awk '{print $2}' | awk -F . '{print $1$2}') | |
| apt install prometheus-node-exporter -y | |
| systemctl --now enable prometheus-node-exporter | |
| systemctl --now start prometheus-node-exporter |
| iptables -P INPUT ACCEPT | |
| iptables -P FORWARD ACCEPT | |
| iptables -P OUTPUT ACCEPT | |
| iptables -t nat -F | |
| iptables -t mangle -F | |
| iptables -F | |
| iptables -X | |
| ip6tables -P INPUT ACCEPT | |
| ip6tables -P FORWARD ACCEPT | |
| ip6tables -P OUTPUT ACCEPT |
| // paste into Google Chrome DevTools | |
| function simulateMouseClick(targetNode) { | |
| function triggerMouseEvent(targetNode, eventType) { | |
| var clickEvent = document.createEvent('MouseEvents'); | |
| clickEvent.initEvent(eventType, true, true); | |
| targetNode.dispatchEvent(clickEvent); | |
| } | |
| ["mouseover", "mousedown", "mouseup", "click"].forEach(function(eventType) { | |
| triggerMouseEvent(targetNode, eventType); |