https://github.com/jabedude/cyber-patriot
https://github.com/jabedude/cyber-patriot
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jabedude/cyber-patriot
- Owner: jabedude
- Created: 2017-10-07T02:50:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-07T04:14:04.000Z (about 8 years ago)
- Last Synced: 2025-01-20T09:46:28.666Z (11 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linux Guide

### Software:
Command Line Update:
* Google the correct contents for your sources file then place it in /etc/sources:
```bash
$ sudo gedit /etc/sources
$ sudo apt-get update
$ sudo apt-get upgrade
```
Search for installed program:
```bash
$ dpkg -l | grep
```
Uninstall program:
```bash
$ sudo apt-get remove --purge
```
___
### User Accounts:
View user accounts:
```bash
$ sudo gedit /etc/shadow
$ sudo gedit /etc/passwd
```
___
### Services:
Start a service:
```bash
$ sudo service start
```
Stop a service:
```bash
$ sudo service stop
```
___
### Process/Network:
List all processes:
```bash
$ ps -fAH
```
Look for the following "bad" processes:
* nmap
* john
* netcat/nc/ncat
Kill process:
```bash
$ pkill
$ kill -9
```
List network connections:
```bash
$ netstat -naptu
```
### Stuff used to make this: