Is Slackware a good distro? Well, I am installing it now, no problems yet.
Printable View
Is Slackware a good distro? Well, I am installing it now, no problems yet.
Si. Oui. Da.
Slackware 0wnz!
I like slackware because you actaully learn linux because you have to edit the config files and things like that.
I have been looking all over for it and can't find it. I e-mailed the LUG and no one replied :(
Slackware Packages
i though slackware never had packages it is just the source you have to compile. :)
They look like packages to me :huh:Quote:
Originally posted by 4play@4 March 2004 - 17:13
i though slackware never had packages it is just the source you have to compile. :)
Alright, I installed it. What do I put as darkstar login? It never had me create a username. I know I can login as root. Also, how do I run KDE on it once I login?
Try logging in as root then adding a user [man adduser]Quote:
Originally posted by Hunted@4 March 2004 - 17:25
Alright, I installed it. What do I put as darkstar login? It never had me create a username. I know I can login as root. Also, how do I run KDE on it once I login?
I think doing a 'startx' will get you to kde if you set that as your default win manager
Not sure though, never used slack, hoping to soon
Ask LSA.Quote:
Originally posted by Hunted@4 March 2004 - 17:25
Alright, I installed it. What do I put as darkstar login? It never had me create a username. I know I can login as root. Also, how do I run KDE on it once I login?
He is the Slackware Guru :)
When I type in man adduser, it says "No manual entry for adduser"
=Edit=
When I type startx, something weird happens... screen goes grey, and there is some strange stuff up top
Ask LSA.Quote:
Originally posted by shn+4 March 2004 - 17:35--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (shn @ 4 March 2004 - 17:35)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-Hunted@4 March 2004 - 17:25
Alright, I installed it. What do I put as darkstar login? It never had me create a username. I know I can login as root. Also, how do I run KDE on it once I login?
He is the Slackware Guru :) [/b][/quote]
No, i'm a poser...I never even used it!
I'm on the trail though :lol:
EDIT:
OK OK, type in /usr/sbin/adduser
then look at the output and it should tell you the syntax
I'm still thinking about your startx problem though
Alright, I was able to create my username with no problems
Can you startx?Quote:
Originally posted by Hunted@4 March 2004 - 17:51
Alright, I was able to create my username with no problems
Can you startx? [/b][/quote]Quote:
Originally posted by LSA+4 March 2004 - 19:54--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (LSA @ 4 March 2004 - 19:54)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-Hunted@4 March 2004 - 17:51
Alright, I was able to create my username with no problems
Nope, same problem still
Are there any error messages?
Did you install it right?
Nope, as was installing it, I had no problems
What runlevel are you in?
/sbin/runlevel
http://www.bilbos-stekkie.com/slack_init/e...ex.php?action=5
Slackware init's and runlevels
N 3
Go to 4Quote:
# These are the default runlevels in Slackware:
# 0 = halt
# 1 = single user mode
# 2 = unused (but configured the same as runlevel 3)
# 3 = multiuser mode (default Slackware runlevel)
# 4 = X11 with KDM/GDM/XDM (session managers)
# 5 = unused (but configured the same as runlevel 3)
# 6 = reboot
Quote:
Originally posted by IBM tut
telinit command: Changing runlevels on a running system
The telinit command is the way to change runlevels. When you execute telinit S as root (or whatever runlevel you'd like to change to), it changes runlevels, shuts down the prior runlevel, and then starts up the next one.
In a way, you are rebooting parts of the system. However, the ability to shutdown and restart services is one of Linux's most endearing qualities. Need to change the IP address for your machine? No problem, make a few changes and restart your networking services. As long as everything is configured correctly you're back up and running so quickly it's hard to tell anything has changed. Try doing that on other operating systems where you have to reboot just because you've changed wallpaper on your desktop :)
The only time it's really necessary to reboot or completely shut down a Linux box is if you're adding or changing hardware, assuming you're working with a device that isn't hot-swappable, or if you've had a break in and need to take the machine offline to repair the damage. Unlike other operating systems, I've never seen rebooting solve a problem on a production system that couldn't be solved without rebooting. I have managed to hang non-production machines by playing around with commands like hdparm, but I expected it to happen.
Let's say you need to perform some system maintenance that requires having the system in single-user mode. For instance, tuning your hard drive with hdparm. The first step is to su to root.
Then we'll execute the telinit command to bring the system into single-user mode:
telinit S -t 60
The "-t" argument is optional; it tells telinit to wait 60 seconds before actually performing the switch to single-user mode. However, as soon as the command is executed, anyone who is logged into the machine will get a warning on their console that the system is going to switch runlevels or go down in 60 seconds.
When the 60 seconds are up, init shuts down the processes that aren't used in the single-user mode and brings the system back up in single-user only mode. You'll then be prompted for the root password to perform system maintenance.
The process the system uses to get into single user mode is a bit different. The default for single user mode calls for init to invoke the sulogin command on the console and requiring a root login to work in single user mode.
After the system enters single user mode you should see a message like this:
Give root password for system maintenance
(or type Control-D for normal startup):
Once you've performed your maintenance you can bring the system back up by executing this command:
telinit 3
This tells the system to re-enter a multi-user runlevel. You could substitute "2" or "4" for "3" in this command. On Slackware systems runlevel 4 will put you in multi-user mode with one of the X display managers, so you will log directly into X.
If you have a UPS hooked up to your system that has a serial cable, it's possible to have the UPS send your system a signal in the event that power goes out. This is very useful if you have a production-class system with a large filesystem. I've seen what happens when a 100GB RAID ext2 filesystem is not cleanly unmounted (fsck takes about four hours to complete). On the other hand, a properly configured UPS can alert the system of the power outage and send telinit/init the SIGPWR signal, which will cause init to bring the system into single-user mode or shut the system down altogether, depending on how it's configured.
-_- I typed in telinit 4, it was working, then the same thing happend when I ran startx
I might try another distro. What do you suggest, besides Mandrake (I want to use, but I can't use it), FreeBSD (also want to use, but cannot install KDE), Redhat (don't care for it), LindowsOS (SUCKS)
Try editing the init script and make runlevel 4 the default.
What does it do when you startx?
----
I think you should stick with slack you will get it soon don't give up
EDIT: but if you don't like slackware (:blink:) try fedora
I would take a screenshot... but I cannot at the moment. Also, how do I edit the scripts?
=Edit=
Lol, I was going to use my moms digital camera... but it is dead.. and no charger
Nah, don't want to use Fedora, it is almost same thing as Redhat, well it is made by Redhat at least
Quote:
Originally posted by Hunted+4 March 2004 - 18:30--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (Hunted @ 4 March 2004 - 18:30)</td></tr><tr><td id='QUOTE'>I would take a screenshot... but I cannot at the moment. Also, how do I edit the scripts?[/b]
Vi
<!--QuoteBegin-ME!
VI Editor Tutorial
Intro to VI
VI tutorial written by me and Leftism
Understanding Linux Configuration Files
Linux Startup Scripts
Setting up Samba
Using SSH[/quote]
I think the default run level for slack is in /etc/inittab but am not sure, might say in some of those tuts
Hmm, I logged in as root, and typed in that /etc/inittab and it said
Quote:
-bash: /etc/inittab: Permission denied
Here is a hint LSA:
What do you edit if Xfree86 is not working correctly? :)
/etc/X11/XF86Config :w00t:Quote:
Originally posted by shn@4 March 2004 - 18:39
Here is a hint LSA:
What do you edit if Xfree86 is not working correctly? :)
Look around in the video setting to see if there is anything wierd
/etc/X11/XF86Config :w00t:Quote:
Originally posted by LSA+4 March 2004 - 20:43--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (LSA @ 4 March 2004 - 20:43)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-shn@4 March 2004 - 18:39
Here is a hint LSA:
What do you edit if Xfree86 is not working correctly? :)
Look around in the video setting to see if there is anything wierd [/b][/quote]
Could not do that either... permission denied
Are you sure your root?
Yep, 100% sure
it saysQuote:
root@darkstar:~#
What are the permissions of the files?
I don't know how to check. I am new to Linux as you can see.
There is a switch for the ls command can't remember it right now and I have to get off the computer for a bit, so good luck
ls -l with show you the permission
they should say something like
rwx - rwx - rwx they stand for read, write and execute. the first set is for the user the second for your group and the third are for world.
chmod 777 will give you the above and chmod 755 will give you rwx-rx-rx
it should also display who owns the file and which group they belong to.
Did that work for you, Hunted?
Shouldn't you have a $ prompt if you're root in Slackware?
not sure about slackware but in red hat $ is a user and # is the super user (root)
what graphics card do you have
It does not matter. The PS1="?" shell variable can change the prompt to whatever you want.Quote:
Originally posted by ObiWan@5 March 2004 - 14:11
not sure about slackware but in red hat $ is a user and # is the super user (root)
:)Code:PS1="shn"
export PS1
I don't know... I don't think I am ready just yet for Slackware, I will just add it to my collection of Linux cds, lol for when I feel like using it.