Friday, October 28, 2022
HOW TO SEND ANONYMOUS SMS TO ANY NUMBER
Thursday, March 11, 2021
GBWhatsApp Plus V11.20.0 APK
GBWhatsApp Plus Latest V11.20.0
GBWhatsApp Plus latest apk is another mod by GB Team that has all the features of GBWhatsApp is best Two WhatsApp In Single Android Mobile. in it but has the signature “com.whatsapp”. This mod will suffice all the need that you require from themeing your whatsapp to coustomising your privacy. Enjoy it all in this new ‘GB’ WhatsApp Plus.
Features
- Ban proof
- Supports calls
- Hide your ( last seen )
- Privacy mods
- Themes mods
Theme Server ( to download/apply themes )
Change ticks/bubbles Style Mod
Counter statistics for groups
Media preview without loading
Show Online/last Seen in Main Screen
Send video to size 30 MB instead of 16 MB
Send 90 images at once instead of 10
Change your status and add to 250 characters instead of 139 characters
Ability to press on links on chat screen without save sender number or group admin number
Ability to press in links on your friends states
The possibility of distinguishing between normal messages and Broadcast messages
Hide the name and the date when copy more than one message
The possibility of copying friends status
Change the app icon and notifications
Friday, November 27, 2020
Package Management
Termux uses apt and dpkg for package management, similar to Ubuntu or Debian.
Working with packages
Installing packages from APT repository
In Termux it is recommended to use package manager pkg which is a wrapper for apt. It simplifies installing or upgrading packages by automatically updating apt lists so you don't have to type apt update
when installing or upgrading packages.
Install package:
pkg install [package name]
Remove package:
pkg uninstall [package name]
List all packages:
pkg list-all
Upgrading packages:
pkg upgrade
Important: before installing anything, ensure that all packages are up-to-date. Additionally, we suggesting to check for updates at least once a week. We use rolling-release updates style and do not care about compatibility of more than between current and previous versions. If you have not upgraded your Termux installation for long time and now experience errors when running package manager, the easiest way to fix will be complete reinstallation.
For more information about available commands you can either just run pkg without arguments or like this: pkg help
.
Manual installation of *.deb files
If you have a *.deb package file, you can install it with dpkg. Note that packages downloaded from Ubuntu or from repositories of other Linux distributions will not work due to incompatible libc ABI, however statically compiled binaries may work.
Installing:
dpkg -i ./package.deb
Uninstalling:
dpkg --remove [package name]
Listing all installed packages:
dpkg -l
Since dpkg has many useful options, you may want to see it's manual via man dpkg
.
Official repositories
Some repositories can be enabled by installing packages ending with -repo
. The repositories that can be accessed in this way at the time of writing are
Repository | Command to subscribe to repository |
---|---|
game-packages | pkg install game-repo |
science-packages | pkg install science-repo |
termux-root-packages | pkg install root-repo |
x11-packages (Android 7+ only) | pkg install x11-repo |
unstable-packages (Android 7+ only) | pkg install unstable-repo |
For a repository to be considered official it needs to have build scripts for cross-compilation available for all hosted packages. Packages built on device and thereafter packaged with termux-create-package
can therefore not be included in the official repositories.
All the repositories with build scripts in a repo at github.com/termux/ are maintained and signed by someone on the termux team, the keys used for signing are available in the package termux-keyring. For more information about how the repositories are signed, see termux-keyring.
Termux Secret Commands : 10 Cool Commands Termux -2021
Termux is the Best tool for Android phone that Turns your phone into a Hacker's Device but There are some Cool Termux Commands that Does not help to hack any but they are 4 Fun , So I took a break from the serious stuff and I created a list of The Top 10 Temux Secret Commands That no one is talking about.
Top 10 Termux Secret Commands in 2020 :
Running Train in Termux :
pkg install sl
sl
Running Train:
Turn Your Termux Into Fire Place 🔥:
pkg install libcaca
Step 2:
cacafire
Burning Fire:
Here you can see the Out-put of The above command.
Generate Banner Of Your Name in Termux:
pkg install toilet
Step 2:
Type the Below command to get the perfect colorful text In your temux, If you want to make it permanent Comment me and I will write a post about it for you. Please add your name to the below command.
toilet -f mono12 -F gay "YourName"
Matrix Effect in Termux :
pkg install cowsay
Step 2:
Now The tool is installed and you just have to type cowsay your name and it will print a cow saying your name on the screen.
cowsay YourName
Browse Internet Using Termux :
pkg install w3m
w3m will be Installed In less than 5 sec.
w3m Google
As you can see my website in the Termux browser, You can also navigate like you normally do in chrome by using arrows in the bottom left corner of the screen and you can visit any link by double-clicking on it.
Read Quotes in Termux:
pkg install fortune -y
fortune
Install Auto-Correct in Termux:
pkg install fish -y
fish
Sunday, November 8, 2020
Termux Commands list
Termux is an Android terminal emulator and Linux environment Android app that works directly with root and without root. A Terminal base system is installed automatically – additional packages are available using the APT package manager.
There are Some Basic Command for Termux Emulator. If you already use any Linux system and you know any Linux OS commands you can easily learn these Termux commands.
Termux – Clear Screen
For clear all screen content run the clear command.
clear
Termux – Current Working Directory
This command will tell you, your current working directory.
pwd
Termux – Changing Directory
cd command use for change our current working directory to another directory, type cd and your directory name. I’m moving in /home directory.
cd /home
Termux – Move Back Directory
If you want one directory to move back by using cd .. you can easily back one directory. and you wanna back two directories use the cd ../../ command.
cd ..
cd ../../
Termux – Create New File
by using the touch command we can easily create a file
touch <file-name>
Termux – Create New Directory
Mkdir Stands for creating a new directory. Let’s Type the mkdir command and give a directory and using a space gape and hit the enter button.
mkdir <new-directoy-name>
Termux – Delete Directory
delete any directory by using the command, just type the rmdir <delete directory-name> and press enter and it will be deleted. delete the directory and their contents recursively rm -r < directory-name >
rmdir <directory-name>
rm -r <directory-name>
Termux – Delete File
delete any file type the rm <your-filename> and press enter and it will be deleted within a second.
rm <file-name>
Termux – Rename File and Directory & Move a File
The mv command is a Linux command-line utility that moves files or directories from one place to another. rename filename type the command mv <old-filename> <new-filename>
mv <old-filename> <new-overwirte-filename>
mv -r <currnet-file-location> <your-new-destination-directory>
Termux – Copy File and Directory
copy file source to destination. this is another Linux command-line utility for copy file and directory. if you want to copy a directory you must use cp -r copy directories and their contents recursively.
cp <filename> <new-filename>
cp -r <directory-name> <new-directory-name>
Termux – File Editor nano and VI
Termux has many command-line editors but there have most useful editor vi and nano. if you already have a file run the vi <filename> enter the edit mode by pressing ( i ) after edit the file press the ESC button and type ( :wq ) write and quite. read more about vi editor.
nano is another Termux editor type nano <filename> edit your file and save the file by using ( Ctrl+x ) and type y for yes and again hit enter and your file is saved.
vi <filename>
nano <filename>
Termux – Read File Content cat command
Run the cat command with using extra argument <your-read-file-name> and everything is see in terminal inside the text file.
cat <filename>
Termux – All running background Process Top command
Know all running processes in Termux you can easily see all running processes by using the top command.
top
Termux – Change Permission and Group
you can easily change every file permission and change file ownership group and user. for adding execute permission to run the command. ( chmod +x <file-name> ) if you want to change file ownership run the command ( chown newuser:newgroup <filename>.
chmod (permission-mode) <filename>
chown (newuser:newgroup) <filename>
Termux – Clone Source code from Github
Download new project and cloning project from git hub run the command.
git clone <cloning url>
Termux – Download File wget and curl
If you want to download the file through the terminal. there are many download tools but we are mostly using these tools. wget and curl you can download every file from the internet by using those tools.
wget <download-file-url>
curl <download-file-url> -o <output-filename>
Termux – history All Previous run Command
checking all previous run command.
history
Termux Packages Command
List all installed Packages
The command will display a list of all installed packages including the packages versions.
dpkg --list
Install New Package
installing a new package let’s try one example install python3. run the command < pkg install python3 > and you see a promote type y for yes and your package is install soon. it depends on your internet speed.
pkg install <package-name>
Remove Installed Package
you can uninstall any package from the list, just type pkg remove and <remove-package-name>.it will ask you. if you wanna delete the package press y or not n After type y the package will be removed automatically.
pkg remove <remove-package-name>
Update all packages
update all old installed package
apt update && apt upgrade -y
Update New added Package mirrors
If you add a new repository in your source.list file. before installing a new package you just need run the apt update command.
apt update
Friday, November 6, 2020
Free Instagram Followers, Likes, Views
TIPS AND TRICKS TO GAIN MORE INSTAGRAM FOLLOWER |
TIPS AND TRICKS TO GAIN MORE INSTAGRAM FOLLOWER
#followme
#followback
#pleasefollow
#follow4follow (#f4f)
How to Get More Followers on Instagram
all above mentioned is explaind in short below :-
To get more followers on Instagram do the following things:
- Create a custom or dedicated hashtag that includes your business name or a catchy phrase.
- Promote your dedicated hashtag on your other social profiles, on your website, and your email blast.
- Use industry-specific hashtags to ensure you gain a relevant following
- Get creative with your hashtags. Be funny, ironic, or outrageous – but never boring!
- Use event hashtags at seminars, conferences, annual events, and even local events.
- Watch topically relevant and trending hashtags. Join these conversations to get in front of more people.
- Use your bio link to drive traffic to your newest or most popular content.
- Write descriptive captions. Storytelling will help generate engagement and sharing.
- Interact with top influencers in your space and try to become one of their favorite people or brands.
- Don't want a tagged photo of you or your brand on your profile? Edit Tags to hide images from your profile.
- Adjust your settings so any potentially embarrassing tagged photos won't show without your approval.
- Develop your own unique, recognizable visual style. Figure out how you want to stand out and make it so!
- Visit the Places tab to see what's happening locally - your neighborhood, a city you're targeting in ads, or an event in a certain location.
- Use a call to action to tell people what you want them to do with your posts. Find clever ways to get people to share your content.
- Avoid the hashtags of desperation (#follow4follow, #follow, #followme, #followback). Just don't do it.
Sites Which Provide Free Instagram Follower And Likes
Get free Real Instagram Followers Per Site
📌They all work in such a way that you enter the
site with your username and password and receive it, or you just enter
your email and username and it will be sent after the email
confirmation.