linux - Remove a file from usr/include? -
i trying run program command line in ubuntu , have directory in usr/include/ directory need remove run. how can command line?
rm -r /usr/include/... just use that. if need that, there wrong program. if package installed directory, use:
sudo apt-get purge package-name all in all, directories directly under /usr under charge of package manager, , if want things without that, use /usr/local dir. changing other programs resources bad idea. also, don't run don't have sudo. end badly. , program require removal of dir in /usr/include?
Comments
Post a Comment