I think a fastest way to determine an Eigen vector of a matrix corresponding to an Eigen value is by using Cramer's rule. But if two equations are identical, then applying Cramer's rule is not possible.
Edit: For example, if matrix $A=\begin{pmatrix}-1 & -1 & -1\\-2&-2&-2\\0&0&0\end{pmatrix}$. Then the system of equations is:
$x+y+z=0$
$x+y+z=0$.
$0x+0y+0z=0$. Then by Cramer's rule,
$\frac{x}{1-1}=-\frac{y}{1-1}=\frac{z}{1-1}=k$(say)
$\implies \frac{x}{0}=-\frac{y}{0}=\frac{z}{0}=k$, which gives an Eigen vector $(0, 0, 0)$, which is false (because an Eigen vector is non zero by its definition).
How to solve the above system of equations in order to determine an Eigen vector?
Cramer's rule is one way (and not a good way) to solve some systems of linear equations. It has little to do with finding eigenvalues and eigenvectors.
Cramer's rule fails in this case because that system is not always solvable. The determinant (the denominator in Cramer's rule) is $0$. In this example the vectors $(0,0,1)$ maps to the zero vector, so $(0,0,1)$ is an eigenvector with eigenvalue $0$. Each of $(1,0,0)$ and $(0,1,0)$ is also an eigenvector. Can you find the corresponding eigenvalues?
In general, you find eigenvalues by finding the roots of the characteristic polynomial. In this case you can do that by inspection - because the rows of the matrix are constants.