This guide will show step-by-step how to install Arch Linux on UEFI mode.
- Bootable Flash Drive
- BIOS
- Pre-installation
- Set Keyboard Layout
- Check boot mode
- Update System Clock
#!/bin/bash | |
# Author: Tanvir Ahmed Khan | |
# License: MIT License | |
# Github: https://github.com/ftkhanft | |
# Website: https://rrad.ltd | |
# Before running this make sure you have the ecosystem.config.js file in your project directory you cloned or in the git repo that you want to deploy. Referance file added below this script. | |
# Use the setup script added below this script or directly run in terminal: | |
# curl -s -L https://gist.githubusercontent.com/FTKhanFT/b87ef1bcfff51814b45815ad708fdcc1/raw/4f47ef626f2865b601cb81d628e4c89f04db1604/setup_script.sh | bash |
#!/bin/bash | |
ffmpeg -i input -vf lut3d=<lut file> -c:a copy output |
Portable Version KEYS: | |
P6Z3T-UYJC9-YAK3F-APN9M-6ZDSD | |
FGZPK-93CWX-Q33Y6-D5URV-YXC3X | |
9CZQX-9YAQA-PF33L-XVUQH-NSD48 | |
8RZ3L-H3Y5L-W2RY5-Z5M8N-C7Z2U | |
CCZNU-LW3LF-K9V2T-MYZFF-94667 | |
EWZM6-3W4UX-KH922-C96GK-VGBH2 | |
Standard Version KEYS: | |
4AZNW-S2YHE-LLMWM-J6EL8-7QKDL |
var duplicates = []; | |
db.getCollection('CollectionName').aggregate([ // CollectionName = Your collection name | |
{ $match: { | |
name: { "$ne": '' } // discard selection criteria | |
}}, | |
{ $group: { | |
_id: { FieldName: "$FieldName"}, // FieldName = Matching field; can be grouped on multiple properties | |
dups: { "$addToSet": "$_id" }, // _id | |
count: { "$sum": 1 } | |
}}, |
import 'package:cache_x/cache_x.dart'; | |
import 'package:flutter/material.dart'; | |
void main() async { | |
WidgetsFlutterBinding.ensureInitialized(); | |
// Initialize password | |
// Password length must be 128/192/256 bits | |
// You can use the password of 16 character,24 character or 32 character. | |
String password = 'CBoaDQIQAgceGg8dFAkMDBEOECEZCxg='; |
{"lastUpload":"2021-02-24T14:40:21.470Z","extensionVersion":"v3.4.3"} |
Organization name: [email protected] | |
Serial Key: eNrzzU/OLi0odswsqslJTa3IzHJIz03MzNFLzs+tMTQyNrcwsTQyAIEa5xpDAIFxDy8k |
cd /home/<user>/ | |
sudo apt-get install unzip | |
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip | |
unzip sdk-tools-linux-4333796.zip -d Android | |
rm sdk-tools-linux-4333796.zip | |
sudo apt-get install -y lib32z1 openjdk-8-jdk | |
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 | |
export PATH=$PATH:$JAVA_HOME/bin | |
printf "\n\nexport JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64\nexport PATH=\$PATH:\$JAVA_HOME/bin" >> ~/.bashrc | |
cd Android/tools/bin |
#Login as root | |
sudo su | |
#create jdk directory | |
mkdir /opt/jdk | |
#uncompress, change to your file name | |
tar -zxf jdk-8u5-linux-x64.tar.gz -C /opt/jdk | |
#check if files are there |