Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

« Newer Snippets
Older Snippets »
4 total  XML / RSS feed 

launch firefox ubuntu

first to find the big hex number
then to add it. Note the format of the command

xauth list
xauth add ubuntu/unix:0 . 8443108aff2df3cff0d91fa307ad3885

ubuntu linux headers install

for various reasons (like installing vmware tools)

apt-cache search linux-headers-$(uname -r)
apt-get install linux-headers-$(uname -r)

ubuntu search apt-get packages

look up package names and contents via shell

apt-cache search <search string>

ubuntu apt-get list installed packages and removal

// description of your code here

will give you a nice list of installed packages...
apt-get install apt-show-versions

apt-show-versions | sort


best way to remove all traces of them is
apt-get --purge remove packagename

(I got fancy and did apt-get --purge remove php5* which removed all of em)
« Newer Snippets
Older Snippets »
4 total  XML / RSS feed