Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Has anyone tried to install wipe or any other secure file deletion program on the DNS-323? I have not been able to find anything using Google. I have been trying for a while now and have not been successful. I am pretty new to Linux so I am pretty sure it is something I am doing. The error script is below
Thanks
ffp/pkg/wipe-2.3.1# ./configure
loading cache ./config.cache
checking host system type... armv5tejl-unknown-linux-gnu
checking target system type... armv5tejl-unknown-linux-gnu
checking build system type... armv5tejl-unknown-linux-gnu
checking for gcc... gcc
checking whether the C compiler (gcc ) works... no
configure: error: installation or configuration problem: C compiler cannot create executables.
more config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
configure:600: checking host system type
configure:621: checking target system type
configure:639: checking build system type
configure:668: checking for gcc
configure:781: checking whether the C compiler (gcc ) works
configure:797: gcc -o conftest conftest.c 1>&5
gcc: error trying to exec 'as': execvp: No such file or directory
configure: failed program was:
#line 792 "configure"
#include "confdefs.h"
main(){return(0);}
Offline
why not plug it into a PC and use acronise or similar secure wiping software?
Offline
I frequently delete or move files and wanted to setup a cron job that would wipe the hard drive on a regular basis. I have setup a fairly basic cron sequence using:
dd if=/dev/urandom of=/urandom.large.file
rm /urandom.large.file
but sometimes they tend to either crash when the file gets really large, if I use multiple dd commands they get out of sequence and hog all the CPU processes or crash the unit.
I also have 3 units which would make it very time consuming to remove the disks at regular intervals.
Just looking for something that, once setup, will be simpler and work.
Offline
newfie wrote:
Has anyone tried to install wipe or any other secure file deletion program on the DNS-323? I have not been able to find anything using Google. I have been trying for a while now and have not been successful. I am pretty new to Linux so I am pretty sure it is something I am doing. The error script is below
you need to install all development packages: gcc, libtool, binutils etc
Offline
Thanks for the reply I have been away from this for a while.
Now it appears that wipe is looking for a libc library that is not in the ffp files. Any suggestions?
configure:600: checking host system type
configure:621: checking target system type
configure:639: checking build system type
configure:668: checking for gcc
configure:781: checking whether the C compiler (gcc ) works
configure:797: gcc -o conftest conftest.c 1>&5
/ffp/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status
configure: failed program was:
#line 792 "configure"
#include "confdefs.h"
main(){return(0);}
Offline
crt1.o belongs to uclibc-0.9.29-7.tgz, and you'll also need kernel-headers-2.6.9.1-2.tgz.
Offline
Thanks that worked perfectly.
If you add grep-2.5.3-2.tgz, it also works for scrub-2.4.2
Last edited by newfie (2011-10-12 19:24:54)
Offline