You are not logged in.
Offline
remove quiet from your kernel boot parameters. post some more useful stuff like the dmesg (obtained from the recovery console)
Offline
remove quiet from your kernel boot parameters. post some more useful stuff like the dmesg (obtained from the recovery console)
that did the trick, but can't login (i use startx)..
and get an error mounting:
mnt-windows.mount - /mnt/windows
Loaded: loaded (/etc/fstab)
Active: failed (Result: exit-code) since Sat, 25 Aug 2012 13:03:57 +0700; 3min 26s ago
Where: /mnt/windows
What: /dev/sdb
Process: 367 ExecMount=/bin/mount /dev/sdb /mnt/windows -t ntfs-3g -o gid=users,fmask=113,dmask=002 (code=exited, status=12)
CGroup: name=systemd:/system/mnt-windows.mount
Aug 25 13:03:57 myhost mount[367]: NTFS signature is missing.
Aug 25 13:03:57 myhost mount[367]: Failed to mount '/dev/sdb': Invalid argument
Aug 25 13:03:57 myhost mount[367]: The device '/dev/sdb' doesn't seem to ha...S.
Aug 25 13:03:57 myhost mount[367]: Maybe the wrong device is used? Or the w... a
Aug 25 13:03:57 myhost mount[367]: partition (e.g. /dev/sda, not /dev/sda1)...d?
dmesg:
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=e1d5602b-de83-46e0-8ed8-4366a319b49b ro init=/bin/systemd
[ 0.709226] systemd-udevd[41]: starting version 188
[ 2.936891] systemd[1]: systemd 188 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP; arch)
[ 3.170230] systemd[1]: Inserted module 'autofs4'
[ 3.199718] systemd[1]: Set hostname to <myhost>.
[ 4.267502] systemd[1]: [/usr/lib/systemd/system/rc-local.service:3] Unknown lvalue 'ConditionPathIsExecutable' in section 'Unit'. Ignoring.
[ 4.445331] systemd[1]: [/usr/lib/systemd/system/rc-local-shutdown.service:3] Unknown lvalue 'ConditionPathIsExecutable' in section 'Unit'. Ignoring.
[ 4.503987] systemd[1]: Cannot add dependency job for unit dkms.service, ignoring: Unit dkms.service failed to load: No such file or directory. See system logs and 'systemctl status dkms.service' for details.
[ 4.504023] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
[ 4.504291] systemd[1]: Socket service syslog.service not loaded, refusing.
[ 5.060568] systemd-udevd[125]: starting version 188
[ 5.760783] systemd-journald[132]: Fixed max_use=145.0M max_size=18.1M min_size=64.0K keep_free=72.5M
[ 5.760833] systemd-journald[132]: Reserving 33009 entries in hash table.
[ 5.761588] systemd-journald[132]: Vacuuming...
[ 61.730597] systemd[1]: Job systemd-tmpfiles-clean.timer/start failed with result 'dependency'.
[ 61.730612] systemd[1]: Job dbus.socket/start failed with result 'dependency'.
[ 61.730719] systemd[1]: Unit mnt-windows.mount entered failed state.
[ 61.734921] systemd-journald[132]: Received SIGTERM
[ 61.810451] systemd[1]: Startup finished in 3s 223ms 841us (kernel) + 58s 586ms 503us (userspace) = 1min 1s 810ms 344us.
[ 61.839330] systemd-journald[379]: Fixed max_use=145.0M max_size=18.1M min_size=64.0K keep_free=72.5M
[ 61.839678] systemd-journald[379]: Vacuuming...
[ 61.893807] systemd-journald[379]: Received SIGUSR1
Last edited by veroke12 (2012-08-25 06:31:18)
Offline
Solved...
problem is in fstab..
# blkid
/dev/sda1: UUID="59438da3-a5b7-4fd2-90a5-54bfc2589277" TYPE="ext2"
/dev/sda2: UUID="7a24278d-dc75-46e9-84d8-7be12f3abf2e" TYPE="swap"
/dev/sda3: UUID="e1d5602b-de83-46e0-8ed8-4366a319b49b" TYPE="ext4"
/dev/sda4: UUID="f4258f8c-3452-4bb5-941c-b01c48118659" TYPE="ext4"
/dev/sdb1: LABEL="external" UUID="AE2E50AC2E506EF9" TYPE="ntfs"
and fstab:
tmpfs /tmp tmpfs nodev,nosuid 0 0
UUID=59438da3-a5b7-4fd2-90a5-54bfc2589277 /boot ext2 defaults 0 1
UUID=7a24278d-dc75-46e9-84d8-7be12f3abf2e swap swap defaults 0 0
UUID=e1d5602b-de83-46e0-8ed8-4366a319b49b / ext4 defaults 0 1
UUID=f4258f8c-3452-4bb5-941c-b01c48118659 /home ext4 defaults 0 1
UUID="AE2E50AC2E506EF9" /media/external ntfs-3g rw,uid=root,gid=users,umask=0007,noexec,noatime,nofail 0 0
Offline