I attemped to solve this problem using a method that is slightly different from the solutions provided (but results in a correct answer), and I'd like to check if the logic is correct (it seems incorrect).
I created two opposing "players" - player 1, and then a group-player(player 2) that is players 2-6. I labeled the probability player 1 wins (eventually) as $p_1$ and the probability player 2 wins (eventually) as $p_2$.
Then, I wrote $p_1$ as the below, since player 1 hits 1 with 1/6 probability, and the game moves to player 2 with probability 5/6. When player 2 is rolling, player 2 must lose for player 1 to win, so I multiply by $P(\text{player 2 loses}) = 1-p_2$.
$p_1 = \frac{1}{6} + \frac{5}{6}(1-p_2)$
I wrote $p_2$ as the below, since player 2 wins with probability 1/6, gets to roll again with probability 4/6, and gives the dice back to player 1 with probability 1/6.
$p_2 = \frac{1}{6} + \frac{4}{6}p_2 + \frac{1}{6}(1-p_1)$.
Solving this system of equations yields $p_1 = 2/7$ and $p_2 = 6/7$. Clearly this doesn't make sense since by my construction, $p_1$ and $p_2$ are disjoint and should add to 1. Where did I go wrong in my setup?