•T/F: Microsoft Windows is a System Software •T/F: Database Management Systems are System Software •T/F: Device Drivers are System Software •Microsoft Word is an Application Software •True or False: Operating system provides a kernel and Shell/Interface software (among other things) •T/F: Cars do not have any Microprocessor and Cars cannot have any Operating System •What …
Category: Root
Dec 08
Terminating Process in Linux
Kill a Process •kill PID •kill -SIGNAL PID •Kill –s 9 pid •Kill -9 pid •kill -15 PID •
Dec 08
Process Control in Linux
Important Notes •System Processes •usually run •in the background •Use & to start •a process to the background •Use fg •to bring to foreground •Ctrl+z takes to background
Dec 08
Power Shell: Stop Process
Stop-Process -Name “notepad” Stop-Process -Id 3952 -Confirm –PassThru calc $p = Get-Process -Name “calc” Stop-Process -InputObject $p Get-Process | Where-Object {$_.HasExited} Get-Process -Name “lsass” | Stop-Process
Dec 08
Power Shell: Process
Dec 08
Some Web Administration Tasks
systemctl start httpdsystemctl start mariadbsystemctl restart httpdsystemctl restart mariadb systemctl enable httpdsystemctl enable mariadb
Dec 08
Monitor Process in Linux
Monitor Process in Linux •ps •pstree •top Who Monitors Processes? •Admins •Developers as needed Tasks •start, stop, restart, status, kill
Dec 08
How to execute Power Shell Scripts
•powershell.exe -noprofile -executionpolicy bypass -file .\hello.ps1 •Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force; •Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted -Force; •set-executionpolicy remotesigned • •