Get information about an ISO image very easily on Linux. How to view the contents.

Getting information about an ISO image is very easy on Linux. You do not need to mount one to view the contents with ls. There is a simple utility for viewing the contents of ISO images. I created an ISO image like this. ┌──[[email protected]]─[~/Documents] └──╼ ╼ $ mkisofs -A "Solyanka Music" -iso-level 4 -J -L … Read more

More MySQL tips for viewing data in a database and listing the columns in a table.

In this example; we are using the old and crusty Northwind database in the latest MySQL database engine. Here I am showing the tables in the database. mysql> show tables in nw_old; +——————+ | Tables_in_nw_old | +——————+ | categories | | customers | | employees | | order_details | | orders | | products | … Read more