LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux From Scratch (https://www.linuxquestions.org/questions/linux-from-scratch-13/)
-   -   LFS 7.2: Read-only file system error (https://www.linuxquestions.org/questions/linux-from-scratch-13/lfs-7-2-read-only-file-system-error-4175440578/)

erkant 12-08-2012 08:18 AM

LFS 7.2: Read-only file system error
 
I have created LFS 7.2 using the book, and it successfully boots up, but when I try to create a new file or directory, I cannot, while it says that my file system is read-only. Although I can list the files and directories, change the directory or so. How can I overcome this? Below you can find the last few lines while my LFS system is booting up:

EXT3-fs (sda6): mounted filesystem with writeback data mode
VFS: Mounted root (ext3 filesystem) readonly on device 8:6.
Freeing unused kernel memory: 452k freed
Write protecting the kernel text: 7812k
Write protecting the read-only data: 2344k
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
bash-4.2#

And for example, if I try to create a new directory I get the following error message:

bash-4.2# mkdir test
mkdir: cannot create directory 'test': Read-only file system

For your knowledge, I have created my kernel using "make defconfig" command, and just did a few small changes to the default configuration. I'm using ext3 file system, mounted in /dev/sda6. Also in my /etc/fstab I have the following line:

/dev/sda6 /mnt/lfs ext3 defaults 1 1

If you could help me overcome the problem, I would be glad.

druuna 12-08-2012 08:25 AM

Quote:

Originally Posted by erkant (Post 4845154)
For your knowledge, I have created my kernel using "make defconfig" command, and just did a few small changes to the default configuration. I'm using ext3 file system, mounted in /dev/sda6. Also in my /etc/fstab I have the following line:

/dev/sda6 /mnt/lfs ext3 defaults 1 1

That doesn't look correct. There is no /mnt/lfs when you boot into lfs.

It should be:
Code:

/dev/sda6    /    ext3    defaults    1    1
(mentioned here)

erkant 12-08-2012 08:51 AM

That's the /etc/fstab of my host machine. In my LFS system's /etc/fstab file it is exactly as you have provided. I will try to delete that line from my host machine's /etc/fstab, and try to boot like that, but I don't know whether whether it will boot, whether it will be able to find my kernel. Because if my mount my /mnt/lfs just using the mount command from my host machine, it won't be there when I restart my PC, so I don't know whether it will find the kernel.

druuna 12-08-2012 09:04 AM

No need to tinker with your host at this point. The problem is lfs related.

I personally think you are missing some kernel options based on this: [SOLVED] LFS: Error during Linux-3.5.2 kernel compilation and this:
Quote:

I have created my kernel using "make defconfig" command, and just did a few small changes to the default configuration.
We might be able to point you in the right direction if you post more of the boot messages (as much as possible up to the read-only prompt).

BTW: Have you seen this post: [SOLVED] Booting stops after kernel starts. Related and also mentions a kernel option.

EDIT: Are you 100% sure that this kernel option is set: Maintain a devtmpfs filesystem to mount at /dev (mentioned in the LFS book and not set by make defconfig)

erkant 12-08-2012 11:19 AM

I checked that Booting stops after kernel starts thread, but I couldn't find something useful for me. I'm sure that devtmpfs filesystem is mainted. Can the fact that I have in my host /etc/fstab used my /mnt/lfs as a mount point cause the problem?

druuna 12-08-2012 11:24 AM

Quote:

Originally Posted by erkant (Post 4845242)
Can the fact that I have in my host /etc/fstab used my /mnt/lfs as a mount point cause the problem?

Not if you are talking about your hosts fstab file. As stated before: No need to tinker with your host at this point. The problem is lfs related.

erkant 12-08-2012 11:35 AM

This is my host /etc/fstab:

Quote:

# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda4 during installation
UUID=a7e0dedf-5ffb-4851-a76f-2cd10b83bf81 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=9777ecf8-8991-4fc4-9798-5451a1d9b8c3 none swap sw 0 0
/dev/sda6 /mnt/lfs ext3 defaults 1 1
And this is my LFS /etc/fstab

Quote:

# file system mount-point type options dump fsck
# order

/dev/sda6 / ext3 defaults 1 1
/dev/sda5 swap swap pri=1 0 0
proc /proc proc nosuid,noexec,nodev 0 0
sysfs /sys sysfs nosuid,noexec,nodev 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
tmpfs /run tmpfs defaults 0 0
devtmpfs /dev devtmpfs mode=0755,nosuid 0 0
(of course both with spacing, I don't know why I cannot get the spacings here)
I don't know what it can be LFS related, maybe something in the kernel, but I don't know how can I show you the full kernel booting log.

druuna 12-08-2012 11:35 AM

This question is still unanswered:
Quote:

Originally Posted by druuna
We might be able to point you in the right direction if you post more of the boot messages (as much as possible up to the read-only prompt).

Can you also post the output of the following commands (from your host, lfs mounted under /mnt/lfs):
Code:

ls -l /mnt/lfs/dev/{console,null}

grep CONFIG_DEVTMPFS /mnt/lfs/boot/config-3.5.2

cat /mnt/lfs/etc/fstab posted while replying


erkant 12-08-2012 11:41 AM

Output of "ls -l /mnt/lfs/dev/{console,null} :

Quote:

crw------- 1 root root 5, 1 Dec 1 18:49 /mnt/lfs/dev/console
crw-rw-rw- 1 root root 1, 3 Dec 1 18:49 /mnt/lfs/dev/null
Output of "grep CONFIG_DEVTMPFS /mnt/lfs/boot/config-3.5.2 :

Quote:

CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set

druuna 12-08-2012 11:48 AM

Quote:

Originally Posted by erkant (Post 4845259)
Output of "grep CONFIG_DEVTMPFS /mnt/lfs/boot/config-3.5.2 :
Code:

CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set


Quote:

Originally Posted by erkant
I'm sure that devtmpfs filesystem is mainted.

You are wrong. Maintain a devtmpfs filesystem to mount at /dev is _not_ set.

erkant 12-08-2012 11:50 AM

As long as I remember, when I made "make defconfig", I then did "make menuconfig", loaded the default config, and checked that options, but I will try to do it again, and tell you the result.

druuna 12-08-2012 12:07 PM

Quote:

Originally Posted by erkant (Post 4845266)
As long as I remember, when I made "make defconfig", I then did "make menuconfig", loaded the default config, and checked that options, but I will try to do it again, and tell you the result.

I might have jumped the gun......

CONFIG_DEVTMPFS=y --> Maintain a devtmpfs filesystem to mount at /dev is set (sorry about that!!)
CONFIG_DEVTMPFS_MOUNT --> is not set.

Try setting the CONFIG_DEVTMPFS_MOUNT

Also: what does your /mnt/lfs/etc/inittab look like?

erkant 12-08-2012 12:26 PM

Now the output of "grep CONFIG_DEVTMPFS /mnt/lfs/boot/config-3.5.2" looks like:

Quote:

CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
And /mnt/lfs/etc/inittab looks like this:

Quote:

# Begin /etc/inittab

id:5:initdefault:

si::sysinit:/etc/rc.d/init.d/rc S

l0:0:wait:/etc/rc.d/init.d/rc 0
l1:S1:wait:/etc/rc.d/init.d/rc 1
l2:2:wait:/etc/rc.d/init.d/rc 2
l3:3:wait:/etc/rc.d/init.d/rc 3
l4:4:wait:/etc/rc.d/init.d/rc 4
l5:5:wait:/etc/rc.d/init.d/rc 5
l6:6:wait:/etc/rc.d/init.d/rc 6

ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now

su:S016:once:/sbin/sulogin

1:2345:respawn:/sbin/agetty --noclear tty1 9600
2:2345:respawn:/sbin/agetty tty2 9600
3:2345:respawn:/sbin/agetty tty3 9600
4:2345:respawn:/sbin/agetty tty4 9600
5:2345:respawn:/sbin/agetty tty5 9600
6:2345:respawn:/sbin/agetty tty6 9600

# End /etc/inittab
kd:5:respawn:/opt/kde/bin/kdm

druuna 12-08-2012 12:34 PM

The inittab file looks OK.

Guess you are ready to reboot again (you did compile/place the kernel and not just set the option using make menuconfig as described in 8.3.1??)

erkant 12-08-2012 12:37 PM

I edited the kernel config file to make CONFIG_DEVTMPFS_MOUNT=y and then recompiled and placed everything where they belong. But again I cannot create file or directory. Still seeing the error message, regarding read-only file system. :/

druuna 12-08-2012 12:54 PM

Is the following the exact message that appears after booting?
Quote:

EXT3-fs (sda6): mounted filesystem with writeback data mode
VFS: Mounted root (ext3 filesystem) readonly on device 8:6.
Freeing unused kernel memory: 452k freed
Write protecting the kernel text: 7812k
Write protecting the read-only data: 2344k
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
bash-4.2#
- You didn't leave out anything?
- Are you able to recall what was printed before the EXT3-fs (sda6): mounted filesystem with writeback data mode line?

When you are logged in, are you able to execute the following command
Code:

/bin/dmesg
(might give you an insight in what happens during the boot.

erkant 12-08-2012 01:09 PM

I just booted it again, and here are the lines that I am able to see while booting, before getting to bash-4.2#:

Quote:

(there come some lines regarding my USB mouse, and then comes those)
md: Waiting for all devices to be available before autodetect
md: If you don't use raid, use raid=noautodetect
md: Autodetecting RAID arrays
md: Scanned 0 and added 0 devices
md: autorun ...
md: ... autorun DONE.
kjournald starting. Commit interval 5 seconds.
Then comes the lines that you have posted in your last post. If I execute /bin/dmesg , I get all the messages that appear when booting the system, but they appear so fast that I am not able to read anything, expect those lines that I tell you, the last few ones. So all I can see are those.

druuna 12-08-2012 01:22 PM

Quote:

Originally Posted by erkant (Post 4845307)
If I execute /bin/dmesg , I get all the messages that appear when booting the system, but they appear so fast that I am not able to read anything, expect those lines that I tell you, the last few ones. So all I can see are those.

Try:
Code:

/bin/dmesg | /bin/more
or substitute more for less if you like that one better.

Although it is probably unrelated to your issue I do see one thing that can probably be disabled in the kernel:
Quote:

md: Waiting for all devices to be available before autodetect
md: If you don't use raid, use raid=noautodetect
md: Autodetecting RAID arrays
md: Scanned 0 and added 0 devices
md: autorun ...
md: ... autorun DONE.
Those are for RAID and LVM support ( Device Drivers ---> Multiple devices driver support (RAID and LVM))

erkant 12-08-2012 02:44 PM

I tried "/bin/dmesg | /bin/more", and there are awful lot of messages, I cannot write all of them here. As long as I understand there isn't anything interesting, the only difference from later is that now I have a message saying: "devtmpfs: initialized" and another saying that devtmpfs is mounted. If you could tell me what to look for, maybe can I search for it and tell you what I see.

druuna 12-09-2012 04:33 AM

You need to look for errors, warnings and messages that look out of place. I would start by focusing on disk related entries, which seem to be read-only.

You do have a minimal shell after the boot which might give you access to some commands. The following might give you an indication of what is going on:
- error/warning related:
Code:

dmesg | egrep -A2 -B2 -i "error|warn"
- disk related:
Code:

dmesg | egrep -A2 -B2 -i "sd[a-z]|ext[234]|mount"
Also have a look at the output of the following commands (might not work at this stage):
Code:

df -h
mount


erkant 12-09-2012 05:31 AM

I did used the commands that you said, and here are some of the outputs:

For dmesg | egrep -A2 -B2 -i "error|warn", I got some of those and some others too, without any error or warning in the messages:

Quote:

ACPI Warning: 32/64 FACS address mismatch in FADT two FACS tables (20120320/tbfadt-378)
ACPI Warning: 32/64x FACS address mismatch in FADT ... \_SB_.PCI0:_OSC invalid UUID
pci 0000:00 ACPI _OSC request failed (AE_ERROR), returned control mas 0x1d
[drm: i915_init]*ERROR* drm/i915 can't work without intel-agp module!
(some other ACPI Warnings regarding SystemIO and Region conflicts.)
(note that in the place of "...", there was a hexadecimal value)
For dmesg | egrep -A2 -B2 -i "sd[a-z]|ext[234]|mount", I got some of those messages:

Quote:

sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500GB/465GiB)
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 0:0:0:0: [sda] Write Protect is Off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sda: sda1 sda2 sda3 <sda5 sda6> sda4
sd 0:0:0:0: [sda] Attached SCSI disk
EXT3-fs (sda6): mounted filesystem with writeback data mode
VFS: Mounted root (ext3 filesystem) readonly on device 8:6.
devtmpfs mounted
Output of df -h:

Quote:

df: cannot read table of mounted file systems
Output of mount:

Quote:

mount: warning: /etc/mtab is not writable (e.g. read-only file system). It's possible that information reported by mount(8) is not up to date. For actual information about system mount points check the /proc/mounts file.

druuna 12-09-2012 06:09 AM

Stepping through the boot sequence I just noticed this:
Quote:

# Begin /etc/inittab

id:5:initdefault:

si::sysinit:/etc/rc.d/init.d/rc S

l0:0:wait:/etc/rc.d/init.d/rc 0
l1:S1:wait:/etc/rc.d/init.d/rc 1
.
.
.
5? Why? That isn't what the LFS book says and might come into play when dealing with BLFS and graphical logins.

erkant 12-09-2012 06:11 AM

I finished LFS before a week or so, and have already started with BLFS, I have already installed X Windows System and KDE. The point is that I was getting this read-only error before I had started with BLFS, meaning just when I finished with LFS, but didn't bother to solve it. Then continued with BLFS, and I'm still getting this error. So I already have started with BLFS. But I cannot start my graphical interface, while when I type "startx", I get the error regarding my read-only file system, it cannot write some files.

druuna 12-09-2012 06:16 AM

Quote:

Originally Posted by erkant (Post 4845611)
I finished LFS before a week or so

You obviously did not finish LFS as booting is not possible....

Quote:

and have already started with BLFS,
You shouldn't have until you have a fully working LFS.

I assume you use the chrooted environment to build BLFS, which is wrong! You should build BLFS on top of LFS and not on top of your host (chrooted env uses the kernel and dev entries from your host and _not_ from LFS).

Quote:

I have already install X Windows System and KDE. The point is that I was getting this read-only error before I had started with BLFS, meaning just when I finished with LFS, but didn't bother to solve it. Then continued with BLFS, and I'm still getting this error. So I already have started with BLFS. But I cannot start my graphical interface, while when I type "startx", I get the error regarding my read-only file system, it cannot write some files.
Different problem altogether and not relevant at this point.

First finish building LFS!

erkant 12-09-2012 06:19 AM

I already followed the book about LFS, when I finished it I managed to boot without any kernel panic, some of the commands like ls, cat were working, but I was still getting the problem regarding read-only file system, when I tried to create a file or directory. I don't know what you mean with finish LFS. I already booted. I can start from all over again, and I will get the same problem when I will finish LFS. The point is that I don't know how to solve this read-only file system problem.

druuna 12-09-2012 06:24 AM

So if you change this id:5:initdefault: to this id:3:initdefault: you still have the same issue?

Quote:

Originally Posted by erkant
I don't know what you mean with finish LFS.

Do not start with BLFS until you resolve all the LFS issue's.

EDIT: Also remove this from your inittab: kd:5:respawn:/opt/kde/bin/kdm

erkant 12-09-2012 06:36 AM

Yes, I get the same problem. And to be sure again, I changed it to 3, and deleted the line regarding kde. Restarted, it again boots, other commands are working but still cannot create a directory or file. Still getting the problem regarding read-only file system.

druuna 12-09-2012 09:24 AM

Quote:

Originally Posted by erkant (Post 4845620)
Yes, I get the same problem. And to be sure again, I changed it to 3, and deleted the line regarding kde. Restarted, it again boots, other commands are working but still cannot create a directory or file. Still getting the problem regarding read-only file system.

You are presented by a minimal shell due to some problem (you never reach a login prompt). You can only use it to do very basic things.

I've re-read the posts in this thread an have a few questions:

1) You mention the following (p#1):
Quote:

I have created my kernel using "make defconfig" command, and just did a few small changes to the default configuration.
What changes did you make? Have you tried restoring them to the original setting?

2) Besides the changes in the inittab file, did you make any other changes regarding boot scripts?
I'm asking because the boot seems to execute /etc/rc.d/init.d/mountvirtfs (the VFS: Mounted root (ext3.... line) and shortly after that you're given the minimal shell, without an error/warning. modules, udev and swap don't seem to be executed (and all that follows).

You might want to revisit chapters 7.6, 7.7 and 7.12

Quote:

Originally Posted by erkant
I can start from all over again, and I will get the same problem when I will finish LFS.

You must be doing something wrong. If you've done this more then once and keep getting the same error/result then you probably misunderstand something (finding out what is the problem). LFS 7.2 does work, many have build it successfully. Pointing to anything specific isn't possible at this point, but are you sure you didn't ignore an error somewhere during the LFS build.

erkant 12-09-2012 10:02 AM

1) The small changes that I mean are, that I added support for udev as the book says, and enabled some graphic and input hardware support, regarding my laptop.
2) As long as I recall I didn't make any changes regarding boot scripts. I installed bootscripts in 7.6 as it says, then in section 7.7, I created the inittab exactly as it is written there, you can also see it in the earlier posts. And in section 7.12, I didn't do any changes to my rc.site file, because I think it was the same as the one already created during my LFS installation. I don't also recall any error messages during my LFS build, even the test results were similar like existing LFS test logs. I build it twice, and got the same problem. I don't know where I make mistake(s). But this is driving me crazy.

One off-topic question: When I start building LFS and when I have to mount my ext3 filesystem to /mnt/lfs, should I just use mount command for it? Or I should also add it to my host /etc/fstab file? While as long as I know if I don't mount it using my host /etc/fstab file, my partition will be unmounted from /mnt/lfs whenever I restart my computer.

druuna 12-09-2012 10:47 AM

Quote:

Originally Posted by erkant (Post 4845697)
1) The small changes that I mean are, that I added support for udev as the book says, and enabled some graphic and input hardware support, regarding my laptop.

Which udev settings? I don't recall seeing those in the LFS book (I checked chap 6.61, 7.4 and 8.3).

Quote:

Originally Posted by erkant
One off-topic question: When I start building LFS and when I have to mount my ext3 filesystem to /mnt/lfs, should I just use mount command for it? Or I should also add it to my host /etc/fstab file? While as long as I know if I don't mount it using my host /etc/fstab file, my partition will be unmounted from /mnt/lfs whenever I restart my computer.

Before you start working on your lfs system certain things need to be done. Adding a LFS mount entry to your hosts /etc/fstab file makes sure you don't forget to mount $LFS but you can also do it by hand, as long as it is done.

Once you reach chapter 6 you also need to remount certain stuff if you stop/start (reboot) (chapters 6.2.2 and 6.2.3) and use the correct chroot command (this one: 6.4. Entering the Chroot Environment or for chapter 7 and on: 6.65. Cleaning Up)

BTW: You never answered this question: error: no file found

erkant 12-09-2012 11:01 AM

Sorry for my last post, I wrote udev but I meant devtmpfs, which is said in section 8.3. Thanks for answering my off-topic questions, because I always mount my LFS entry to my host /etc/fstab. On the other hand about the question that I had posted a few months before. I had forgotten to mount my LFS system at the beginning (what a shame! :().

Edit: One thing that came to my mind now, one thing that I didn't do while going through LFS 7.2 book is in section 8.4, using GRUB to set up the boot process. I have dual-booted my laptop with Windows 7 and Linux Ubuntu, and I already have Grub 2.0 on my system. So I thought that because I already have Grub 2.0, I don't need to reinstall it, and that's why in section 8.4, where it says to use "grub-install /dev/sda", I skipped that part, and didn't execute that command, meaning I didn't installed grub. Can it be a problem?

spiky0011 12-09-2012 01:12 PM

Hi

As you have added you lfs to ubuntu grub.
Would it be an idea to boot lfs from grub prompt, Any thoughts Druuna sorry to but in.

druuna 12-09-2012 01:24 PM

Quote:

Originally Posted by erkant (Post 4845725)
One thing that came to my mind now, one thing that I didn't do while going through LFS 7.2 book is in section 8.4, using GRUB to set up the boot process. I have dual-booted my laptop with Windows 7 and Linux Ubuntu, and I already have Grub 2.0 on my system. So I thought that because I already have Grub 2.0, I don't need to reinstall it, and that's why in section 8.4, where it says to use "grub-install /dev/sda", I skipped that part, and didn't execute that command, meaning I didn't installed grub. Can it be a problem?

It seems that LFS is found and starts booting and that indicates that the grub entry used seems correct. You either choose to use the grub (lilo) that came with your host or use the one in the LFS book.

You've choosen for the one that came with your host so you do not do the grub parts in the LFS book (use your host to add an entry for LFS, which you did).

Just to make sure, can you post the LFS related grub.cfg entry?

Quote:

Originally Posted by spiky0011
As you have added you lfs to ubuntu grub.
Would it be an idea to boot lfs from grub prompt, Any thoughts Druuna sorry to but in.

The LFS kernel is found and starts to boot in the current situation. No need to tinker with grub.

erkant 12-09-2012 01:56 PM

This is the part regarding LFS in my host machines grub.cfg:

Quote:

menuentry 'LFS' {
set default=0
set timeout=5

insmod ext2

set root='(hd0,msdos6)'
echo 'Loading LFS...'

linux /boot/vmlinuz-3.5.2-lfs-7.2 root=/dev/sda6 ro init=/bin/bash
}

druuna 12-09-2012 02:03 PM

Quote:

Originally Posted by erkant (Post 4845811)
This is the part regarding LFS in my host machines grub.cfg:
Code:

menuentry 'LFS' {
 set default=0
 set timeout=5

 insmod ext2

 set root='(hd0,msdos6)'
 echo 'Loading LFS...'

 linux /boot/vmlinuz-3.5.2-lfs-7.2 root=/dev/sda6 ro init=/bin/bash
 }


That is wrong.

Why is the init=/bin/bash part there? It shouldn't be. This explains the lack of errors, the read-only FS and the minimal shell.

Is my assumption correct that you added this entry by hand? If so, let ubuntu do the work with the update-grub command (must be root).

erkant 12-09-2012 02:05 PM

Yes, I added that command by hand. Should I delete it and try booting my LFS, or should I just do update-grub without making any chance to my host grub.cfg, and then try booting my LFS?

druuna 12-09-2012 02:17 PM

Quote:

Originally Posted by erkant (Post 4845815)
Yes, I added that command by hand. Should I delete it and try booting my LFS, or should I just do update-grub without making any chance to my host grub.cfg, and then try booting my LFS?

Use the update-grub command. If grub is updated by ubuntu at some point you will probably loose your manual edits.

erkant 12-09-2012 02:52 PM

Thank you very much druuna. I really appreciate it. You saved my day!
After doing update-grub, my host machines grub.cfg changed to:

Quote:

menuentry "GNU/Linux, Linux 3.5.2-lfs-7.2 (on /dev/sda6)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos6)'
search --no-floppy --fs-uuid --set=root b8748ba1-a41a-4af4-bc55-b501f70b736b
linux /boot/vmlinuz-3.5.2-lfs-7.2 root=/dev/sda6 ro
}
And guess what, it boots successfully, and asks for lfs login, for the username and password. But the only problem is that I cannot remember my password, while I finished LFS a week or so ago. I checked /etc/passwd of my LFS directory, and there are a lot of entries, but two important users, namely one erkant, with uid 1000, and one lfs with uid 1001. Is there any way how can I check their password, or at least change them, so I can login to my LFS system?

druuna 12-09-2012 02:54 PM

You can (re)set password for a user as root with the following command:
Code:

passwd username
Can you put up the [SOLVED] tag if this is resolved.
- above the first post -> Please Mark this thread as solved if you feel a solution has been provided.
- -or- -
- first post -> Thread Tools -> Mark this thread as solved


All times are GMT -5. The time now is 05:29 AM.