What is the Internet?

we use the public Internet, a specific computer network (and one which probably most readers have used), as our principle vehicle for discussing computer networking protocols. But what is the Internet? We would like to give you a one-sentence definition of the Internet, a definition that you can take home and share with your family … Read more

GNU and Linux

Where did the name GNU/Liux come from? You’ve certainly heard of Linux before, and you may have heard of the GNU Project.You may not have heard the name GNU/Linux, although you’re probably familiar with the system it refers to. Linux is named after Linus Torvalds, the creator and original author of the kernel that runs … Read more

Elon Musk: New Self-Driving Features Will Come Out This year

No Hands! According to a tweet by Tesla CEO Elon Musk, the electric car company is going to “release more [Full Self-Driving] features later this month.” While Musk hasn’t confirmed what these features will turn out to be, we can make some educated guesses — and it might even be the long-awaited “City Autopilot” feature. FSD … Read more

Hackers Are Using Coronavirus Maps to Spread Malware

Malware Outbreak Coronavirus outbreak dashboards — like this one, created by John Hopkins University — have become an extremely useful way to keep track of how the deadly virus is spreading across the globe. But hackers are creating fake coronavirus maps to infect users with malware. Doppelganger Security researcher Shai Alfasi at Reason Labs discovered … Read more

Microsoft, Ubisoft move to digital events after E3’s cancellation

On Wednesday, the Entertainment Software Association (ESA) canceled the Electronic Entertainment Expo — better known as E3 — over concerns regarding the spread of COVID-19, the novel coronavirus. The World Health Organization officially declared COVID-19 a pandemic on Wednesday. The ESA said it’s “exploring options with our members to coordinate an online experience to showcase … Read more

Google’s G Suite Cracks 2 Billion Users

Google’s G Suite, which includes Gmail, Google Docs, Hangouts, Meet and other apps, quietly passed a major milestone at the end of last year: It now has more than 2 billion monthly active users, G Suite boss Javier Soltero told Axios Wednesday. From a report: Long seen as the upstart challenger to Microsoft Office, Google’s … Read more

How to Extract Information about Hardware Components

You can also use the dmidecode utility to extract hardware information by reading data from the DMI tables. To print information about system, run this command. To print information about BIOS, run this command. To print information about processor, run this command.

How to Print PCI Devices Information

PCI devices may included usb ports, graphics cards, network adapters etc. The lspci tool is used to generate information concerning all PCI controllers on your system plus the devices that are connected to them. Use the -t option to produce output in a tree format. Use the -v option to produce detailed information about each … Read more

How to View Linux CPU Information

To view information about your CPU, use the lscpu command as it shows information about your CPU architecture such as number of CPU’s, cores, CPU family model, CPU caches, threads, etc from sysfs and /proc/cpuinfo. [centos7@localhost ~]$ lscpu Architecture:               x86_64 CPU op-mode(s):        32-bit, 64-bit Byte Order:                 Little … Read more

How to View Linux System Information

To know only system name, you can use uname command without any switch will print system information or uname -s command will print the kernel name of your system. root@localhost ~ $ uname Linux To view your network hostname, use ‘-n’ switch with uname command as shown. root@localhost ~ $ uname -n localhost.localdomain To get … Read more