30 lines
824 B
HTML
30 lines
824 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title></title>
|
|
<link href="style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h1>Ubuntu/Debian</h1>
|
|
<h3>Aptitude stuff</h3>
|
|
|
|
<pre><code>aptitude search mysql # Look for something
|
|
dpkg -S `which tsclient` # What package does it belong to?
|
|
dpkg -L aria2c # What does this package provide?
|
|
dpkg -i *.deb # Install a deb file
|
|
</code></pre>
|
|
|
|
<h3>Apt archives path</h3>
|
|
|
|
<pre><code>/var/cache/apt/archives
|
|
</code></pre>
|
|
|
|
|
|
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/1.6.4/jquery.min.js'></script>
|
|
<script src="http://cachedcommons.org/cache/prettify/1.0.0/javascripts/prettify-min.js"></script>
|
|
<script>$("pre").addClass("prettyprint");</script>
|
|
<script>prettyPrint();</script>
|
|
</body>
|
|
</html>
|