operacja python socket.error niedozwolona

Używam poniżej kodu jako root i używając python2.6.1, platforma jest linux

>>> import socket
>>> serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
>>> serversocket.bind((socket.gethostname(), 80))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1, in bind
socket.error: [Errno 1] Operation not permitted

Jak rozwiązać ten problem

questionAnswers(1)

yourAnswerToTheQuestion