load without any analysis (file header at offset 0x0): r2 -n /path/to/file
- analyze all:
aa - show sections:
iS - list functions:
afl - list imports:
ii - list entrypoints:
ie - seek to function:
s sym.main
| # /etc/modprobe.d/nvidia.conf | |
| # NVIDIA Linux modprobe.d Configuration | |
| # | |
| # Memory and Performance Enhancements: | |
| # | |
| # - NVreg_UsePageAttributeTable=1 (Default: 0) | |
| # Activates the Page Attribute Table (PAT) for improved memory management. | |
| # PAT creates a partition table at a fixed register-mapped address, potentially enhancing CPU performance. | |
| # |
| var redis = require("redis") | |
| , subscriber = redis.createClient() | |
| , publisher = redis.createClient(); | |
| subscriber.on("message", function(channel, message) { | |
| console.log("Message '" + message + "' on channel '" + channel + "' arrived!") | |
| }); | |
| subscriber.subscribe("test"); |