You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
StephanSainleger 62a3948f5d Merge pull request 'maj master' (#1) from 0k/0k-charms:master into master 3 years ago
..
hooks/install.d new: [host] several small adjustments 3 years ago
src/etc chg: updated further the script for host installation. @wip 10 years ago
README new: use links temporarily to express inheritance. 8 years ago

README



How to get this:


mkdir -p /opt/apps &&
cd /opt/apps &&
git clone ssh://git.0k.io:10022/var/git/0k/0k-charms &&
cd 0k-charms/precise/host


How to execute all scripts:

for script in hooks/install.d/*.sh; do
[ -x "$script" ] || {
echo "Ignoring '$script': not executable" >&2
continue
}
"$script"
done



You should probably think about getting the last kernel:

Check: https://btrfs.wiki.kernel.org/index.php/Changelog

Get kernels:

- OVH: ftp://ftp.ovh.net/made-in-ovh/bzImage

Example:

cd /boot
wget ftp://ftp.ovh.net/made-in-ovh/bzImage/2.6.34.6-3/bzImage-2.6.34.6-xxxx-grs-ipv6-64
wget ftp://ftp.ovh.net/made-in-ovh/bzImage/2.6.34.6-3/System.map-2.6.34.6-xxxx-grs-ipv6-46
update-grub

- legacy:



And build the latests ``btrfs-tools``:

https://btrfs.wiki.kernel.org/index.php/Btrfs_source_repositories


apt-get install -y build-essentials autotools uuid-dev libattr1-dev \
zlib1g-dev libacl1-dev e2fslibs-dev libblkid-dev liblzo2-dev
./autogen.sh &&
./configure --prefix=/opt/apps/btrfs-tools &&
make &&
make install &&
ln -sf /opt/apps/btrfs-tools/bin/* /usr/local/bin/ &&
apt-get remove btrfs-tools