Por que o 'lspci -xxx' é perigoso?

6

Rodando lspci --help , vejo esta linha:

-xxx        Show hex-dump of the whole config space (dangerous; root only)

Por que isso é perigoso?

    
por Dmitry Kudriavtsev 07.02.2017 / 21:45

1 resposta

8

Na página de manual :

-xxx

Show hexadecimal dump of the whole PCI configuration space. It is available only to root as several PCI devices crash when you try to read some parts of the config space (this behavior probably doesn't violate the PCI standard, but it's at least very stupid). However, such devices are rare, so you needn't worry much.

Então, basicamente, é perigoso porque pode travar certos dispositivos PCI, o que geralmente significa que você precisa reinicializar o sistema (e fazer com que você perca dados).

    
por 07.02.2017 / 22:02