Quote |
dsls are better because they handle all the dependancies in 1 file, no more searching for that file it refuses to install without, dsls are gonna be 1 of the things that make people move to linux, no more compiling from source, debs go half-way but dsls are brillian |
Code Sample |
To make a tarball: tar -zcvf /tmp/filename.tgz -T /tmp/files.txt -z filter the archive through gzip -c create a new archive -v verbosely list files processed -f use archive file or device ARCHIVE -T get names to extract or create from file NAME Sample files.txt: /home/httpd/html/help/vpn.dat.html.en /home/httpd/html/help/vpnconfig.dat.html.en /home/httpd/html/help/vpnlogs.dat.html.en /home/httpd/cgi-bin/vpnmain.cgi /home/httpd/cgi-bin/vpn.cgi/.htaccess /home/httpd/cgi-bin/vpn.cgi/vpnconfig.dat /home/httpd/cgi-bin/vpn.cgi/vpnlogs.dat /home/httpd/cgi-bin/logs.cgi/vpn.dat To extract the file: tar -zxvf /tmp/filename.tgz -C / -z filter the archive through gzip -x extract files from an archive -v verbosely list files processed -f use archive file or device ARCHIVE -C change to directory DIR |