Error with Windows 10 Enterprise....

Comments, questions, bug reports, etc.
rradjab
Posts: 2
Joined: Mon Mar 12, 2018 12:42 pm

Re: Error with Windows 10 Enterprise....

Post by rradjab »

hello everyone
please help with installing ntfs-3g_fix.patch on debian based systems.
im trying wimapply ... /dev/sdb2 but i get the same problem [ERROR] Failed to set security descriptor on ...
and is any links to patched or fixed ntfs-3g----.deb package for debian ?
thank you
Andreas.Nick
Posts: 9
Joined: Tue Feb 27, 2018 1:41 pm

Re: Error with Windows 10 Enterprise....

Post by Andreas.Nick »

This might help. I've taken a rudimentary system. Attention - ntfs-3g is also installed by other packages. Then it doesn't work anymore. Please note the test at the end.

Code: Select all

##################### Basis
sudo apt-get install openssh-server
sudo apt-get install mc
sudo apt install net-tools
apt-get install git
apt-get install parted
apt-get install build-essential

##################### Requirenments

su 
apt-get install autotools-dev autoconf libtool pkg-config libxml2-dev libfuse-dev libgcrypt20-dev linux-source
#linux-source is a requirenment!

##################### Build

cd /var/tmp/
#git clone git://git.code.sf.net/p/ntfs-3g/ntfs-3g
cd ntfs-3g
git checkout edge

git reset --hard 67feb2
./autogen.sh
./configure 

make
make install

cd ..

wget https://wimlib.net/downloads/wimlib-1.12.0.tar.gz
tar -xvzf wimlib-1.12.0.tar.gz

cd wimlib-1.12.0

./configure --without-fuse --prefix=/usr  --build=i686-linux
make 
make install

##################### test
parted /dev/sdb mklabel msdos
mount -a
parted /dev/sdb mkpart primary ntfs 0 100%
mkfs.ntfs -f /dev/sdb1
wimlib-imagex apply /home/andi/install.wim 2 /dev/sdb1
Andreas.Nick
Posts: 9
Joined: Tue Feb 27, 2018 1:41 pm

Re: Error with Windows 10 Enterprise....

Post by Andreas.Nick »

I have now been able to generate a new boot disk for the Uranos project. Here you find a Makefile for a Ubuntu boot image which generates ntfs-3g and wimlib-imagex working for Server 2016 (Windows 10 untested). My knowledge is that this is the only Linux image that is currently able to do so :-)

Uranos bootimage: https://sourceforge.net/projects/uranos ... ot/4.15.9/

Many thanks to synchronicity
rradjab
Posts: 2
Joined: Mon Mar 12, 2018 12:42 pm

Re: Error with Windows 10 Enterprise....

Post by rradjab »

Thank you, script is already works!
But how to create package (deb) with fixed libntfs, because for working this script, requires internet (packages 300 mb + )
i tried to install wimlib-1.12.0.tar.gz with dpkg. but it doesnt works too.
wimtools_1.12.0-1+b1_i386.deb requires libntfs-3g88.deb and then have to fix it again.
maybe any ideas?
Post Reply