PDA

View Full Version : wmv


dosed150
February 24th, 2006, 06:42 PM
is there a way i can play wmv files on ubuntu?

BWF89
February 24th, 2006, 06:52 PM
Codecs my friend, codecs.

http://www.google.com/search?q=Play+WMV+on+Linux&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official

dosed150
February 24th, 2006, 07:08 PM
well that was helpful ok i downloaded the codecs but i cant put them in the codecs folder it says im not the owner

GreyFox503
February 24th, 2006, 07:22 PM
If you are trying to move or copy files somewhere where you don't have permission, then you need root privileges. To do this, just prefix the command you want with 'sudo', like so:

sudo cp file1.gz /somewhere/else

As soon as you hit enter, you will be prompted for a password. Enter your normal user password that you login with, then hit enter again. The command will be run with root privileges.

Be careful with sudo, because it will let you do anything root can do, delete any file, etc.

dosed150
February 24th, 2006, 07:38 PM
so if wanted to copy a whole folder id just put the name of the folder in there

majikstreet
February 24th, 2006, 07:59 PM
kind of.
sudo cp -R folder /somewhere/else

that's what you would do for a whole folder.

GreyFox503
February 24th, 2006, 08:45 PM
For more help with commands like cp, use:

cp --help
man cp

These two will work for most commands. Of course there's always google.