85 lines
2.2 KiB
HTML
85 lines
2.2 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<link rel="Stylesheet" type="text/css" href="style.css">
|
||
|
<title>Slackware_PostInstallation</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h3 id="toc_0.0.1">Slackware64 Post-Installation</h3>
|
||
|
<p>
|
||
|
<a href="Other.html">Other</a> >> <a href="Linux_Slackware.html">Slackware</a>
|
||
|
</p>
|
||
|
<h4 id="toc_0.0.1.1">Enabling multilib support on Slackware64</h4>
|
||
|
<pre>
|
||
|
# SLACKVER=14.1 # Obviously, change this per the version
|
||
|
# mkdir multilib
|
||
|
# cd multilib
|
||
|
# lftp -c "open http://taper.alienbase.nl/mirrors/people/alien/multilib/ ; mirror -c -e ${SLACKVER}"
|
||
|
# cd ${SLACKVER}
|
||
|
# upgradepkg --reinstall --install-new *.t?z
|
||
|
# upgradepkg --install-new slackware64-compat32/*-compat32/*.t?z
|
||
|
</pre>
|
||
|
|
||
|
<h4 id="toc_0.0.1.2">Upgrade all built-in Packages</h4>
|
||
|
<p>
|
||
|
Select a mirror (uncomment a line) in <code>/etc/slackpkg/mirrors</code>
|
||
|
Then run:
|
||
|
</p>
|
||
|
<pre>
|
||
|
# slackpkg update gpg
|
||
|
# slackpkg update
|
||
|
# slackpkg upgrade-all
|
||
|
</pre>
|
||
|
<h5 id="toc_0.0.1.2.1">Blacklisting Packages</h5>
|
||
|
<p>
|
||
|
Now, blacklist packages gotten from SBo & alienBob's repository
|
||
|
Add the following to <code>/etc/slackpkg/blacklist</code>
|
||
|
</p>
|
||
|
<pre>
|
||
|
[0-9]+_SBo
|
||
|
[0-9]+alien
|
||
|
</pre>
|
||
|
|
||
|
<h4 id="toc_0.0.1.3">Adding a new user</h4>
|
||
|
<pre>
|
||
|
# useradd
|
||
|
</pre>
|
||
|
<p>
|
||
|
Then, if needed:
|
||
|
</p>
|
||
|
<pre>
|
||
|
# visudo
|
||
|
</pre>
|
||
|
<p>
|
||
|
And add the user to sudo
|
||
|
</p>
|
||
|
|
||
|
<h4 id="toc_0.0.1.4">Configuring Graphical Logins</h4>
|
||
|
<p>
|
||
|
If the system is to boot into X by default, Open <code>/etc/inittab</code> as root, change the following line:
|
||
|
</p>
|
||
|
<pre>
|
||
|
# Default runlevel. (Do not set to 0 or 6)
|
||
|
id:3:initdefault:
|
||
|
</pre>
|
||
|
<p>
|
||
|
To this:
|
||
|
</p>
|
||
|
<pre>
|
||
|
# Default runlevel. (Do not set to 0 or 6)
|
||
|
id:4:initdefault:
|
||
|
</pre>
|
||
|
<p>
|
||
|
This sets your default run-level to 4, which is Slackware's "graphics-only" mode (with one extra tty open, just in case, on vty6). Save, and on your next reboot, the system will boot into a nice graphical login.
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
You can manually enter run-level 4 by entering, as root, <code>init 4</code>
|
||
|
To select or switch between available desktop environments, run <code>xwmconfig</code> as root (<code>wmconfig</code> from CLI)
|
||
|
</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|