# Nalezy to automatycznie zrobic zawsze po boot systemu w NODE
#
#
#
# mkdir -p /mnt/tmp 	#do it during intilaization of ARCHI filesystem in NODE
# chmod o+rw /mnt/tmp 	# REAR/WRITE for all users
#
# mounting buffers of size 10MB
mount -t tmpfs -o size=10m tmpfs /mnt/tmp #do it as ROOT
#
#monunt disks in /home/D1 and /home/D2
#
#mount -t ext4 /dev/sda1 /home/D1 #do it during boot OS
#mount -t ext4 /dev/sdb1 /home/D2 #do it during boot OS
#
#
#stop services and SELinux
#
service iptables stop
setenforce 0
#service sshd stop
