Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
Let me explain that SSH, or Secure SHell, is simply a way to securely connect to and get a remote shell on a Linux/UNIX system. Commands "in SSH" are actually relative to what shell you're getting once you SSH; SSH isn't a shell in itself. But, that all said, you can list all process like so:First off, how do you list all processes that are running using ssh?
ps -A
ps -u $USER
Linux kernel >=2.5 has built-in natural process affinity, which means that it will try and keep a process tied to a particular CPU as much as possible by default. This is very good behavior. However, you can manually bind a process to a particular CPU quite easily (you must own the process or be root):And how do you set the affinity of a process to one core of a CPU in Linux (anydistro)?
bind [I]pid cpu_mask[/I]
bind 242424 2