Reflector Mirrors (Arch Based Only)
Conifgure Pacman (Arch Based Only)
Makepkg Tweaks
Installing Yay (Arch Based Only)
Installing Pamac (Arch Based Only)
Performance Tweaks
- Encrypted root partition
- AES-256 bit cipher
- Argon2id variant for PBKDF
- Sha3-512 bit hash
- rEFInd bootloader
- With dreary theme
- Optimal Settings (optimized for aesthetics, and boot time)
- Boot into backups thanks to refind-btrfs
| cd Downloads | |
| wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh | |
| bash Anaconda3-5.0.1-Linux-x86_64.sh -b -p ~/anaconda | |
| rm Anaconda3-5.0.1-Linux-x86_64.sh | |
| echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc | |
| source ~/.bashrc |
| # got to handle both escaped and literal | |
| df.replace(to_replace=[r"\\t|\\n|\\r", "\t|\n|\r"], value=["",""], regex=True, inplace=<INPLACE>) |
Tuning Intel Skylake and beyond for optimal performance and feature level support on Linux:
Note that on Skylake, Kabylake (and the now cancelled "Broxton") SKUs, functionality such as power saving, GPU scheduling and HDMI audio have been moved onto binary-only firmware, and as such, the GuC and the HuC blobs must be loaded at run-time to access this functionality.
Enabling GuC and HuC on Skylake and above requires a few extra parameters be passed to the kernel before boot.
Instructions provided for both Fedora and Ubuntu (including Debian):
Note that the firmware for these GPUs is often packaged by your distributor, and as such, you can confirm the firmware blob's availability by running:
| # Go to home directory | |
| cd ~ | |
| # You can change what anaconda version you want at | |
| # https://repo.continuum.io/archive/ | |
| wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh | |
| bash Anaconda3-5.0.1-Linux-x86_64.sh -b -p ~/anaconda | |
| rm Anaconda3-5.0.1-Linux-x86_64.sh | |
| echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc |
Saya support Internet Positif untuk memblokir porn, situs judi, dan hal-hal ilegal lainnya. Tapi pemerintah dan ISP sangat konyol karena tidak mengizinkan akses ke Vimeo, Reddit, Imgur, Netflix--yang mana bukanlah situs dengan konten utama ilegal.
Tambahkan list di bawah ke /etc/hosts.
| 1. Send HTTP GET Request | |
| String url = "http://www.google.com/search?q=httpClient"; | |
| HttpClient client = HttpClientBuilder.create().build(); | |
| HttpGet request = new HttpGet(url); | |
| // add request header | |
| request.addHeader("User-Agent", USER_AGENT); | |
| HttpResponse response = client.execute(request); |