I wanna copy the folder called Linux to this new directory called flash
First of all log out from root. It isn't secure. To copy the Linux folder use this:
cp /mnt/flash/Linux ./flash
The sintax is:
cp <what> <where>
Also how do I carry out installations of files that end with extension .tgz
Uncompress the file:
tar -xvzf package.tgz
Then read the README file which contains the installation instructions, but most often you have to use these commands:
./configure
make
sudo make install
Also how do I unmount my flash...you didn't reply before...
I answered your question. Look at my last post.