08-01-2011, 10:13 PM
name*
enjoy*
You have no idea what you've just told someone to do have you?
With Lucid Lynx being 10.04 and Maverick Meerkat being 10.10, let's go with 10.04 as that's what I use.
wget is basically a tool used for downloading stuff mainly from *nix command line. So you'll be downloading Macbuntu-10.04.tar.gz from sourceforge and saving it to the /tmp directory.
wget syntax: -O, --output-document=FILE write documents to FILE.
-z, --gzip, --gunzip, --ungzip filter the archive through gzip (Because of the .gz extension)
-x, --extract, --get extract files from an archive
-v, --verbose verbosely list files processed
-f, --file=ARCHIVE use archive file or device ARCHIVE (The location of the tar.gz'ed file after this command)
-C, --directory=DIR change to directory DIR (Puts the extracted files in to the /tmp directory)
cd = change directory
.sh is a bash file, in this case an install script.
enjoy*
You have no idea what you've just told someone to do have you?
With Lucid Lynx being 10.04 and Maverick Meerkat being 10.10, let's go with 10.04 as that's what I use.
Code:
wget https://downloads.sourceforge.net/project/macbuntu/macbuntu-10.04/v2.2/Macbuntu-10.04.tar.gz -O /tmp/Macbuntu-10.04.tar.gz
wget is basically a tool used for downloading stuff mainly from *nix command line. So you'll be downloading Macbuntu-10.04.tar.gz from sourceforge and saving it to the /tmp directory.
wget syntax: -O, --output-document=FILE write documents to FILE.
Code:
tar xzvf /tmp/Macbuntu-10.04.tar.gz -C /tmp
-z, --gzip, --gunzip, --ungzip filter the archive through gzip (Because of the .gz extension)
-x, --extract, --get extract files from an archive
-v, --verbose verbosely list files processed
-f, --file=ARCHIVE use archive file or device ARCHIVE (The location of the tar.gz'ed file after this command)
-C, --directory=DIR change to directory DIR (Puts the extracted files in to the /tmp directory)
Code:
cd /tmp/Macbuntu-10.04/
cd = change directory
Code:
./install.sh
.sh is a bash file, in this case an install script.