Posts

Showing posts from 2022

Installing QEMU/Virt-Manager On Arch Linux

First update your system : sudo pacman -Syu Install the required packages : sudo pacman –S qemu qemu-arch-extra virt-manager ebtables bridge–utils dmidecode sudo systemctl start libvirtd sudo systemctl enable libvirtd sudo systemctl status libvirtd sudo nano /etc/libvirt/qemu.conf user="root" group="root" Ctrl+X to exit Y to save Enter to confirm  sudo systemctl restart libvirtd sudo systemctl status libvirtd If everything is active and running without any error you can continue and start creating your VM.

How To Create And Configure Sudo User On Arch Linux

Step 1) Install sudo package Right off the bat, we need to install the sudo utility. Unlike other Linux distributions, this is not included by default in the base install. To install this, execute the following command as root: # pacman -S sudo Step 2) Create a regular user Next, we need to create a regular user. We will later add this user to the sudoers group to enable them to carry out administrative tasks. To create a sudo user, use the useradd command as shown: # useradd -m -G wheel -s /bin/bash username Let’s break down the command: The -m option creates a home directory for the user /home/user. The -G option adds the user to an additional group. In this case, the user is being added to the wheel group. The -s option specifies the default login shell. In this case, we are assigning bash shell denoted by /bin/bash. So, let’s assume you want to add a regular user called techuser. To accomplish this, run the command as follows: # useradd -m -G wheel -s /bin/bash techuser Step 3) Con...

How To Change Username In Arch Linux

Logoff. Switch to a tty console (Ctrl+Alt+F4). Login as root. Edit the following directories and replace the username nano /etc/passwd nano /etc/shadow nano /etc/group Finally, rename your current home folder mv /home/oldusername /home/newusername Reboot device  reboot

Dual Boot Manjaro With Windows 10

Disable Windows features Do you plan on doing read/write on your Windows partition? Disable Windows options like Fast Startup Hybrid Sleep Windows  Hybrid Sleep  defaults to enabled on desktop computers and disabled for laptop computers. Why should I do that?  When Windows uses the above options it leaves the file system in a  dirty state . When the file system is in this state the Linux filesystem tool  ntfs-3g  mounts the file system  read-only , effectively blocking you from making changes to your files on the Windows partition. To disable Windows Fast Startup you need to access the Windows Control Panel. You find it by clicking on  Windows Start  button → type  control  → select  Control Panel  desktop app. In the Control Panel app Click on  System and Security Click on  Power Options Click on  Choose what power buttons do a. Click on  Change settings that are currently unavailable b. Uncheck the op...

How To Create Infinite Folders On Windows

Open a Notepad and copy this code to Notepad. @echo off :top md %random% goto top  @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder. md %random% is command that creating folders with random names. goto top – return to label :top , infinite loop Save the file with .bat extension(for eg: folderscreate.bat) That’s all if you double click the file it will create a finite folder wherever the batch file is.

Format a Corrupted Pendrive/SD Card Using CMD

Open the CMD window and type the following command and press enter after each. diskpart list disk : a list of all the storage devices connected to your computer will be displayed. select disk # : (example: select disk 2). Cautions: Make sure you enter the disk number correctly. Otherwise, you may format your internal hard drive. clean create partition primary active select partition 1 format fs=fat32

Useful Websites You Might Need Or Just For Fun

https://pointerpointer.com/ - Just a website that points a finger where your mouse pointer is. https://vo.codes/ - Website where you can type text and choose voices of famous people and make them say those sentences. https://tailornova.com/designer - Website where you can fashion design and get a 3D model of your design. http://34.216.122.111/gaugan/ - Website where you can draw and AI automatically turns that into a realistic picture. https://www.security.org/how-secure-is-my-password/ - Website that shows you how secure your password is. https://www.myheritage.com/deep-nostalgia - Website which lets you animate a face from a photo.

Disable System Apps Without Root

To disable a system app using ADB: adb shell pm disable-user --user 0 com.example.application  To re-enable a system app using ADB: adb shell pm enable com.example.application (replace com.example.application with the target application's package name)

How To Remove "?m=1" At The End Of Blogger Website Link

Image
BEFORE                                                         AFTER STEP 1 Log in to your blog in blogger website and click on Theme . STEP 2 Click the arrow next to the Customise button and select Edit HTML . STEP 3 Click on any HTML line and press CTRL+F on your keyboard and type /head and hit ENTER . STEP 4 Copy and paste the below code just above /head line and SAVE the changes. CODE Click to Copy That's all. Now if you reload your site you will see that "?m=1" has been removed from the link.

Install Flutter Without Android Studio on Ubuntu

  Install OpenJDK 8 I am using java 8 because the latest version of java creates some problem with flutter so version 8 is fine. In terminal type: sudo apt install openjdk-8-jre sudo apt install openjdk-8-jdk Install Git In terminal type: sudo apt install git Setting Up Folder I am keeping everything in a single directory. Using terminal or you can make a folder by own inside “Home” directory. cd ~ mkdir Android cd Android mkdir cmdline-tools Install Flutter SDK D o wnload flutter from the following URL Linux install To install and run Flutter, your development environment must meet these minimum requirements: On Linux, you have two… flutter.dev Go to the folder where you downloaded the zip file and unzip the file. You can unzip it by right click on the file and click on extract here or using the terminal by the following code tar xvf flutter_linux_1.17.3-stable.tar.xz Now move the  “flutter”  folder to “ Home/Android/”  directory sudo mv flutter/ ~/Android/ Now the ...

How To Make A Telegram Mirror Bot

Features supported: 1. Mirroring direct download links to google drive 2. Download progress 3. Upload progress 4. Download/upload speeds and ETAs 5. Docker support 6. Uploading To Team Drives. 7. Index Link support 8. Service account support 9. Mirror all youtube-dl supported links 10. Mirror telegram files 11. Stable Mega.nz support How to deploy? Deploying is pretty much straight forward and is divided into several steps as follows: Installing requirements Clone this repo: git clone https://github.com/lzzy12/python-aria-mirror-bot mirror-bot/ cd mirror-bot Install requirements For Debian based distros sudo apt install python3 Install Docker by following the official docker docs For Arch and it's derivatives: sudo pacman -S docker python Install dependencies for running setup scripts: pip3 install -r requirements-cli.txt Setting up config file cp config_sample.env config.env Remove the first line saying: _____REMOVE_THIS_LINE_____=True Fill up rest of the fields. Meaning of each f...

How To Create A Hidden Service On Tor Using Android With Termux

All the commands are shown below Before doing anything you should enter the following commands : apt update && apt upgrade pkg install python pkg install nano pkg install tor First you need to create an HTML file : touch index.html Edit the HTML file : nano index.html You can add your contents in HTML format. After you finish click CTRL+S to save the file and then CTRL+X to exit. After that you need to launch a python server inorder to find whether it's working or not : python3 -m http.server --bind 127.0.0.1 8080 After that open chrome and search 127.0.0.1:8080 If you can see the index.html content on the screen then you're good to go. Go back to termux and open a new session. You need to find torrc file to edit (the location maybe vary in your device) : cd ../usr/etc/tor/ ls - to see the contents on current directory cd .. - to go back to the previous directory cd (filename) - to open the specified directory You need to edit the torrc file : nano torrc You need ...

3 GAMES THAT ACTUALLY PAYS YOU CRYPTOCURRENCIES

Image
1. CryptoWord - Earn free BTC This is a simple word search game which you can earn Bitcoins from it. This is an app by Vweeter Limited. --How To Earn-- - Before you play, tap on the Wallet button in the homescreen to sign-in and enter your Coinbase email. The game will be sending you Satoshis (nano Bitcoins) on sign up. - You win more satoshis as you play and can claim every 3 days. - Score at least 145 points per word to gain 1 satoshi. ---How To Play --- - Tap or slide to connect letters to form words. - You can link letters vertically, horizontally and / or diagonally. Search and Pop the bricks. - Letter stacks on top of each other once popped. - The more words you link up, the more points you get. Click here to download the game :  http://raboninco.com/11qsf 2.  CryptoPop - Earn Free ETH This is a simple coin pop-up game which you can earn Ethereum from it. This is an app by Vweeter Limited. --- HOW TO CLAIM --- ETH : Enter your Coinbase email address in the wallet section...