TECH TIPS
How do I free up a TCP/IP port?
netstat -tulnap shows me what ports are in use. How do I free up a port in Linux? As the others have said, you'll have to kill all processes that are listening on that port. The easiest way to do that would be to use the fuser(1) command. For example, to see all of...
I can’t SSH to instance started in new subnet/zone
I have an AMI and security group that I've been starting instances from, using our VPC and a subnet we've had defined, for a long time. Once such instances start, I'm able to SSH to them.So far so good.Lately we started getting error messages about Amazon not having...
My screen went gray: how to turn off Windows 10 color filter mode
Maybe this has happened to you. You went to copy a quote from a press release and, suddenly, this is what you saw: Where’d my color go? I couldn’t figure out what the hell had happened, but my screen was suddenly gray. It was at the correct resolution, and everything...
How can I flush the DNS on Ubuntu 17.04?
How can I flush the DNS on Ubuntu 17.04? You may use this command: sudo systemd-resolve --flush-caches To verify that flush was sucessfull, use: sudo systemd-resolve --statistics
Let’s Encrypt: HTTPS installed for free (in 15 minutes) using cPanel
Introduction Your web site address starts with http:// The site contains interactive elements, such as payment buttons, or text forms etc. For the visitor, the site is flagged by the browser as ‘insecure’. You need to convert the site to https:// This requires that...
Install Sublime Text 3 in Ubuntu 16.04 & Higher The Official Way
The popular cross-platform Sublime Text editor finally offers official Linux apt repository to make it easy to install and receive update in Ubuntu. Sublime Text is a proprietary source code editor with a Python API. It supports many programming languages and markup...