-
Posts
7 -
Joined
-
Last visited
-
Days Won
1
Reputation Activity
-
coosee got a reaction from angus71 in new installation with reiserfs as filesystem
there's no need for Boot to be journaled - use ext2 !
but, it's possible, i assume.
for UEFI, you need a FAT 32 Boot partition.
-
coosee got a reaction from AdiosKid in GCC update
hello,
using gcc-6.2 for quite some time now, originally from hardened overlay and no problems so far, except some packages needed extra gcc-6.2 patching.
my new xeon system purrs like a kitten :D
greetings
-
coosee got a reaction from Sandro in GCC update
hello,
using gcc-6.2 for quite some time now, originally from hardened overlay and no problems so far, except some packages needed extra gcc-6.2 patching.
my new xeon system purrs like a kitten :D
greetings
-
coosee reacted to AdiosKid in Taking a system backup as a tar archive.
you can use that of course is as the Stage 3 is compress don't have any problem
but you can use a personal script, I use that
more faster but more size on disk :
tar -cvpf /stage4.tar.xz --directory=/ --exclude=/stage4.tar.xz --exclude=/dev/* --exclude=/lost+found --exclude=/mnt/* --exclude=/proc/* --exclude=/run/* --exclude=/sys/* --exclude=/tmp/* --exclude=/var/log/* --exclude=/var/run/* --exclude=/var/tmp/* / or that more slow(very slow) but less than half of the other option :
tar -cpvf - --directory=/ --exclude=/stage4.tar.xz --exclude=/dev/* --exclude=/lost+found --exclude=/mnt/* --exclude=/proc/* --exclude=/run/* --exclude=/sys/* --exclude=/tmp/* --exclude=/var/log/* --exclude=/var/run/* --exclude=/var/tmp/* . | xz -9e -c - > /stage4.tar.xz of course you can change the exclude folders and files as you wish.
