<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Slackware 15.0_en | Linux Server Construction</title>
	<atom:link href="https://korodes.com/en/category/slackware15_en/feed/" rel="self" type="application/rss+xml" />
	<link>https://korodes.com</link>
	<description></description>
	<lastBuildDate>Sun, 15 Mar 2026 09:39:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://korodes.com/wp-content/uploads/2020/01/cropped-profile-32x32.jpg</url>
	<title>Slackware 15.0_en | Linux Server Construction</title>
	<link>https://korodes.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Slackware15.0 : Various settings after OS installation #I</title>
		<link>https://korodes.com/en/slackware15_en_06/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sat, 23 Sep 2023 00:10:48 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23897</guid>

					<description><![CDATA[Adding General Users

Root is a privileged user and should not normally be logged in as root.
You must create your own account separate from root. Create a login user with the following command

# useradd huong
# passwd huong
New password:
Retype new password:
passwd: password updated successfully

Create user's home directory
Setting up the use of the sudo command

To grant sudo privileges to the created general user, use the command "visudo" as root and edit the file "sudoers".
This time, "users belonging to the wheel group can use it; they will not be asked for their password when sudoing." Use the]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : WEB server (Apache) Install , SSL implementation</title>
		<link>https://korodes.com/en/slackware15_en_10/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 26 Sep 2023 05:04:34 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23983</guid>

					<description><![CDATA[WEB server (Apache) Apache Installation ①system update ➁httpd installation ➂Apache version check ④Enabling and [&#8230;]]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : MariaDB , WordPress Installation</title>
		<link>https://korodes.com/en/slackware15_en_11/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Wed, 27 Sep 2023 02:07:47 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23990</guid>

					<description><![CDATA[MariaDB Install ①Install ➁Activate and start MariaDB ➂Check the version of MarisDB ④Set root user password ⑤Co [&#8230;]]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : FTP (Vsftpd) server installation</title>
		<link>https://korodes.com/en/slackware15_en_09/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 26 Sep 2023 02:38:17 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23968</guid>

					<description><![CDATA[Vsftpd Configuration

Slackware has "vsftpd" installed by default, but it is not activated. 　
Edit the "vsftpd" configuration file to activate it.

# vi /etc/vsftpd.conf

Change to line 12 NO.
anonymous_enable=NO

Change line 113 to YES
listen=YES

Add to last line
use_localtime=YES

Enable ftp as "inetd" is in charge of startup]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : SSH connect with public key</title>
		<link>https://korodes.com/en/slackware15_en_08/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Tue, 26 Sep 2023 01:58:14 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23959</guid>

					<description><![CDATA[Creation of public and private key pairs

Create a public/private key pair for a user connecting to a Linux server using OpenSSH.
Use ssh-keygen to create the key pair.

The creation of a public/private key pair is performed with remote login user privileges.
If you do not specify the destination and file name, id_ed25519 and id_ed25519.pub will be created in /home/(user name)/.ssh/. On the way, enter the password for the key.]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : Various settings after OS installation #2</title>
		<link>https://korodes.com/en/slackware15_en_07/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Sun, 24 Sep 2023 03:26:12 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23925</guid>

					<description><![CDATA[SSH Remote Connection

Configure the default settings to increase the security of ssh connections.

1. SSH service configuration file modification

Modify the configuration file to change the SSH service settings.
The SSH service configuration file is "/etc/ssh/sshd_config".
]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : Installing packages</title>
		<link>https://korodes.com/en/slackware15_en_04/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 22 Sep 2023 03:39:15 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23875</guid>

					<description><![CDATA[Installing packages Select installation media and other installation source informationThis time, select the d [&#8230;]]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : Mail Server Install</title>
		<link>https://korodes.com/en/slackware15_en_12/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Thu, 28 Sep 2023 02:39:09 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23998</guid>

					<description><![CDATA[Postfix Installation

①Edit postfix configuration file

To prevent unauthorized mail relay, configure Postfix to require authentication for outgoing mail as well, using Dovecot's SASL function.]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware 15.0 : Disk partition format</title>
		<link>https://korodes.com/en/slackware15_en_03/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 22 Sep 2023 02:30:15 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23870</guid>

					<description><![CDATA[Partition formatting and directory mapping 1.Launch Slackware installation program Type setup and press Enter  [&#8230;]]]></description>
		
		
		
			</item>
		<item>
		<title>Slackware15.0 : Various settings during installation</title>
		<link>https://korodes.com/en/slackware15_en_05/</link>
		
		<dc:creator><![CDATA[nuy]]></dc:creator>
		<pubDate>Fri, 22 Sep 2023 04:50:54 +0000</pubDate>
				<category><![CDATA[Slackware 15.0_en]]></category>
		<guid isPermaLink="false">https://korodes.com/?p=23888</guid>

					<description><![CDATA[Creating Bootstick

To create an emergency Bootstick, insert a USB stick, select Create, and press Enter.
Select Skip since you will not create it this time.

Install Boot Manager

ELILO Installation

If installed on a machine with a UEFI boot PC or motherboard, the following screen will appear
PCs running on UEFI firmware will not work with LILO, so proceed to install ELILO designed for EFI/UEFI systems
Select skip and press Enter to continue]]></description>
		
		
		
			</item>
	</channel>
</rss>
