Private IP address ranges , sometimes called reserve ranges, are for internal devices only. This is the list along with a few other special ranges that are common and should be known.
224.0.0.0 – 239.255.255.255 (Reserved for TV networks)
LoopBack
127.0.0.1 – 127.255.255.255 Used for network testing. Specifically, it tests a computer’s TCP/IP network software driver to ensure it is working properly.
The apt (aptitude) command is just a a shortened version of the apt-get command. They are synonymous terms. Use the ‘apt’ command to update and manage your installed software packages. Use with Ubuntu or Debian Linux servers.
Update and upgrade your system
# apt update (date your local repository list) # apt upgrade (update all installed packages) # apt autoremove (remove packages that were installed as dependencies) # apt autoclean (clean the /var/cache/apt/archive folder).
List all installed packages
dpkg --list
apt list --installed
Get a list of all packages that can be upgraded
apt list --upgradable
Remove packages with out uninstalling config files
Rub chicken skin with oil inside and out. Sprinkle with salt, pepper, and spices. Add butter under chicken skin. Place chicken on a can. Place can as far as possible from coals. Turn chicken every 15 minutes. Spritz skin, with water, to keep moist. Place a pan on top of coals and pour in some beer or water for added moisture.
Cook at 350 deg for 1 1/2 hour until 170 deg.
1 chimney = 300 deg for drum barrel Chargriller, about 1 1/2 chimney.
In the modern information age, there are numerous laws which affect the collection and storage of digital data. These laws often reference security standards that define specific methods of collection, the manner of storage, and other requirements that companies must follow. These regulations and laws are typically industry specific.
The primary purpose of these laws is to create a base line of rules for companies that collect data on consumers. They outline security protocols that must be followed to keep data safe. For example, a customer’s username and password must be encrypted.
These rules are collectively known as security frameworks, security standards, regulatory & compliance requirements, among other names.
There are three methods to upload and download data to Amazon Web Services. You can use the command line (CLI), AWS SDK, or the S3 REST API. In this article, we will explore the command Line interface, and the most common commands to manage an S3 bucket.
The maximum size of a file that you can upload by using the Amazon S3 console is 160 GB. The maximum bucket size is 5TB. You can not use s3api on files uploads larger than 5GB. Command line tools can achieve upload speeds greater than 7 MB’s. But, you can go even faster if you turn on acceleration. It is not recommended because an additional cost will be incurred.
Common switches
–dryrun = test what files would be uploaded, prior to running command.
— summarize = include a total at the bottom of the output.
— human-readable = show files sizes in Gb and not Bytes.
–output text = format the output on separate lines
–content-type=text/plain = Tell aws the upload data is text data (not video or other).
–recursive = show full file path
–exclude – leave out certain files.
–include = include certain files.
–delete = this flag is needed to remove any files.
–meta-data = Use this flag to upload custom data like the true MD5 hash
List contents of a bucket
aws s3 ls s3://bucket1/directory1/directory2/ --summarize --human-readable
Copy a single file
If the file is large, the cp command will automatically handle a multi-part upload dynamically. If the full path is not present, it will create it automatically in the s3 bucket.