This very simple (yet useful) tutorial walks you through the process of discovering, logging into and mounting iSCSI targets offered by a network-host, all through Linux Mint! :)
Firstly, install Open-iSCSI:
sudo apt-get install open-iscsi open-iscsi-utilsStart the iSCSI network interface (iSCSI daemon):
sudo /etc/init.d/iscsi-network-interface startThen discover iSCSI targets offered by supplied IP-address:
iscsiadm --mode discovery -t sendtargets --portal <IP-address>This will display the targetname (iqn--.:)
After finding a target, you will want to log into it (example targetname):
iscsiadm --mode node --targetname iqn.2013-11.net.cpd:san.target01 \
--portal 172.0.20.200 --loginYou now have an iSCSI target connected, now you will have to format the device (if it isn't already). It will appear as a new "/dev/sd*" harddisk-device. You can format and mount this target-device just as a normal block-device (HDD).