Install the OpenSSL on Debian based systems
sudo apt-get install openssl| #!/bin/bash | |
| sudo apt install fontconfig | |
| cd ~ | |
| wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Meslo.zip | |
| mkdir -p .local/share/fonts | |
| unzip Meslo.zip -d .local/share/fonts | |
| cd .local/share/fonts | |
| rm *Windows* | |
| cd ~ |
You might want to read this to get an introduction to armel vs armhf.
If the below is too much, you can try Ubuntu-ARMv7-Qemu but note it contains non-free blobs.
First, cross-compile user programs with GCC-ARM toolchain. Then install qemu-arm-static so that you can run ARM executables directly on linux
If there's no qemu-arm-static in the package list, install qemu-user-static instead
| # source:http://reocities.com/SiliconValley/heights/7052/opcode.txt | |
| From: [email protected] (Mark Hopkins) | |
| Newsgroups: alt.lang.asm | |
| Subject: A Summary of the 80486 Opcodes and Instructions | |
| (1) The 80x86 is an Octal Machine | |
| This is a follow-up and revision of an article posted in alt.lang.asm on | |
| 7-5-92 concerning the 80x86 instruction encoding. | |
| The only proper way to understand 80x86 coding is to realize that ALL 80x86 |
| # IE users need: https://get.adobe.com/reader/ | |
| from PyPDF2 import PdfFileWriter, PdfFileReader | |
| output = PdfFileWriter() | |
| ipdf = PdfFileReader(open('old.pdf', 'rb')) | |
| for i in xrange(ipdf.getNumPages()): | |
| page = ipdf.getPage(i) | |
| output.addPage(page) |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| #include <string.h> | |
| #include <sys/wait.h> | |
| #include <unistd.h> | |
| #include <fcntl.h> | |
| int crashes = 0; |