Changeset 1471 in MondoRescue
- Timestamp:
- May 31, 2007, 2:25:31 AM (18 years ago)
- Location:
- branches/2.2.4/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.4/tools/qemu-vm.txt
r1013 r1471 7 7 # RPM based : urpmi, yum install, yast2 8 8 # Mandriva 9 urpmi neon newt-devel slang-devel glibc-static-devel autoconf automake libtool gcc rpm-build wget g vim/vim-X11 gcc-c++ docbook-utils-pdf ImageMagick man patch mindi mondo9 urpmi neon newt-devel slang-devel glibc-static-devel autoconf automake libtool gcc rpm-build wget gcc-c++ docbook-utils-pdf ImageMagick man patch mindi mondo mkisofs cdrecord 10 10 11 11 #Fedora 12 yum install neon newt-devel slang-devel autoconf automake libtool gcc rpm-build wget gvim/vim-X11 gcc-c++ docbook-utils-pdf ImageMagick man patch12 yum install neon newt-devel slang-devel autoconf automake libtool gcc rpm-build wget vim gcc-c++ docbook-utils-pdf ImageMagick man patch cdrecord mkisofs 13 13 14 14 15 15 # gentoo 16 16 #Cf: http://wiki.xensource.com/xenwiki/QEMUGentoo 17 emerge neon newt slang autoconf automake subversion libtool gcc wget vim man groff lynx grub afio buffer mindi mondo-rescue 17 emerge neon newt slang autoconf automake subversion libtool gcc wget vim man groff lynx grub afio buffer mindi mondo-rescue cdrecord mkisofs 18 18 19 19 # Slackware 20 20 # Cf: http://www.linuxpackages.net/howto.php?page=package&title=Package+Howto 21 # 22 # Ubuntu 23 apt-get install autoconf automake libtool g++ wget patch mondo groff imagemagick docbook-utils docbook2x docbook-to-man openssh-server dpkg-dev debian-builder dh-make 21 24 22 25 #Changing CD during install: … … 82 85 chown bruno /etc/make.conf 83 86 bruno in portage group 87 88 # for FreeBSD 89 ln -sf /usr/local/bin/bash /bin/bash 90 91 # For Slackware 92 take on ftp pkg src + build 93 configure sudo : 94 bruno = NOPASSWD: /sbin/makepkg -
branches/2.2.4/tools/svn2build
r1273 r1471 100 100 m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/Makefile > $dest/distributions/${ddir}-$dver/Makefile 101 101 elif [ "$dtype" = "deb" ]; then 102 cp -a $dest/distributions/$ddir/* $dest/distributions/${ddir}-$dver 103 m4 $MONDOTMP/mondorescue.mc $dest/distributions/$ddir/rules > $dest/distributions/${ddir}-$dver/rules 102 if [ -f $dest/distributions/$ddir/rules ]; then 103 cp -a $dest/distributions/$ddir/* $dest/distributions/${ddir}-$dver 104 inc=$dest/distributions/$ddir/rules 105 elif [ -f $dest/distributions/$dfam/rules ]; then 106 cp -a $dest/distributions/$dfam/* $dest/distributions/${ddir}-$dver 107 inc=$dest/distributions/$dfam/rules 108 else 109 echo "Unable to build the .deb build files for this distro. Please report to authors" 110 exit -1 111 fi 112 m4 $MONDOTMP/mondorescue.mc $inc > $dest/distributions/${ddir}-$dver/rules 104 113 $TOOLHOME/mkchangelog.pl $dtype $p $dest/distributions/${ddir}-$dver/changelog 105 114 if [ $? -ne 0 ]; then
Note:
See TracChangeset
for help on using the changeset viewer.