# scsts **Repository Path**: bgcls/scsts ## Basic Information - **Project Name**: scsts - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: ubuntu-3.4.x - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-03 - **Last Updated**: 2021-02-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Build Tested on Ubuntu 16.04 and 18.04. Prebuilt packages available on [releases](https://github.com/ubuntu-pkg/scst/releases) page and [ppa](https://launchpad.net/~scst/+archive/ubuntu/3.4.x). * Create an empty working directory ``` rm -rf ~/scst-build mkdir ~/scst-build cd ~/scst-build ``` * Install dependencies ``` sudo apt install git devscripts equivs gdebi-core git clone -b ubuntu-3.4.x https://github.com/ubuntu-pkg/scst.git cd scst sudo mk-build-deps -i -r ``` * Build package ``` dpkg-buildpackage -b -uc ``` # Install * Install built package ``` sudo gdebi ../scst-dkms_*deb sudo gdebi ../iscsi-scst_*.deb sudo gdebi ../scstadmin_*deb ``` * Create `scst.conf`. You can use included sample to start ``` sudo cp /etc/scst.sample.conf /etc/scst.conf ``` * If you use sample conf, prepare zram block device ``` sudo modprobe zram echo $((64*1024*1024)) | tee sudo /sys/block/zram0/disksize ``` * Restart scst service ``` sudo systemctl restart scst sudo systemctl status scst ```