You can view all running processes on a computer in PowerShell with what command?
- Get-Process
- Show-Process
- Gimme-Dem-Processes
- List-Process
EXPLANATION
The command Get-Process shows all current running processes. You can pipe the output into other commands to get even more detail and information.
Tuesday, January 12, 2021
In our Linux machine, we've found an issue, maybe some driver is not loaded properly during the boot process, how can we be sure?
In our Linux machine, we've found an issue, maybe some driver is not loaded properly during the boot process, how can we be sure?
- init 6 command
- whoami command
- dmesg command
- w command
EXPLANATION
dmesg (Display message or driver message) is a command
which will show Kernel ring buffers. These messages contain valuable
information about device drivers loaded into the kernel at the time of
booting as well as when we connect a hardware to the system on the fly.
In other words dmesg will give us details about hardware drivers
connected to,
disconnected from a machine and any errors when hardware
driver is loaded into the kernel. These messages are helpful in
diagnosing or debugging hardware and device driver issues
SOURCE
https://www.linuxnix.com/what-is-linuxunix-dmesg-command-and-how-to-use-it/
Monday, January 11, 2021
When programming in Python 3, which code has the right syntax?
When programming in Python 3, which code has the right syntax?
- print("Hello, World")
- print("Hello, World')
- print("Hello, World"
- print (Hello, World)
EXPLANATION
Syntax errors are a the most common problem when programming. For basic programming, an open bracket is required for any parameters to be passed to a function, and strings (text) requires quotes to distinguish itself from any variables in the code.
SOURCE
https://medium.com/groklearning/syntax-error-how-to-avoid-the-most-common-trap-for-new-programmers-1424472c3e57Tuesday, December 22, 2020
What is the Windows command line tool that allow you to add a driver package to the driver store?
What is the Windows command line tool that allow you to add a driver package to the driver store?
- DrvUtil
- PnPUtil
- DrvStrUtil
- AddD
EXPLANATION
PnPUtil (PnPUtil.exe) is a command line tool that lets an administrator perform the following actions on driver packages:
Adds a driver package to the driver store.
Installs a driver package on the computer.
Deletes a driver package from the driver store.
Enumerates the driver packages that are currently in the driver store. Only driver packages that are not in-box packages are listed. An in-box driver package is one which is included in the default installation of Windows or its service packs.
SOURCE
https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/pnputil
Friday, December 18, 2020
Which of the following is not a type of server software that is provided by VMware ?
Which of the following is not a type of server software that is provided by VMware ?
- VMware ESXi Server
- VMware ESX Server
- VMware Server
- VMware ESI Server
EXPLANATION
VMware provides three different types of server software
VMware ESX Server, VMware ESXi Server, VMware Server.