This file contains 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
Sep 09 15:00:11 albert-g14 kernel: ------------[ cut here ]------------ | |
Sep 09 15:00:11 albert-g14 kernel: ioremap on RAM at 0x0000000000000000 - 0x0000000000ffffff | |
Sep 09 15:00:11 albert-g14 kernel: WARNING: CPU: 14 PID: 654 at arch/x86/mm/ioremap.c:210 __ioremap_caller+0x337/0x350 | |
Sep 09 15:00:11 albert-g14 kernel: ------------[ cut here ]------------ | |
Sep 09 15:00:11 albert-g14 kernel: ioremap on RAM at 0x0000000000000000 - 0x0000000000ffffff | |
Sep 09 15:00:11 albert-g14 kernel: WARNING: CPU: 14 PID: 654 at arch/x86/mm/ioremap.c:210 __ioremap_caller+0x337/0x350 | |
Sep 09 15:00:11 albert-g14 kernel: Modules linked in: mc cec soundcore snd_pci_acp3x i2c_piix4 k10temp roles mac_hid i2c_hid_acpi i2c_hid amd_pmc(+) acpi_tad fuse ip_tables x_tables dm_crypt cbc encrypted_keys trusted asn1_encoder > | |
Sep 09 15:00:11 albert-g14 kernel: CPU: 14 PID: 654 Comm: systemd-udevd Not tainted 5.19.4-arch1-g14-1 #1 8245f54cbfece6b1caffd48a25b9570636a8360c | |
Sep 09 15:00:11 albert-g14 kernel: Hardware name: ASUSTeK COMPUTER INC. ROG |
This file contains 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
apt-get install -y autotools-dev automake build-essential zlib1g zlib1g-dev openssl libssl-dev bzip2 pkg-config gettext | |
cd /tmp | |
git clone https://repo.or.cz/elinks.git | |
cd elinks | |
sh autogen.sh | |
./configure --prefix=/usr/local --mandir=/usr/local/share/man --sysconfdir=/etc --disable-smb --without-x --enable-cgi --enable-leds --enable-256-colors --enable-html-highlight --with-zlib | |
make | |
make install |
This file contains 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
{% if my_var is defined and my_var | bool %} | |
defined | |
{% endif %} |
This file contains 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
{% if my_var is defined and my_var %} | |
defined | |
{% endif %} |
This file contains 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
#!/usr/bin/env bash | |
while read -r instance; do | |
while read -r current_node_cpus; do | |
current_node=(); | |
for i in $current_node_cpus; do | |
current_node[i]=1 | |
done |
This file contains 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
$ gridcoinresearchd --help | |
Gridcoin version v3.5.5.9-g-research | |
Usage: | |
gridcoind [options] | |
gridcoind [options] <command> [params] Send command to -server or gridcoind | |
gridcoind [options] help List commands | |
gridcoind [options] help <command> Get help for a command | |
Options: |
This file contains 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
a/x | |
b/v | |
b/w | |
c/x | |
c/z |
This file contains 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
dir0/ | |
a | |
x | |
y | |
z | |
b | |
u | |
v | |
w | |
c |
This file contains 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
while read -r fff; do cp -r --parents "$fff" newdir/; done < filelist.txt |
This file contains 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
--- | |
#myplay.yml | |
- hosts: test | |
gather_facts: no | |
roles: | |
- myrole |
NewerOlder