- 
   
   Using Centos 7.1
   - 
   
   Set up Centos kickstart with access to the following repo’s. This will 
   give you a kickstart build with the updates, the extras, and the epel 
   packages all installed from the start. See kickstart for more info.
   - 
      
      base
      - 
      
      updates
      - 
      
      extras
      - 
      
      epel
      - 
   
   Packages to add to kickstart file in addition to @core and @base
   - 
      
      epel-release
      - 
      
      fuse
      - 
      
      fuse-devel
      - 
      
      fuse-libs
      - 
      
      gcc-c++
      - 
      
      libattr-devel
      - 
      
      net-snmp
      - 
      
      psmisc
      - 
      
      python34
      - 
      
      python34-devel
      - 
      
      sqlite-devel
      - 
      
      sqlite-doc
      - 
      
      xz-devel
      - 
   
   Packages to remove from default build
   - 
      
      selinux-policy*
      - 
   
   Once system is built, it needs the python package manager pip/pip3. To 
   add python3 package manager (pip3) do the following
   

wget https://bootstrap.pypa.io/get-pip.py

chmod 0700 get-pip.py

python3.4 get-pip.py


   - 
   
   Packages to be added by pip3
   - 
      
      pycrypto
      - 
      
      defusedxml
      - 
      
      requests
      - 
      
      llfuse
      - 
      
      dugong
      - 
      
      python-systemd
      

pip3 install pycrypto defusedxml requests llfuse dugong python-systemd


   - 
   
   packages to download and build
   - 
      
      apsw version to match sqlite. Currently this is 3.7.17
      

cd /usr/local/src

wget https://github.com/rogerbinns/apsw/archive/3.7.17-r1.tar.gz

tar -xzpf 3.7.17-r1.tar.gz

cd apsw-3.7.17-r1/

python3.4 setup.py install


   - 
      
      s3ql. Download had problems resolving the redirects using wget. 
      Downloaded via browser instead and copied from nfs server. Otherwise, 
this 
      should work.
      

cd /usr/local/src

wget https://bitbucket.org/nikratio/s3ql/downloads/s3ql-2.15.tar.bz2

tar -xjpf s3ql-2.15.tar.bz2

cd s3ql-2.15/

python3.4 setup.py build_ext --inplace

python3.4 runtests.py tests

python3.4 setup.py install

-- 
You received this message because you are subscribed to the Google Groups 
"s3ql" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to