Processor Info: cat /proc/cpuinfo Disk info – Vendor, Model, Logical Name, Serial Number, Size, etc… sudo lshw -class disk more to come…
Archives for February 2013
Ubuntu “Wired Device Not Managed”
Change managed=false to managed=true sudo vim /etc/NetworkManager/NetworkManager.conf Restart Network Manager sudo service network-manager restart
Fix “Could not reliably determine the server’s fully qualified domain name” when starting Apache server on Ubuntu
This error happens because your server doesn’t have ServerName Apache 2 variable defined and reverse lookup on your IP address returns nothing. We can specify ServerName as 127.0.0.1 to make this message disappear. Just open your favorite terminal emulator and paste: echo “ServerName 127.0.0.1” | sudo tee -a /etc/apache2/conf.d/server_name Restart Apache sudo service apache2 restart
Create New MySQL User & Grant Priveleges
CREATE USER ‘newuser’@’localhost’ IDENTIFIED BY ‘password’; GRANT ALL PRIVILEGES ON *.* TO ‘newuser’@’localhost’; The *.* refers to Database_Name.Table_Name Reload Privileges FLUSH PRIVILEGES: How To Grant Different User Permissions Here is a short list of other common possible permissions to give users: ALL PRIVILEGES- as we saw previously, this would allow a MySQL user all access […]
Plex Media Server 501 Error on PS3
Seemed to have happened out of nowhere, just started getting errors. Came across this old post, but it seems to have done the trick. 1. Locate your Plug-ins directory (For me, this refers to the /var/lib/plexmediaserver/Library/Application Support/Plex Media Server/ directory.). 2. Delete the System.bundle and Framework.bundle directories. 3. Restart the media server.