|
|
发表于 2004-11-30 00:37:54
|
显示全部楼层
Be cautious, you should only login as root for administrative works. As a rule of thumb, you should compile the package by a normal user and then install it as root. i.e.
As normal user:
$./configure && make
As root:
#make install
I haven't used vlc before but as it uses automake, the installation should be generic. If you do not specify --prefix in ./configure, the default prefix (installation path) is usually /usr/local. As a result, your compiled binaries should be installed to /usr/local/bin
So, type:
cd /usr/local/bin
ls -thr
You should able to see the latest binary (or binaries) at the bottom. I think it is something like vlc or vlc-xxxxxx.
If /usr/local/bin is already in your search PATH, then you can run vlc in any directory.
Clear? |
|