[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
howtos:network_services:iscsi [2019/12/01 00:05 (UTC)] – [Configuration] bifferoshowtos:network_services:iscsi [2019/12/01 00:33 (UTC)] – [Target Configuration] bifferos
Line 47: Line 47:
 <code> <code>
 # cat /etc/iscsi/initiatorname.iscsi  # cat /etc/iscsi/initiatorname.iscsi 
 +</code>
 +
 +Mine looks like this:
 +<code>
 +InitiatorName=iqn.2005-03.org.open-iscsi:91871cf5e261
 </code> </code>
  
Line 65: Line 70:
 targetcli is a bit like a command-line directory browser except you use it to change values in a hierarchical store. That same hierarchy also contains the commands you invoke to make changes, however.  You've probably not seen anything like it before and it's best just described by example. targetcli is a bit like a command-line directory browser except you use it to change values in a hierarchical store. That same hierarchy also contains the commands you invoke to make changes, however.  You've probably not seen anything like it before and it's best just described by example.
  
 +Start by launching targetcli
  
 +<code>
 +# targetcli
 +targetcli shell version 2.1.51
 +Copyright 2011-2013 by Datera, Inc and others.
 +For help on commands, type 'help'.
 +
 +/>
 +</code>
 +
 +Assuming you have a spare (unused) disk, you can now create a block device, e.g.:
 +
 +<code>
 +/> backstores/block create name=myblockdevice dev=/dev/sdb
 +Created block storage object block using /dev/sdb.
 +</code>
  
 +That should be pretty obvious.
  
  
 howtos:network_services:iscsi ()