Skip to content

Phone Number Privacy Apps – 2018

  • Phones

Private Numbers Apps for Your Cell Phone

The need to keep your number private increases by the day.  Websites, and Applications constantly request your cell phone number to verify who you are, when you sign up, but how do you know you can trust these sites?  Who has access to your cell phone number now?  The lack of privacy is growing by the day.  I don’t know about you, but I do not want my cell number all over craigslist every time I contact a potential seller for something.

The solution to the problem is easy, keep your cell number private and use a temporary number to Text, or Call from.  You can receive temporary numbers to get the access you need and still remain private.  Below you will find a list of applications that will help you on this quest, and a bit of info about each.

Hushed:
– No phone number required during Sign-Up
– No email required during Sign-Up
– You can purchase a number for a few dollars through the App Store, instead of putting your info into some third party site
– Allows for a secure passcode when you open the app each time

TextFree:
– Requires an email address to join, however this can be a throwaway address from any domain such as gmail
– You will have a free number to use for text messaging or receiving text messages, and you can use this to sign up for other apps on the list if you so choose.

Flyp:
– Verification using a phone number that the app can text. You could use a TextFree number to receive this verification.
– App requires you to buy a package immediately during signup, so this is where my research ended

Unlisted:
– Name and Email address required during Sign-Up. You can use a free email service to receive the verification.
– App requires you to buy a package immediately to receive a phone number, so this is where I stopped as well.

Burner:
– Requires a number to Sign-Up. You CAN NOT use a TextFree number for this verification, it gives you an error about an Unsupported Carrier. So it will require your actual cell phone number sign up, and defeats the purpose of why we want the app.

Sideline:
– Requires a number when signing up. This can be a TextFree number.
– 7-Day Free Trial is available as well. So you can use this service, just remember to cancel it after the 7 days is up, unless you want the number for a longer period of time.

Choose which works best for you, or a combination of two apps.  I liked the ability to get a free TextFree Number to receive the verifications from the other apps, and would suggest starting with that.

Install Alfa AWUS036ACH Drivers on ParrotOS

Simple Command To Install Alfa Drivers

Open a terminal and escalate your privelages

sudo bash

ifconfig

Note your wireless adapters…if any are installed

apt-get install realtek-rtl88xxau-dkms

Drivers will install, this may take a few minutes.

Once it is done type the following

ifconfig

You will now see your ALFA wireless card

 

 

Deleting Linux Partitions on USB Drive From Windows 10

How to Delete Linux Partitions on USB Drive using DISKPART on Windows 10

On your Windows 10 computer, insert the linux USB drive

Press the Windows + R button on your keyboard

In the newly launched RUN box, type:

diskpart

And press Enter

From the DISKPART box, type in the following commands

list disk

Now find your USB Drive.  My USB Drive is Disk 1, so I will use that for the rest of the guide.

select disk 1

list partition

select partition 1

delete partition 1 override

select partition 2

delete partition 2 override

Do those steps until you have deleted all of the partitions.  Close the dialog box.  Remove the Drive, and you are ready to go with a new, fresh, unformatted drive.

 

Windows 10 Encrypted Folder

How To Encrypt A Folder on Windows 10

Open Windows Explorer

Right-click the file or folder that you want to encrypt

Select Properties

Click the Advanced button at the bottom

Place a check mark in the box next to Encrypt Contents To Secure Data

Click OK

You are done.  Folder is encrypted.  Make sure you backup your keys to a safe place.

Remove Groove Music from Windows 10

Removing This Troublesome App Via Powershell

In the Type Here To Search box

Type in Windows Powershell and it will show up

Right Click on Windows Powershell and Select Run as Administrator

Past in the following command

remove-AppxPackage (Get-AppxPackage –AllUsers|Where{$_.PackageFullName -match "ZuneMusic"}).PackageFullName

Hit Enter

And that is it!  Program Removed!

CLINFO Number of Platforms 0 Error

Running CLINFO Returns The Error “Number of Platforms – 0” Even With AMD Drivers Installed

This happens in Ubuntu Server 18.04 and most likely other versions.  To fix it run the following:

sudo apt install mesa-opencl-icd

Configuring an IP Address in CENTOS

CENTOS – Configure IP Address on ifcfg-eth0

Log into the machine as root

Type:
nano /etc/sysconfig/network-scripts/ifcfg-eth0

change
BOOTPROTO=”dhcp”

to
BOOTPROTO=”static”

add
IPADDR=192.168.1.200
NETMASK=255.255.255.0
GATEWAY=192.168.1.1

leave the HWADDR line alone and on the next line down add

DNS1=192.168.1.1
DNS2=”4.2.2.2″

Change:
ONBOOT=”no”

to
ONBOOT=”yes”

and change
NM_CONTROLLED=”yes”

to
NM_CONTROLLED=”no”

file should now look like this:
DEVICE=”p1p1″
BOOTPROTO=”static”
IPADDR=”192.168.1.200″
NETMASK=”255.255.255.0″
GATEWAY=”192.168.1.1″
HWADDR=”00:12:34:56:78:90″
DNS1=”192.168.1.1″
DNS2=”4.2.2.2″
NM_CONTROLLED=”no”
ONBOOT=”yes”
TYPE=”Ethernet”
uuid=”UIHASD-ASDFASD-ASDFASDF-ADSF”
 Leave these values alone

save file
CTRL + O

and exit
CTRL + X

reboot your machine and you are all set

Raspberry Pi Backup using MAC

RASPBERRY PI – Backup Your Raspberry Pi SD Card Using a MAC

 

This is a quick how to on backing up your Raspberry Pi SD Card

Shutdown the Raspberry Pi and remove the SD Card

Plug the SD Card into your MAC

Go to Spotlight (the little magnifying glass on the top right of your MAC), type Terminal, and press Enter

Now the rest of the commands are done in the Terminal

Type:
sudo bash and press enter

Type in your password to get the # prompt

Type:
mkdir /raspberry-pi and press enter
mkdir /raspberry-pi/backups and press enter
cd /raspberry-pi/backups and press enter

Type
df -h and look for your SD Card. My card is listed as /dev/disk1s1. Once you know which card is your SD Card type

diskutil unmount /dev/disk1s1 (or whatever your SD Card is listed as)

dd if=/dev/rdisk1 of=/raspberry-pi/backups/wheezy-todaysdate-backup.img bs=1m and press enter

your SD Card will now be backed up

Once the backup is complete type:
diskutil eject /dev/rdisk1

And that is it.



Thanks for reading

Hardware that I used:
Raspberry Pi 4 (4gb)
https://amzn.to/3q551IO

SanDisk 32GB Ultra microSDHC UHS-I Memory Card with Adapter
https://amzn.to/2Vfvo0y

CanaKit 3.5A Raspberry Pi 4 Power Supply (USB-C)
https://amzn.to/3fNTYPu

CanaKit Raspberry Pi 4 Micro HDMI Cable – 6 Feet
https://amzn.to/33u5hr9

Western Digital 500GB WD_Black SN750 NVMe
https://amzn.to/3nZ5pH4

Plugable USB C to M.2 NVMe Tool-free Enclosure
https://amzn.to/3lflV3L

Restoring a Raspberry Pi Backup

This is a quick how to on restoring a backed up image to your SD Card Plug the SD Card into your MAC Go to Spotlight (the little magnifying glass on the top right of your MAC), type Terminal, and press Enter Now the rest of the commands are done in the Terminal Type: sudo bash and press enter Type in your password to get the # prompt Type: cd /raspberry-pi/backups and press enter Type df -h and look for your SD Card. My card is listed as /dev/disk1s1. Once you know which card is your SD Card type diskutil unmount /dev/disk1s1 (or whatever your SD Card is listed as) dd bs=1m if=/raspberry-pi/backups/wheezy-todaysdate-backup.img of=/dev/rdisk1 and press enter your SD Card will now be restore the backup Once the backup is complete type: diskutil eject /dev/rdisk1 And that is it. Thanks for reading Hardware that I use: Raspberry Pi 4 (4gb) https://amzn.to/3q551IO SanDisk 32GB Ultra microSDHC UHS-I Memory Card with Adapter https://amzn.to/2Vfvo0y CanaKit 3.5A Raspberry Pi 4 Power Supply (USB-C) https://amzn.to/3fNTYPu CanaKit Raspberry Pi 4 Micro HDMI Cable – 6 Feet https://amzn.to/33u5hr9 Western Digital 500GB WD_Black SN750 NVMe https://amzn.to/3nZ5pH4 Plugable USB C to M.2 NVMe Tool-free Enclosure https://amzn.to/3lflV3L