Na konferenci Microsoft Build 2023 byl představen Azure Linux container host for Azure Kubernetes Service (AKS). Podrobnosti ve videu s otázkami a odpovědmi. Shrnutí v článku na DevClass.
Na itch.io probíhá Linux Game Jam 2023. Zapojit se a přihlásit hru běžící na Linuxu lze do 6. června do 01:59. Zahrát si lze hry z loňského ročníku.
Na Steamu lze získat zdarma počítačové hry Warhammer 40,000: Gladius - Relics of War a Hue. Na Epic Games Storu počítačovou hru Fallout: New Vegas - Ultimate Edition.
WordPress (Wikipedie), open source systém pro správu webového obsahu (CMS), zítra slaví 20 let. První verze byla vydána 27. května 2003.
Deno (Wikipedie), běhové prostředí (runtime) pro JavaScript, TypeScript a WebAssembly, bylo vydáno ve verzi 1.34. Přehled novinek v poznámkách k vydání. Od verze 1.6 lze pomocí "deno compile" sestavit ze zdrojových kódů binární spustitelný soubor. Nově "deno compile" podporuje také npm balíčky.
Aktuálně posledním 14. open source filmem od Blender Studia je CHARGE (YouTube). Dokončuje se 15. film Pet Projects. Začíná se pracovat na 16. filmu s pracovním názvem Project Gold.
Thunderbird má nové logo.
Není zcela jednoduché rozchodit v Linuxu kameru IPU6 umístěnou v noteboocích Dell Latitude 9420, Lenovo ThinkPad X1 Carbon Gen 10, Lenovo ThinkPad X1 Nano Gen 2, Lenovo ThinkPad X1 Yoga Gen 7 a dalších. Ve Fedora Linuxu je to teď snadnější. Hans de Goede informuje o podpoře kamery IPU6 ve Fedora Linuxu pomocí balíčků umístěných na RPM Fusion.
Společnost AMD na YouTube představila a oznámila prodej grafické karty Radeon RX 7600. Cena začíná na 269 dolarech.
Podman Desktop dospěl do verze 1.0. Jedná se o grafickou nadstavbu nad nástrojem Podman, jenž umožňuje vytvářet a provozovat kontejnery, aniž by uživatel potřeboval práva roota.
set -e; for i in lib daemon modules man samples; do make -C $i all; done
make[1]: Entering directory `/sources/blfs/autofs-4.1.4/lib'
/usr/bin/rpcgen -h -o mount.h mount.x
cannot find any C preprocessor (cpp)
/usr/bin/rpcgen: C preprocessor failed with exit code 1
make[1]: *** [mount.h] Error 1
make[1]: Leaving directory `/sources/blfs/autofs-4.1.4/lib'
make: *** [daemon] Error 2
set -e; for i in lib daemon modules man samples; do make -C $i all; done make[1]: Entering directory `/sources/blfs/autofs-4.1.4/lib' /usr/bin/rpcgen -h -o mount.h mount.x cannot find any C preprocessor (cpp) /usr/bin/rpcgen: C preprocessor failed with exit code 1 make[1]: *** [mount.h] Error 1 make[1]: Leaving directory `/sources/blfs/autofs-4.1.4/lib' make: *** [daemon] Error 2
./configure
je něco takového, jako Checking gcc to compile c: gcc -e
. Tak teď nevím, jestli mi schází jenom symlink, nebo jak to vyřešit.
peter@LFS:/sources/blfs/autofs-4.1.4$ ./configure --prefix=/ --mandir=/usr/share/man checking for binaries in... /usr/bin:/bin:/usr/sbin:/sbin checking for mount... /bin/mount checking for umount... /bin/umount checking for fsck.ext2... /sbin/fsck.ext2 checking for fsck.ext3... /sbin/fsck.ext3 checking if mount accepts the -s option... yes checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for yp_match in -lnsl... yes checking for res_query in -lresolv... yes checking for hes_resolve in -lhesiod... no checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking rpcsvc/nis.h usability... yes checking rpcsvc/nis.h presence... yes checking for rpcsvc/nis.h... yes checking for ldap_init in -lldap... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ANSI C... (cached) none needed checking whether gcc -fPIE works... yes checking location of the init.d directory... /etc/rc.d/init.d configure: creating ./config.status config.status: creating Makefile.conf config.status: creating include/config.h peter@LFS:/sources/blfs/autofs-4.1.4$ make set -e; for i in lib daemon modules man samples; do make -C $i all; done make[1]: Entering directory `/sources/blfs/autofs-4.1.4/lib' gcc -O3 -fomit-frame-pointer -Wall -I../include -fPIC -D_GNU_SOURCE -DHAVE_TCP_WRAPPER -DNFS3_SUPPORTED -c cache.c /usr/bin/rpcgen -h -o mount.h mount.x cannot find any C preprocessor (cpp) /usr/bin/rpcgen: C preprocessor failed with exit code 1 make[1]: *** [mount.h] Error 1 make[1]: Leaving directory `/sources/blfs/autofs-4.1.4/lib' make: *** [daemon] Error 2
[petr@soban ~]$ rpm -qa | grep cpp cpp-4.1.1-30 [petr@soban ~]$Případně ho skus spustit pokud tam je co vypíše za chybu.
[petr@soban ~]$ cpp --help Usage: cpp [options] file... Options: -pass-exit-codes Exit with highest error code from a phase --help Display this information --target-help Display target specific command line options (Use '-v --help' to display command line options of sub-processes) -dumpspecs Display all of the built in spec strings ........
./configure
?
...
checking how to run the C preprocessor... gcc -E
...
neni to spusob, jak spustit ten preprocesor?
cpp --help
hodi tohle:Usage: cpp [options] file... Options: -pass-exit-codes Exit with highest error code from a phase --help Display this information --target-help Display target specific command line options (Use '-v --help' to display command line options of sub-processes) -dumpspecs Display all of the built in spec strings ...
make
předat lokaci cpp?
ln -s `which cpp` /lib/cpp
adding this step before running 'make' or './configure' tells rpc to look for cpp in '/usr/bin': sed -i 's:\(RPCGEN = .*\)$/\1 -Y /usr/bin:' lib/Makefile
Tiskni
Sdílej: