* allow other level of RUST logging * avoid "echo" in favor of printf (builtin) * single quotes for literals, double quotes for variables
8 lines
211 B
Bash
Executable File
8 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# if RUST_LOG is unset, default to info
|
|
export RUST_LOG=${RUST_LOG:-solana=info}
|
|
|
|
sudo sysctl -w net.core.rmem_max=26214400
|
|
cargo run --release --bin solana-fullnode -- -l leader.json < genesis.log
|