Welcome to the Linux Foundation Forum!
I'm looking for a distro ..
AstarothMastemaRavenclaw
Posts: 19
in Small Talk
I'm looking for a functional distro that does not ship with pre-determined software which you can uninstall as many times as you want but it will still be reinstalled every few updates .
I want to pick and choose my own software, and I only want updates for what I have installed .
Is there a distro that can help me accomplish this ?
0
Comments
-
Yes, there are several distributions that let you choose all your software packages yourself. Here are some examples:
[ul] [li]ArchLinux[/li] [li]Debian[/li] [li]Slackware[/li] [li]Gentoo[/li] [/ul]
ArchLinux, Gentoo and Debian Unstable are rolling-release distributions, which means that new packages are being released into the repositories as soon as they're available upstream. Debian Testing, Debian Stable and Slackware instead make stable releases from time to time, where package versions are frozen and only bugfixes and security updates are released during the lifespan of that release.
ArchLinux and Debian are primarily based around binary software packages fetched from online repositories, with automatic dependency-fetching and so on. Slackware uses binary packages without dependency checking, but there are multiple third-party package managers for Slackware that adds support for online repositories and dependency fetching. Gentoo is based around an automated build system called Portage, that compiles each program for your machine, and let's you customize everything with USE-flags and MAKE-flags. This requires some time for maintenance, though.
They each have a bit different philosophies, so it's up to you to choose the best one for your use.0 -
AstarothMastemaRavenclaw wrote:I'm looking for a functional distro that does not ship with pre-determined software which you can uninstall as many times as you want but it will still be reinstalled every few updates .
I want to pick and choose my own software, and I only want updates for what I have installed .
Is there a distro that can help me accomplish this ?
If you really want to control what's installed on your system go for Gentoo although it has its drawbacks.
For simplicity... Debian or Archlinux (KISS philosophy!!!)
Regards0 -
Thank you . I am currently taking studious notes on installing and configuring Arch, as the last time I tried I was left completely dumbfounded when it came to manual configuration of text files .
I personally don't like Debian all that much, because the install is too automated ..
Which is why I am going the Arch way as soon as I learn how to get around a few learning curves .0 -
Many distros offer a "Base" install, even fedora, which I use, can be installed without a DE or other misc. packages. Starting from there, you can add what you want. Back in my Debian days, I always started with a base install.0
-
Really ? When I tried Fedora the other day it was a disaster in a box . O_O
I am starting to get Arch, but even with my persistent studying of every.single.document.out.there. I failed to properly edit the /etc/rc.conf file and as a result, could not continue with post-install operations .
Now I am considering what you told me about base installs .. Might completely change my views on most distros that worked for me but always had a particular flaw to turn me off . Interesting . Thanks . ^^0 -
AstarothMastemaRavenclaw wrote:Really ? When I tried Fedora the other day it was a disaster in a box . O_O
I am starting to get Arch, but even with my persistent studying of every.single.document.out.there. I failed to properly edit the /etc/rc.conf file and as a result, could not continue with post-install operations .
Now I am considering what you told me about base installs .. Might completely change my views on most distros that worked for me but always had a particular flaw to turn me off . Interesting . Thanks . ^^
What were you changing?
I only change LOCALE, TIMEZONE, HARDWARECLOCK and the KEYMAP. you are pretty much ready to go from there!
Regards0 -
Well, for one I did not understand the layout of the file; I expected to write out the entire file, which for me would have been easier instead of struggling to find out where to put what . If it should be commented out or not, where the "examples" end and your configuration starts .. I still to this point have no clue as to how to properly edit the NETWORKING section so as to have a working LAN connection upon bootup .
E.g. Do I put my configurations in the "HOSTNAME" at the top of the document, or in the little section directly under the static and dhcp examples ?
I bodged the bootloader but at least for this one I know what I did wrong .
The rest of the install process went by very fast and very smooth .
I only had issues with the /etc/rc.conf file .0 -
Even just putting a little "~" in front of the lines I should edit in the following rc.conf file would help me ENORMOUSLY .
#
# /etc/rc.conf - Main Configuration for Arch Linux
#
#
# LOCALIZATION
#
#
# LOCALE: available languages can be listed with the 'locale -a' command
# DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
# startup and during the boot process. If set to 'no', the C locale is used.
# HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# Note: Using "localtime" is discouraged.
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
# VERBOSE: Verbose level (from 1 to 8). man 3 syslog for level info
#
LOCALE="en_US.UTF-8"
DAEMON_LOCALE="no"
HARDWARECLOCK="UTC"
TIMEZONE="Canada/Pacific"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"
VERBOSE="3"
#
# HARDWARE
#
#
# MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
# Replace every !module by an entry as on the following line in a file in
# /etc/modprobe.d:
# blacklist module
# See "man modprobe.conf" for details.
#
MODULES=()
# Udev settle timeout (default to 30)
UDEV_TIMEOUT=30
# Scan for FakeRAID (dmraid) Volumes at startup
USEDMRAID="no"
# Scan for BTRFS volumes at startup
USEBTRFS="no"
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
#
# NETWORKING
#
#
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
#
HOSTNAME="myhost"
# Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
#
# Wired network setup
# - interface: name of device (required)
# - address: IP address (leave blank for DHCP)
# - netmask: subnet mask (ignored for DHCP)
# - gateway: default route (ignored for DHCP)
#
# Static IP example
# interface=eth0
# address=192.168.0.2
# netmask=255.255.255.0
# gateway=192.168.0.1
#
# DHCP example
# interface=eth0
# address=
# netmask=
# gateway=
interface=
address=
netmask=
gateway=
# Setting this to "yes" will skip network shutdown.
# This is required if your root device is on NFS.
NETWORK_PERSIST="no"
# Enable these netcfg profiles at boot-up. These are useful if you happen to
# need more advanced network features than the simple network service
# supports, such as multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
#
# Network profiles are found in /etc/network.d
#
# This requires the netcfg package
#
#NETWORKS=(main)
#
# DAEMONS
#
#
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
#
# If something other takes care of your hardware clock (ntpd, dual-boot...)
# you should disable 'hwclock' here.
#
DAEMONS=(hwclock syslog-ng network netfs crond)0 -
You may or may not have seen this link:
https://wiki.archlinux.org/index.php/Rc.conf
It's almost like it's an initiation for Arch, getting through the rc.conf file is a right of passage. When I tried Arch a few years back I couldn't get the network running, so I took a step back and continued with other distros. I haven't tried Arch lately, I'm happy with Fedora KDE.
There are Arch users here, so if you wait, someone might be able to give you some hints.0 -
The rc.conf example I pasted is directly from that Arch wiki . xD
I have suspicions that I am supposed to edit the lines with no crunch (#) in front of them .
But thanks . xD
I will just keep trying every now and then until I get it right .
I am sure it will be worth it in the end .0 -
I finally got Arch up and running, and I have to say I am thoroughly pleased . ^^0
-
Arch is changing the way they setup the network connections. The rc.conf only allows you to configure one cabled interface. If you must use more than one you should use more advanced programs like net-tools, wicd or networkmanager.
Anyhow... the beauty of it is that you must learn how to set up the interface/network by hand!0
Categories
- All Categories
- 217 LFX Mentorship
- 217 LFX Mentorship: Linux Kernel
- 788 Linux Foundation IT Professional Programs
- 352 Cloud Engineer IT Professional Program
- 177 Advanced Cloud Engineer IT Professional Program
- 82 DevOps Engineer IT Professional Program
- 146 Cloud Native Developer IT Professional Program
- 137 Express Training Courses
- 137 Express Courses - Discussion Forum
- 6.1K Training Courses
- 46 LFC110 Class Forum - Discontinued
- 70 LFC131 Class Forum
- 42 LFD102 Class Forum
- 226 LFD103 Class Forum
- 18 LFD110 Class Forum
- 36 LFD121 Class Forum
- 18 LFD133 Class Forum
- 7 LFD134 Class Forum
- 18 LFD137 Class Forum
- 71 LFD201 Class Forum
- 4 LFD210 Class Forum
- 5 LFD210-CN Class Forum
- 2 LFD213 Class Forum - Discontinued
- 128 LFD232 Class Forum - Discontinued
- 2 LFD233 Class Forum
- 4 LFD237 Class Forum
- 24 LFD254 Class Forum
- 693 LFD259 Class Forum
- 111 LFD272 Class Forum
- 4 LFD272-JP クラス フォーラム
- 12 LFD273 Class Forum
- 144 LFS101 Class Forum
- 1 LFS111 Class Forum
- 3 LFS112 Class Forum
- 2 LFS116 Class Forum
- 4 LFS118 Class Forum
- 4 LFS142 Class Forum
- 5 LFS144 Class Forum
- 4 LFS145 Class Forum
- 2 LFS146 Class Forum
- 3 LFS147 Class Forum
- 1 LFS148 Class Forum
- 15 LFS151 Class Forum
- 2 LFS157 Class Forum
- 25 LFS158 Class Forum
- 7 LFS162 Class Forum
- 2 LFS166 Class Forum
- 4 LFS167 Class Forum
- 3 LFS170 Class Forum
- 2 LFS171 Class Forum
- 3 LFS178 Class Forum
- 3 LFS180 Class Forum
- 2 LFS182 Class Forum
- 5 LFS183 Class Forum
- 31 LFS200 Class Forum
- 737 LFS201 Class Forum - Discontinued
- 3 LFS201-JP クラス フォーラム
- 18 LFS203 Class Forum
- 130 LFS207 Class Forum
- 2 LFS207-DE-Klassenforum
- 1 LFS207-JP クラス フォーラム
- 302 LFS211 Class Forum
- 56 LFS216 Class Forum
- 52 LFS241 Class Forum
- 48 LFS242 Class Forum
- 38 LFS243 Class Forum
- 15 LFS244 Class Forum
- 2 LFS245 Class Forum
- LFS246 Class Forum
- 48 LFS250 Class Forum
- 2 LFS250-JP クラス フォーラム
- 1 LFS251 Class Forum
- 150 LFS253 Class Forum
- 1 LFS254 Class Forum
- 1 LFS255 Class Forum
- 7 LFS256 Class Forum
- 1 LFS257 Class Forum
- 1.2K LFS258 Class Forum
- 10 LFS258-JP クラス フォーラム
- 118 LFS260 Class Forum
- 159 LFS261 Class Forum
- 42 LFS262 Class Forum
- 82 LFS263 Class Forum - Discontinued
- 15 LFS264 Class Forum - Discontinued
- 11 LFS266 Class Forum - Discontinued
- 24 LFS267 Class Forum
- 22 LFS268 Class Forum
- 30 LFS269 Class Forum
- LFS270 Class Forum
- 202 LFS272 Class Forum
- 2 LFS272-JP クラス フォーラム
- 1 LFS274 Class Forum
- 4 LFS281 Class Forum
- 9 LFW111 Class Forum
- 259 LFW211 Class Forum
- 181 LFW212 Class Forum
- 13 SKF100 Class Forum
- 1 SKF200 Class Forum
- 1 SKF201 Class Forum
- 795 Hardware
- 199 Drivers
- 68 I/O Devices
- 37 Monitors
- 102 Multimedia
- 174 Networking
- 91 Printers & Scanners
- 85 Storage
- 758 Linux Distributions
- 82 Debian
- 67 Fedora
- 17 Linux Mint
- 13 Mageia
- 23 openSUSE
- 148 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 353 Ubuntu
- 468 Linux System Administration
- 39 Cloud Computing
- 71 Command Line/Scripting
- Github systems admin projects
- 93 Linux Security
- 78 Network Management
- 102 System Management
- 47 Web Management
- 63 Mobile Computing
- 18 Android
- 33 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 370 Off Topic
- 114 Introductions
- 173 Small Talk
- 22 Study Material
- 805 Programming and Development
- 303 Kernel Development
- 484 Software Development
- 1.8K Software
- 261 Applications
- 183 Command Line
- 3 Compiling/Installing
- 987 Games
- 317 Installation
- 96 All In Program
- 96 All In Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)