Danke für die Erklärung und das empfohlene Tool! Das erklärt auch, warum es mir erst jetzt bei i3-Nutzung auffällt. Ich habe mir parcellite nun eingerichtet und alles funktioniert wie gewünscht. Danke!

Der Linux Problem/Fragen-Thread
-
-
Hey, das Tool ist ja richtig geil. Nun habe ich beide Zwischeablagen synchronisiert. Perfekt!
-
Jemand ne Idee?
Im Log habe ich immer:
[ 6.353687] EXT4-fs (dm-2): couldn't mount as ext3 due to feature incompatibilitiesdm-2 ist wohl mein /. Ich habe als Kernelparameter rootfstype=ext4 gesetzt.
Warum versucht der trotzdem was anderes zuerst als ext4?Support für ext2/ext3 ist nichtmal einkompiliert..
-
Jemand ne Idee?
Im Log habe ich immer:
[ 6.353687] EXT4-fs (dm-2): couldn't mount as ext3 due to feature incompatibilitiesdm-2 ist wohl mein /. Ich habe als Kernelparameter rootfstype=ext4 gesetzt.
Warum versucht der trotzdem was anderes zuerst als ext4?Support für ext2/ext3 ist nichtmal einkompiliert..
Das ist nur ein freundlicher Hinweis, dass dieses device nicht mit mount -t ext3 zu bestiefeln ist. In meinem Syslog bekomme ich das auch, da / auf einem ext4 liegt.
Code[ 2.374681] EXT4-fs (sda3): couldn't mount as ext3 due to feature incompatibilities [ 2.376467] EXT4-fs (sda3): couldn't mount as ext2 due to feature incompatibilities [ 2.380853] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null) [ 2.383161] VFS: Mounted root (ext4 filesystem) readonly on device 8:3.
Es könnte daher kommen, dass ext4-support gerne (auch bei mir) mit
CONFIG_EXT4_FS=yCONFIG_EXT4_USE_FOR_EXT23=y
kompiliert wird. Ausschlaggebend wäre hier die zweite Option.
-
Der ext4-Treiber des Kernels kann ohne Probleme auch ext2 und ext3 mounten, evtl versucht ers aus irgendnem Grund.
-
CONFIG_EXT4_USE_FOR_EXT23=N ist jedoch bei mir gesetzt. Daher dürfte er das eigentlich nicht tun..
-
Was sagt'n deine fstab?
-
Was sagt'n deine fstab?Code
Alles anzeigen# <fs> <mountpoint> <type> <opts> <dump/pass> # Boot (ESP) UUID=3AE4-C83D /boot/efi vfat defaults 0 1 # Root UUID=60901824-ba2e-4533-9087-bbca5f8e2006 / ext4 barrier=0,defaults,noatime,nodev,nodiratime 0 1 # Main UUID=23ff505d-c6ad-49d9-8dc7-550935a4383f /home ext4 barrier=0,defaults,noatime,nodev,nodiratime 0 2 # Swap UUID=606dbd29-decd-472b-bb04-960649acb560 none swap sw 0 0 # CGroups cpuacct /sys/fs/cgroup/cpuacct cgroup cpuacct 0 0 # Temp tmpfs /var/tmp/portage tmpfs nodev,nosuid,size=8192M,mode=1755 0 0 tmpfs /tmp tmpfs nodev,nosuid,noexec,size=32M,mode=1777 0 0
UUID ist korrekt, habe ich schon nochmals zur Sicherheit abgeglichen.
-
Die Meldungen sind spätestens normal, seitdem in Kernel 4.2? der ext3-Code komplett aus dem Kernel entfernt wurde und vom ext4-Code bedient wird. Seitdem gibts auch nur noch die Option CONFIG_EXT4_USE_FOR_EXT2 (ohne "3"), die entscheidet, ob für ext2-Dateisysteme der alte ext2-Treiber oder ext4 benutzt werden soll.
-
Ah! Danke, das war es. Erklärt, warum früher ich die Meldung wegbekommen habe, weil da noch auch ext3 nicht drin war, war jetzt zwangsweise drin ist. Dann ist alles klar.
Danke! Wobei dann der Parameter rootfstype keinen Sinn macht, wenn trotz Angabe ext4 zuerst ext3 versucht wird.. -
Wobei ich seltsamerweise am Raspberry Pi (Kernel 4.4.8-1-ARCH) die Meldung für /dev/mmcblk0p2 dadurch wegbekomme, dass ich rootfstype setze…
-
Wobei ich seltsamerweise am Raspberry Pi (Kernel 4.4.8-1-ARCH) die Meldung für /dev/mmcblk0p2 dadurch wegbekomme, dass ich rootfstype setze…Ob das an UEFI in einer Konstellation liegt? Parameter sind bei mir Hartkodiert im Kernel drin..
-
Okay, Kommando zurück.
Das lag an meiner selbstgebauten initrdHab irgendwie gepennt und rootfstype nicht sauber ausgewertet..
-
emerge dracut :p
-
emerge dracut :pSorry, ist bloat. Da vertraue ich lieber meiner eigenen initrd, wo ich exakt weiß, was ich drin hab
-
-
Ich habe da noch eine Frage
Via alsamixer sehe ich meine interne Soundkarte. Allerdings habe ich kein "HDMI-Soundkarte", wenn ich per HDMI via Docking angeschlossen bin.Ist das normal bei Intel? Wenn nein, kann ich was dagegen tun?
CONFIG_SND_HDA_CODEC_REALTEK=y ist gesetzt, was meine interne Soundkarte ist.
CONFIG_SND_HDA_CODEC_HDMI=y ist auch gesetzt, was eigentlich doch via HDMI Sound anbieten sollte?
-
Ich habe da noch eine Frage
Via alsamixer sehe ich meine interne Soundkarte. Allerdings habe ich kein "HDMI-Soundkarte", wenn ich per HDMI via Docking angeschlossen bin.Ist das normal bei Intel? Wenn nein, kann ich was dagegen tun?
CONFIG_SND_HDA_CODEC_REALTEK=y ist gesetzt, was meine interne Soundkarte ist.
CONFIG_SND_HDA_CODEC_HDMI=y ist auch gesetzt, was eigentlich doch via HDMI Sound anbieten sollte?
Wenn es sich nicht um einen speziellen Sonderfall handelt, sollte das ganze Sound-Geraffel als Module gebacken werden. Ist CONFIG_SND_DYNAMIC_MINORS gesetzt? Was steht in Deiner /usr/src/linux/.config zum Thema Sound?
-
Der Audio-Teil von HDMI ist an die GPU gekoppelt. Neben dem HDMI-Modul brauchst du auch CONFIG_SND_HDA_INTEL und/oder CONFIG_SND_HDA_I915.
-
Wenn es sich nicht um einen speziellen Sonderfall handelt, sollte das ganze Sound-Geraffel als Module gebacken werden. Ist CONFIG_SND_DYNAMIC_MINORS gesetzt? Was steht in Deiner /usr/src/linux/.config zum Thema Sound?
Warum sollte man das als Module backen? Sorry, das ist einfach nur Unfug, wozu sollte man diesen Quatsch tun? CONFIG_SND_DYNAMIC_MINORS=y ist gesetzt.
Zum Thema Sound:
Code
Alles anzeigenCONFIG_SND=y CONFIG_SND_TIMER=y CONFIG_SND_PCM=y CONFIG_SND_JACK=y CONFIG_SND_SEQUENCER=y # CONFIG_SND_SEQ_DUMMY is not set CONFIG_SND_OSSEMUL=y CONFIG_SND_MIXER_OSS=y CONFIG_SND_PCM_OSS=y CONFIG_SND_PCM_OSS_PLUGINS=y CONFIG_SND_PCM_TIMER=y CONFIG_SND_SEQUENCER_OSS=y CONFIG_SND_HRTIMER=y CONFIG_SND_SEQ_HRTIMER_DEFAULT=y CONFIG_SND_DYNAMIC_MINORS=y CONFIG_SND_MAX_CARDS=4 # CONFIG_SND_SUPPORT_OLD_API is not set CONFIG_SND_PROC_FS=y # CONFIG_SND_VERBOSE_PROCFS is not set # CONFIG_SND_VERBOSE_PRINTK is not set # CONFIG_SND_DEBUG is not set CONFIG_SND_VMASTER=y CONFIG_SND_DMA_SGBUF=y # CONFIG_SND_RAWMIDI_SEQ is not set # CONFIG_SND_OPL3_LIB_SEQ is not set # CONFIG_SND_OPL4_LIB_SEQ is not set # CONFIG_SND_SBAWE_SEQ is not set # CONFIG_SND_EMU10K1_SEQ is not set # CONFIG_SND_DRIVERS is not set CONFIG_SND_PCI=y # CONFIG_SND_AD1889 is not set # CONFIG_SND_ALS300 is not set # CONFIG_SND_ALI5451 is not set # CONFIG_SND_ASIHPI is not set # CONFIG_SND_ATIIXP is not set # CONFIG_SND_ATIIXP_MODEM is not set # CONFIG_SND_AU8810 is not set # CONFIG_SND_AU8820 is not set # CONFIG_SND_AU8830 is not set # CONFIG_SND_AW2 is not set # CONFIG_SND_AZT3328 is not set # CONFIG_SND_BT87X is not set # CONFIG_SND_CA0106 is not set # CONFIG_SND_CMIPCI is not set # CONFIG_SND_OXYGEN is not set # CONFIG_SND_CS4281 is not set # CONFIG_SND_CS46XX is not set # CONFIG_SND_CS5535AUDIO is not set # CONFIG_SND_CTXFI is not set # CONFIG_SND_DARLA20 is not set # CONFIG_SND_GINA20 is not set # CONFIG_SND_LAYLA20 is not set # CONFIG_SND_DARLA24 is not set # CONFIG_SND_GINA24 is not set # CONFIG_SND_LAYLA24 is not set # CONFIG_SND_MONA is not set # CONFIG_SND_MIA is not set # CONFIG_SND_ECHO3G is not set # CONFIG_SND_INDIGO is not set # CONFIG_SND_INDIGOIO is not set # CONFIG_SND_INDIGODJ is not set # CONFIG_SND_INDIGOIOX is not set # CONFIG_SND_INDIGODJX is not set # CONFIG_SND_EMU10K1 is not set # CONFIG_SND_EMU10K1X is not set # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_ES1938 is not set # CONFIG_SND_ES1968 is not set # CONFIG_SND_FM801 is not set # CONFIG_SND_HDSP is not set # CONFIG_SND_HDSPM is not set # CONFIG_SND_ICE1712 is not set # CONFIG_SND_ICE1724 is not set # CONFIG_SND_INTEL8X0 is not set # CONFIG_SND_INTEL8X0M is not set # CONFIG_SND_KORG1212 is not set # CONFIG_SND_LOLA is not set # CONFIG_SND_LX6464ES is not set # CONFIG_SND_MAESTRO3 is not set # CONFIG_SND_MIXART is not set # CONFIG_SND_NM256 is not set # CONFIG_SND_PCXHR is not set # CONFIG_SND_RIPTIDE is not set # CONFIG_SND_RME32 is not set # CONFIG_SND_RME96 is not set # CONFIG_SND_RME9652 is not set # CONFIG_SND_SE6X is not set # CONFIG_SND_SONICVIBES is not set # CONFIG_SND_TRIDENT is not set # CONFIG_SND_VIA82XX is not set # CONFIG_SND_VIA82XX_MODEM is not set # CONFIG_SND_VIRTUOSO is not set # CONFIG_SND_VX222 is not set # CONFIG_SND_YMFPCI is not set CONFIG_SND_HDA=y CONFIG_SND_HDA_INTEL=y # CONFIG_SND_HDA_HWDEP is not set CONFIG_SND_HDA_RECONFIG=y CONFIG_SND_HDA_INPUT_BEEP=y CONFIG_SND_HDA_INPUT_BEEP_MODE=1 # CONFIG_SND_HDA_PATCH_LOADER is not set CONFIG_SND_HDA_CODEC_REALTEK=y # CONFIG_SND_HDA_CODEC_ANALOG is not set # CONFIG_SND_HDA_CODEC_SIGMATEL is not set # CONFIG_SND_HDA_CODEC_VIA is not set CONFIG_SND_HDA_CODEC_HDMI=y # CONFIG_SND_HDA_CODEC_CIRRUS is not set # CONFIG_SND_HDA_CODEC_CONEXANT is not set # CONFIG_SND_HDA_CODEC_CA0110 is not set # CONFIG_SND_HDA_CODEC_CA0132 is not set # CONFIG_SND_HDA_CODEC_CMEDIA is not set # CONFIG_SND_HDA_CODEC_SI3054 is not set CONFIG_SND_HDA_GENERIC=y CONFIG_SND_HDA_POWER_SAVE_DEFAULT=15 CONFIG_SND_HDA_CORE=y CONFIG_SND_HDA_I915=y CONFIG_SND_HDA_PREALLOC_SIZE=2048 # CONFIG_SND_USB is not set # CONFIG_SND_SOC is not set
Der Audio-Teil von HDMI ist an die GPU gekoppelt. Neben dem HDMI-Modul brauchst du auch CONFIG_SND_HDA_INTEL und/oder CONFIG_SND_HDA_I915.CONFIG_SND_HDA_INTEL=y ist gesetzt, weil sonst CONFIG_SND_HDA_CODEC_REALTEK garnicht auswählbar wäre.
CONFIG_SND_HDA_I915=y ist entsprechend auch gesetzt.
-
Jetzt mitmachen!
Du hast noch kein Benutzerkonto auf unserer Seite? Registriere dich kostenlos und nimm an unserer Community teil!