How to switch between users on one terminal?

You could use the “su” command. $ whoami user1 $ su – user2 Password: $ whoami user2 $ exit logout If you want to log in as root, there’s no need to specify username: $ whoami user1 $ su – Password: $ whoami root $ exit logout Generally,...

Linux and Unix chmod command

About chmod chmod is used to change the permissions of filesor directories. Overview On Linux and other Unix-like operating systems, there is a set of rules for each file which defines who can access that file, and how they can access it. These rules are called file...

MORE CHROMEBOOKS GETTING ANDROID APPS IN BETA CHANNEL

It looks like the Chrome OS developers are sneaking updates for the Play Store into more Chromebooks. Likely added in the latest Beta Channel update, we are seeing multiple devices with Android App support in Beta via a quick little method that works easily. We’ve...

How to Enable Developer Mode on Your Chromebook

Put your Chromebook into “Developer Mode” and you’ll get full root access, including the ability to modify your Chromebook’s system files. This is often used to install a full Linux system with something like Crouton. Developer Mode has other uses, too. You don’t have...

How to Flush DNS Cache in Mac OS X EI Capitan: 10.11, 10.10.4

Most useful way if you’re a network administrator, Server administrator or web developer. And you’re working with Mac OS X machine likely MacBook Pro, MacBook Air, iMac or Mac Mini. Furthermore each version of Mac OS X has different- different command to reset DNS...

20 Command Line Tools to Monitor Linux Performance

It’s really very tough job for every System or Network administrator to monitor and debug Linux System Performance problems every day. After being a Linux Administrator for 5 years in IT industry, I came to know that how hard is to monitor and keep systems up and...

Make Your Own Miniature Linux Laptop for Less Than $100

While you can install Linux on just about anything, old tablets are probably the cheapest way to do it. Case in point, Node put together a guide that repurposes a Nexus 7 tablet and converts it into a micro-sized laptop. The process here uses an old Nexus 8 tablet, a...

Lessons From the Dyn DDoS Attack

A week ago Friday, someone took down numerous popular websites in a massive distributed denial-of-service (DDoS) attack against the domain name provider Dyn. DDoS attacks are neither new nor sophisticated. The attacker sends a massive amount of traffic, causing the...

Yahoo: One Billion More Accounts Hacked

Just months after disclosing a breach that compromised the passwords for a half billion of its users, Yahoo now says a separate incident has jeopardized data from at least a billion more user accounts. The company also warned attackers have figured out a way to log...

WHAT IS WORDPRESS MULTISITE?

When you first install WordPress, you’re limited to one domain. WordPress Multisite lets you use multiple domains, with one single WordPress install. This means that when you login to your WordPress Dashboard, you can manage all your sites from one admin page. There...

Mac Won’t Sleep? Here’s How to Find Out Why And Fix It

On the rare occasion that you go to put a Mac to sleep and, well, it won’t sleep, there’s an easy to way to find out what the holdup is. Though this is a somewhat technical approach, it should give a good starting point to anyone who’s confused as to why something...

How To Use Block Storage on DigitalOcean

Introduction DigitalOcean’s Block Storage allows you to create and attach additional storage volumes to your DigitalOcean Droplets. Volumes are an independent resource that can easily be moved from one Droplet to another within the same datacenter. Attached...

OpenDNS Updater for Linux / Ubuntu

sudo apt-get install ddclient sudo nano /etc/ddclient.conf ## OpenDNS.com account-configuration ## use=web, web=myip.dnsomatic.com ssl=yes server=updates.opendns.com protocol=dyndns2 login=opendns_username password=opendns_password opendns_network_label Now, just to...

How to Display (List) All Jobs in Cron / Crontab

Servers can automatically perform tasks that you would otherwise have to perform yourself, such as running scripts. On Linux servers, the cron utility is the preferred way to automate the running of scripts. For an introduction to Cron check-out our KB: How To:...