The LU factorization can be extremely slow or intractable for very large matrices, especially large sparse matrices. The other methods you mention are all iterative methods, which are applicable to large sparse systems of equations, which cannot be solved directly in any reasonable amount of computational time.
Sparse means that a lot (i.e., a vast majority) of the entries in the matrix are zero. The zero entries do not need to be stored or used in computations, which drastically decreases memory requirements and accelerates computations. In sparse settings, you normally cannot even afford to store the whole dense matrix in memory, due to its sheer size, so the LU factorization (which is not sparse) is not tractable.
The field of iterative methods for solving linear systems is huge, simply because the method should be adapted to the type of linear system you are solving. For solving $Ax=b$ where $A$ is symmetric and positive definite, the conjugate gradient method (with preconditioning) is one of the best iterative methods. When $A$ is not symmetric, the GMRES (not GIMRES) method is very good. The Arnoldi iterations are used for sparse eigenvector solvers (as is the Lanczos algorithm). There are many other methods as well (e.g., Jacobi iteration).
Simply put, solving linear systems, especially very large ones, is extremely hard to do efficiently, and it is extremely important to use a method that is adapted to the properties of the particular linear system you are solving. This is why there are so many different methods.