I second the claim that the random command on some old computers produced the same sequence of numbers. My experience was primarily with the Commodore 64. I even discovered that if I plotted dots at supposedly random XY coordinates, over time a pattern of diagonal lines would emerge. The fact that any pattern at all would appear proves the numbers were not truly random, but following some sort of sequence.
I even used this discovery as the basis for a game I programmed called Wizard's Vault. The game had you control a wizard and you had to collect gold while walls were building themselves all around (randomly). Screenshot here:
As you can see from the partially built walls in that screenshot, even though I was only using Random to determine XY placement of each wall portion, they ended up forming diagonal lines!
If I ever wanted more truly random values, I used the system clock as the seed.