Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix table pipe style errors #75

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/basic-smf-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ case to figure out which ipf.conf ipfilter is using:
Using SMF to uncover information about a service is easy.

<!-- markdownlint-disable line-length -->
| Command | Description
| Command | Description |
| ---------------- | ----------------------------------------------------- |
| `svcs -a` | List all services for this SmartMachine, including disabled services. |
| `svcs -x` | List explanations for all services that are running but not enabled or services that are preventing another service from running. |
Expand Down
4 changes: 2 additions & 2 deletions docs/the-linux-to-smartos-cheat-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,7 @@ For example, here are some common Linux commands that work differently.
<!-- markdownlint-disable line-length -->

| Command | What's different on a Smart Machine |
| ------- | ------------------------------------------------------------
| ------- | ------------------------------------------------------------ |
| `df` | On most SmartOS image this is set up to use the GNU version. Use `/usr/bin/df` for the native version. |
| `lsof` | SmartMachines use a different collection of tools to examine processes. See [Examining processes and memory](#examining-processes-and-memory) later in this topic. |
| `ping` | Returns whether a host responds or not.  Use `ping -s` to get a continuous response. |
Expand All @@ -1248,7 +1248,7 @@ more about them by looking at the `proc` man page.
<!-- markdownlint-disable line-length -->

| Tool | Description |
| ---------- | ---------------------------------------------------------
| ---------- | --------------------------------------------------------- |
| `prstat` | This tool displays the active processes like `top` does on Linux systems. `prstat -Z` will provide you with a summary of your instance's status. |
| `pgrep` | Returns a list of process IDs (PIDs) of processes that match a pattern or meet certain conditions. |
| `pkill` | Kills the processes that match a pattern or meet certain conditions. |
Expand Down
Loading