ヨハネ23世(ラテン語: Ioannes PP. XXIII、英語: John XXIII、1881年11月25日-1963年6月3日)はローマ教皇(在位:1958年10月28日-1963年6月3日)、カトリック教会の司祭。本名は、アンジェロ・ジュゼッペ・ロンカッリ(Angelo Giuseppe Roncalli)。第2バチカン公会議の実施を指示して世界を驚かせ、実際に開会までこぎつけたが、会期途中で世を去った。エキュメニズム(教会一致)の精神に従って、他教会や他宗教との対話に積極的であった。カトリック教会の聖人である。ヨハネス23世とも表記される。15世紀の対立教皇であるヨハネス23世は同名の別人である。
4
I have a device with two interfaces, eth0 and eth1. One should get its IP from a DHCP server and the other should get its IP statically. If my /etc/network/interfaces file is configured as follows: auto lo iface lo inet loopback auto eth1 iface eth1 inet dhcp iface eth1 inet6 auto auto eth0 iface eth0 inet static address 10.10.10.10 netmask 255.255.255.0 Everything works great, eth1 gets its IP from the DHCP server, eth0 sets its IP statically from the information given, but if I try to change the order in the file, such as auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 10.10.10.10 netmask 255.255.255.0 auto eth1 iface eth1 inet dhcp iface eth1 inet6 auto In this case, eth1 fails to get an IP. Does the /etc/network/interface care about th...
0
I have a Multi-Boot-System with 4 different installations of Linux. (1 Manjaro, 3 Mint) spread over 2 hard drives (2 on each). After doing grub-install /dev/sdX and update-grub several times within each installation ... the Grub-menu needs more and more time to open. It started with a few more seconds, now it takes several minutes. I tried to purge and reinstall Grub but this made the problem even worse: apt-get purge grub grub-pc grub-common apt-get install grub-common grub-pc os-prober update-grub What could be causing this problem?
linux grub2 multiboot
share | improve this question
edited 4 mins ago
...