Tag: home

  • Hacking your GoFlex Home, #2 UART Serial Console

    Serial console? That’s beautiful when it comes to debugging. The following images are specific to the Seagate GoFlex Home, however, you may be able to figure out the connections for other Marvell SoCs. On the board: Notice that according to the picture, the bottom right last three pins are used. The junction: I’ve used extra…

  • Resetting a User’s Home Permissions

    Recently I managed to mess up my home permissions, to the extent that I owned the files, but couldn’t read them. Fixing an entire user’s home directory permissions is simple and easy. # chown user:user -R /home/user/ # chmod -R u+rwX /home/user/ Done.