guix-cookbook.de.po 274 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386
  1. # German translations for the Guix Cookbook.
  2. # Copyright (C) 2019, 2020 the authors of Guix (msgids) and the following authors (msgstr)
  3. # This file is distributed under the same license as the guix manual package.
  4. # Florian Pelz <pelzflorian@pelzflorian.de>, 2020, 2021, 2022.
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: guix 1.0.1.4876-09145-dirty\n"
  8. "Report-Msgid-Bugs-To: bug-guix@gnu.org\n"
  9. "POT-Creation-Date: 2021-12-31 15:18+0000\n"
  10. "PO-Revision-Date: 2022-01-05 14:54+0000\n"
  11. "Last-Translator: Florian Pelz <pelzflorian@pelzflorian.de>\n"
  12. "Language-Team: German <https://translate.fedoraproject.org/projects/guix/documentation-cookbook/de/>\n"
  13. "Language: de\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  18. "X-Generator: Weblate 4.10.1\n"
  19. #. type: Plain text
  20. #: guix-git/doc/guix-cookbook.texi:7
  21. msgid "@documentencoding UTF-8"
  22. msgstr ""
  23. "@documentencoding UTF-8\n"
  24. "@documentlanguage de\n"
  25. "@frenchspacing on"
  26. #. type: top
  27. #: guix-git/doc/guix-cookbook.texi:7 guix-git/doc/guix-cookbook.texi:36
  28. #: guix-git/doc/guix-cookbook.texi:50
  29. #, no-wrap
  30. msgid "GNU Guix Cookbook"
  31. msgstr "GNU-Guix-Kochbuch"
  32. #. type: copying
  33. #: guix-git/doc/guix-cookbook.texi:21
  34. msgid "Copyright @copyright{} 2019 Ricardo Wurmus@* Copyright @copyright{} 2019 Efraim Flashner@* Copyright @copyright{} 2019 Pierre Neidhardt@* Copyright @copyright{} 2020 Oleg Pykhalov@* Copyright @copyright{} 2020 Matthew Brooks@* Copyright @copyright{} 2020 Marcin Karpezo@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020 Christine Lemmer-Webber@* Copyright @copyright{} 2021 Joshua Branson@*"
  35. msgstr "Copyright @copyright{} 2019 Ricardo Wurmus@* Copyright @copyright{} 2019 Efraim Flashner@* Copyright @copyright{} 2019 Pierre Neidhardt@* Copyright @copyright{} 2020 Oleg Pykhalov@* Copyright @copyright{} 2020 Matthew Brooks@* Copyright @copyright{} 2020 Marcin Karpezo@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020 Christine Lemmer-Webber@* Copyright @copyright{} 2021 Joshua Branson@*"
  36. #. type: copying
  37. #: guix-git/doc/guix-cookbook.texi:28
  38. msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''."
  39. msgstr "Es ist Ihnen gestattet, dieses Dokument zu vervielfältigen, weiterzugeben und/oder zu verändern, unter den Bedingungen der GNU Free Documentation License, entweder gemäß Version 1.3 der Lizenz oder (nach Ihrer Option) einer späteren Version, die von der Free Software Foundation veröffentlicht wurde, ohne unveränderliche Abschnitte, ohne vorderen Umschlagtext und ohne hinteren Umschlagtext. Eine Kopie der Lizenz finden Sie im Abschnitt mit dem Titel „GNU Free Documentation License“."
  40. #. type: dircategory
  41. #: guix-git/doc/guix-cookbook.texi:30
  42. #, no-wrap
  43. msgid "System administration"
  44. msgstr "Systemadministration"
  45. #. type: menuentry
  46. #: guix-git/doc/guix-cookbook.texi:33
  47. msgid "Guix cookbook: (guix-cookbook)"
  48. msgstr "Guix-Kochbuch: (guix-cookbook.de)"
  49. #. type: menuentry
  50. #: guix-git/doc/guix-cookbook.texi:33
  51. msgid "Tutorials and examples for GNU Guix."
  52. msgstr "Anleitungen und Beispiele für GNU Guix."
  53. #. type: subtitle
  54. #: guix-git/doc/guix-cookbook.texi:37
  55. #, no-wrap
  56. msgid "Tutorials and examples for using the GNU Guix Functional Package Manager"
  57. msgstr "Anleitungen und Beispiele, wie man den funktionalen Paketmanager GNU Guix benutzt"
  58. #. type: author
  59. #: guix-git/doc/guix-cookbook.texi:38
  60. #, no-wrap
  61. msgid "The GNU Guix Developers"
  62. msgstr "Die Entwickler von GNU Guix"
  63. #. type: node
  64. #: guix-git/doc/guix-cookbook.texi:49
  65. #, no-wrap
  66. msgid "Top"
  67. msgstr "Top"
  68. #. type: Plain text
  69. #: guix-git/doc/guix-cookbook.texi:56
  70. msgid "This document presents tutorials and detailed examples for GNU@tie{}Guix, a functional package management tool written for the GNU system. Please @pxref{Top,,, guix, GNU Guix reference manual} for details about the system, its API, and related concepts."
  71. msgstr "Dieses Dokument stellt Anleitungen und detaillierte Beispiele vor, wie man GNU@tie{}Guix benutzt, ein Werkzeug zur funktionalen Paketverwaltung, das für das GNU-System geschrieben wurde. Bitte lesen Sie Details zum System, seinen Programmierschnittstellen und ähnlichen Konzepten im @ref{Top,,, guix.de, Referenzhandbuch zu GNU Guix} nach."
  72. #. type: Plain text
  73. #: guix-git/doc/guix-cookbook.texi:66
  74. msgid "This manual is also available in French (@pxref{Top,,, guix-cookbook.fr, Livre de recettes de GNU Guix}) and German (@pxref{Top,,, guix-cookbook.de, GNU-Guix-Kochbuch}). If you would like to translate this document in your native language, consider joining @uref{https://translate.fedoraproject.org/projects/guix/documentation-cookbook, Weblate} (@pxref{Translating Guix,,, guix, GNU Guix reference manual})."
  75. msgstr "Dieses Handbuch ist auch auf Englisch (siehe @ref{Top,,, guix-cookbook, GNU Guix Cookbook}) und auf Französisch verfügbar (siehe @ref{Top,,, guix-cookbook.fr, Livre de recettes de GNU Guix}). Wenn Sie dieses Dokument in Ihre eigene Sprache übersetzen möchten, dann sind Sie bei @uref{https://translate.fedoraproject.org/projects/guix/documentation-cookbook, Weblate} herzlich willkommen."
  76. #. type: chapter
  77. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:82
  78. #: guix-git/doc/guix-cookbook.texi:98 guix-git/doc/guix-cookbook.texi:99
  79. #, no-wrap
  80. msgid "Scheme tutorials"
  81. msgstr "Anleitungen zu Scheme"
  82. #. type: menuentry
  83. #: guix-git/doc/guix-cookbook.texi:73
  84. msgid "Meet your new favorite language!"
  85. msgstr "Lernen Sie Ihre neue Lieblingssprache kennen!"
  86. #. type: chapter
  87. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:86
  88. #: guix-git/doc/guix-cookbook.texi:305 guix-git/doc/guix-cookbook.texi:306
  89. #, no-wrap
  90. msgid "Packaging"
  91. msgstr "Paketerstellung"
  92. #. type: menuentry
  93. #: guix-git/doc/guix-cookbook.texi:73
  94. msgid "Packaging tutorials"
  95. msgstr "Anleitungen, wie man Pakete erstellt."
  96. #. type: chapter
  97. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:90
  98. #: guix-git/doc/guix-cookbook.texi:1340 guix-git/doc/guix-cookbook.texi:1341
  99. #, no-wrap
  100. msgid "System Configuration"
  101. msgstr "Systemkonfiguration"
  102. #. type: menuentry
  103. #: guix-git/doc/guix-cookbook.texi:73
  104. msgid "Customizing the GNU System"
  105. msgstr "Das GNU-System anpassen."
  106. #. type: chapter
  107. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:2436
  108. #: guix-git/doc/guix-cookbook.texi:2437
  109. #, no-wrap
  110. msgid "Advanced package management"
  111. msgstr "Fortgeschrittene Paketverwaltung"
  112. # angelehnt an Alle Macht dem Volke in Übersetzung von Die Mutter
  113. #. type: menuentry
  114. #: guix-git/doc/guix-cookbook.texi:73
  115. msgid "Power to the users!"
  116. msgstr "Alle Macht den Nutzern!"
  117. #. type: chapter
  118. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:2834
  119. #: guix-git/doc/guix-cookbook.texi:2835
  120. #, no-wrap
  121. msgid "Environment management"
  122. msgstr "Umgebungen verwalten"
  123. #. type: menuentry
  124. #: guix-git/doc/guix-cookbook.texi:73
  125. msgid "Control environment"
  126. msgstr "Umgebungen festlegen."
  127. #. type: chapter
  128. #: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2958
  129. #: guix-git/doc/guix-cookbook.texi:2959
  130. #, no-wrap
  131. msgid "Acknowledgments"
  132. msgstr "Danksagungen"
  133. #. type: menuentry
  134. #: guix-git/doc/guix-cookbook.texi:77
  135. msgid "Thanks!"
  136. msgstr "Danke!"
  137. #. type: appendix
  138. #: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2983
  139. #: guix-git/doc/guix-cookbook.texi:2984
  140. #, no-wrap
  141. msgid "GNU Free Documentation License"
  142. msgstr "GNU-Lizenz für freie Dokumentation"
  143. #. type: menuentry
  144. #: guix-git/doc/guix-cookbook.texi:77
  145. msgid "The license of this document."
  146. msgstr "Die Lizenz dieses Dokuments."
  147. #. type: unnumbered
  148. #: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2989
  149. #: guix-git/doc/guix-cookbook.texi:2990
  150. #, no-wrap
  151. msgid "Concept Index"
  152. msgstr "Konzeptverzeichnis"
  153. #. type: menuentry
  154. #: guix-git/doc/guix-cookbook.texi:77
  155. msgid "Concepts."
  156. msgstr "Konzepte."
  157. #. type: menuentry
  158. #: guix-git/doc/guix-cookbook.texi:80
  159. msgid "--- The Detailed Node Listing ---"
  160. msgstr "--- Detaillierte Liste der Knoten ---"
  161. #. type: section
  162. #: guix-git/doc/guix-cookbook.texi:84 guix-git/doc/guix-cookbook.texi:112
  163. #: guix-git/doc/guix-cookbook.texi:113
  164. #, no-wrap
  165. msgid "A Scheme Crash Course"
  166. msgstr "Ein Schnellkurs in Scheme"
  167. #. type: menuentry
  168. #: guix-git/doc/guix-cookbook.texi:84
  169. msgid "Learn the basics of Scheme"
  170. msgstr "Die Grundzüge von Scheme erlernen."
  171. #. type: section
  172. #: guix-git/doc/guix-cookbook.texi:88 guix-git/doc/guix-cookbook.texi:317
  173. #: guix-git/doc/guix-cookbook.texi:319 guix-git/doc/guix-cookbook.texi:320
  174. #, no-wrap
  175. msgid "Packaging Tutorial"
  176. msgstr "Anleitung zum Paketeschreiben"
  177. #. type: menuentry
  178. #: guix-git/doc/guix-cookbook.texi:88
  179. msgid "Let's add a package to Guix!"
  180. msgstr "Lasst uns ein Paket zu Guix beitragen!"
  181. #. type: section
  182. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360
  183. #: guix-git/doc/guix-cookbook.texi:1362 guix-git/doc/guix-cookbook.texi:1363
  184. #, no-wrap
  185. msgid "Auto-Login to a Specific TTY"
  186. msgstr "Automatisch an virtueller Konsole anmelden"
  187. #. type: menuentry
  188. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360
  189. msgid "Automatically Login a User to a Specific TTY"
  190. msgstr "Benutzer an einem bestimmten TTY automatisch anmelden."
  191. #. type: section
  192. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360
  193. #: guix-git/doc/guix-cookbook.texi:1407 guix-git/doc/guix-cookbook.texi:1408
  194. #, no-wrap
  195. msgid "Customizing the Kernel"
  196. msgstr "Den Kernel anpassen"
  197. #. type: menuentry
  198. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360
  199. msgid "Creating and using a custom Linux kernel on Guix System."
  200. msgstr "Einen eigenen Linux-Kernel auf Guix System erzeugen und benutzen."
  201. #. type: Plain text
  202. #: guix-git/doc/guix-cookbook.texi:105
  203. msgid "GNU@tie{}Guix is written in the general purpose programming language Scheme, and many of its features can be accessed and manipulated programmatically. You can use Scheme to generate package definitions, to modify them, to build them, to deploy whole operating systems, etc."
  204. msgstr "GNU@tie{}Guix ist in Scheme geschrieben, einer für alle Anwendungszwecke geeigneten Programmiersprache, und viele Funktionalitäten von Guix können programmatisch angesteuert und verändert werden. Sie können Scheme benutzen, um Paketdefinitionen zu erzeugen, abzuändern, ganze Betriebssysteme einzuspielen etc."
  205. #. type: Plain text
  206. #: guix-git/doc/guix-cookbook.texi:109
  207. msgid "Knowing the basics of how to program in Scheme will unlock many of the advanced features Guix provides --- and you don't even need to be an experienced programmer to use them!"
  208. msgstr "Wenn man die Grundzüge kennt, wie man in Scheme programmiert, bekommt man Zugang zu vielen der fortgeschrittenen Funktionen von Guix@tie{}— und Sie müssen dazu nicht einmal ein erfahrener Programmierer sein!"
  209. #. type: Plain text
  210. #: guix-git/doc/guix-cookbook.texi:111
  211. msgid "Let's get started!"
  212. msgstr "Legen wir los!"
  213. #. type: cindex
  214. #: guix-git/doc/guix-cookbook.texi:115
  215. #, no-wrap
  216. msgid "Scheme, crash course"
  217. msgstr "Scheme, Schnellkurs"
  218. #. type: Plain text
  219. #: guix-git/doc/guix-cookbook.texi:121
  220. msgid "Guix uses the Guile implementation of Scheme. To start playing with the language, install it with @code{guix install guile} and start a @dfn{REPL}---short for @uref{https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop, @dfn{read-eval-print loop}}---by running @code{guile} from the command line."
  221. msgstr "Die von Guix benutzte Scheme-Implementierung nennt sich Guile. Um mit der Sprache herumspielen zu können, installieren Sie Guile mit @code{guix install guile} und starten eine interaktive Programmierumgebung (englisch @uref{https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop, Read-Eval-Print-Loop}, kurz REPL), indem Sie @code{guile} auf der Befehlszeile ausführen."
  222. #. type: Plain text
  223. #: guix-git/doc/guix-cookbook.texi:124
  224. msgid "Alternatively you can also run @code{guix environment --ad-hoc guile -- guile} if you'd rather not have Guile installed in your user profile."
  225. msgstr "Alternativ können Sie auch den Befehl @code{guix environment --ad-hoc guile -- guile} ausführen, wenn Sie Guile lieber @emph{nicht} in Ihr Nutzerprofil installieren wollen."
  226. #. type: Plain text
  227. #: guix-git/doc/guix-cookbook.texi:130
  228. msgid "In the following examples, lines show what you would type at the REPL; lines starting with ``@result{}'' show evaluation results, while lines starting with ``@print{}'' show things that get printed. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more details on the REPL."
  229. msgstr "In den folgenden Beispielen stehen die Zeilen dafür, was Sie auf der REPL eintippen; wenn eine Zeile mit „@result{}“ beginnt, zeigt sie das Ergebnis einer Auswertung, während Zeilen, die mit „@print{}“ beginnen, für eine angezeigte Ausgabe stehen. Siehe @ref{Using Guile Interactively,,, guile, das Referenzhandbuch zu GNU Guile} für mehr Details zur REPL."
  230. #. type: itemize
  231. #: guix-git/doc/guix-cookbook.texi:138
  232. msgid "Scheme syntax boils down to a tree of expressions (or @emph{s-expression} in Lisp lingo). An expression can be a literal such as numbers and strings, or a compound which is a parenthesized list of compounds and literals. @code{#true} and @code{#false} (abbreviated @code{#t} and @code{#f}) stand for the Booleans ``true'' and ``false'', respectively."
  233. msgstr "Die Scheme-Syntax ist an sich ein Baum von Ausdrücken (Lisp-Programmierer nennen sie @emph{symbolische Ausdrücke}, kurz @emph{S-Ausdrücke} bzw.@: englisch @emph{s-expression}). Ein solcher Ausdruck kann ein Literal sein, wie z.B.@: Zahlen oder Zeichenketten, oder er kann ein zusammengesetzter Ausdruck sein, d.h.@: eine geklammerte Liste von zusammengesetzten und literalen Ausdrücken. Dabei stehen @code{#true} und @code{#false} (abgekürzt auch @code{#t} und @code{#f}) jeweils für die Booleschen Werte „wahr“ und „falsch“."
  234. #. type: itemize
  235. #: guix-git/doc/guix-cookbook.texi:140
  236. msgid "Examples of valid expressions:"
  237. msgstr "Beispiele für gültige Ausdrücke"
  238. #. type: lisp
  239. #: guix-git/doc/guix-cookbook.texi:144
  240. #, no-wrap
  241. msgid ""
  242. "\"Hello World!\"\n"
  243. "@result{} \"Hello World!\"\n"
  244. "\n"
  245. msgstr ""
  246. "\"Hallo Welt!\"\n"
  247. "@result{} \"Hallo Welt!\"\n"
  248. "\n"
  249. #. type: lisp
  250. #: guix-git/doc/guix-cookbook.texi:147
  251. #, no-wrap
  252. msgid ""
  253. "17\n"
  254. "@result{} 17\n"
  255. "\n"
  256. msgstr ""
  257. "17\n"
  258. "@result{} 17\n"
  259. "\n"
  260. #. type: lisp
  261. #: guix-git/doc/guix-cookbook.texi:151
  262. #, no-wrap
  263. msgid ""
  264. "(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  265. "@print{} Hello Guix!\n"
  266. "@result{} #<unspecified>\n"
  267. msgstr ""
  268. "(display (string-append \"Hallo \" \"Guix\" \"\\n\"))\n"
  269. "@print{} Hallo Guix!\n"
  270. "@result{} #<unspecified>\n"
  271. #. type: itemize
  272. #: guix-git/doc/guix-cookbook.texi:158
  273. msgid "This last example is a function call nested in another function call. When a parenthesized expression is evaluated, the first term is the function and the rest are the arguments passed to the function. Every function returns the last evaluated expression as its return value."
  274. msgstr "Das letzte Beispiel eben ist der Aufruf einer Funktion innerhalb eines anderen Funktionsaufrufs. Wenn ein geklammerter Ausdruck ausgewertet wird, ist der erste Term die Funktion und der Rest sind die Argumente, die an die Funktion übergeben werden. Jede Funktion liefert ihren zuletzt ausgewerteten Ausdruck als ihren Rückgabewert."
  275. #. type: itemize
  276. #: guix-git/doc/guix-cookbook.texi:161
  277. msgid "Anonymous functions are declared with the @code{lambda} term:"
  278. msgstr "Anonyme Funktionen werden mit dem @code{lambda}-Term deklariert:"
  279. #. type: lisp
  280. #: guix-git/doc/guix-cookbook.texi:165
  281. #, no-wrap
  282. msgid ""
  283. "(lambda (x) (* x x))\n"
  284. "@result{} #<procedure 120e348 at <unknown port>:24:0 (x)>\n"
  285. msgstr ""
  286. "(lambda (x) (* x x))\n"
  287. "@result{} #<procedure 120e348 at <unknown port>:24:0 (x)>\n"
  288. #. type: itemize
  289. #: guix-git/doc/guix-cookbook.texi:170
  290. msgid "The above procedure returns the square of its argument. Since everything is an expression, the @code{lambda} expression returns an anonymous procedure, which can in turn be applied to an argument:"
  291. msgstr "Die obige Prozedur liefert das Quadrat ihres Arguments. Weil alles ein Ausdruck ist, liefert der Ausdruck @code{lambda} eine anonyme Prozedur, die wiederum auf ein Argument angewandt werden kann:"
  292. #. type: lisp
  293. #: guix-git/doc/guix-cookbook.texi:174
  294. #, no-wrap
  295. msgid ""
  296. "((lambda (x) (* x x)) 3)\n"
  297. "@result{} 9\n"
  298. msgstr ""
  299. "((lambda (x) (* x x)) 3)\n"
  300. "@result{} 9\n"
  301. #. type: itemize
  302. #: guix-git/doc/guix-cookbook.texi:178
  303. msgid "Anything can be assigned a global name with @code{define}:"
  304. msgstr "Allem kann mit @code{define} ein globaler Name zugewiesen werden:"
  305. #. type: lisp
  306. #: guix-git/doc/guix-cookbook.texi:184
  307. #, no-wrap
  308. msgid ""
  309. "(define a 3)\n"
  310. "(define square (lambda (x) (* x x)))\n"
  311. "(square a)\n"
  312. "@result{} 9\n"
  313. msgstr ""
  314. "(define a 3)\n"
  315. "(define quadrat (lambda (x) (* x x)))\n"
  316. "(quadrat a)\n"
  317. "@result{} 9\n"
  318. #. type: itemize
  319. #: guix-git/doc/guix-cookbook.texi:188
  320. msgid "Procedures can be defined more concisely with the following syntax:"
  321. msgstr "Prozeduren können auch kürzer mit der folgenden Syntax definiert werden:"
  322. #. type: lisp
  323. #: guix-git/doc/guix-cookbook.texi:191
  324. #, no-wrap
  325. msgid "(define (square x) (* x x))\n"
  326. msgstr "(define (quadrat x) (* x x))\n"
  327. #. type: itemize
  328. #: guix-git/doc/guix-cookbook.texi:195
  329. msgid "A list structure can be created with the @code{list} procedure:"
  330. msgstr "Eine Listenstruktur kann mit der @code{list}-Prozedur erzeugt werden:"
  331. #. type: lisp
  332. #: guix-git/doc/guix-cookbook.texi:199
  333. #, no-wrap
  334. msgid ""
  335. "(list 2 a 5 7)\n"
  336. "@result{} (2 3 5 7)\n"
  337. msgstr ""
  338. "(list 2 a 5 7)\n"
  339. "@result{} (2 3 5 7)\n"
  340. #. type: itemize
  341. #: guix-git/doc/guix-cookbook.texi:206
  342. msgid "The @dfn{quote} disables evaluation of a parenthesized expression: the first term is not called over the other terms (@pxref{Expression Syntax, quote,, guile, GNU Guile Reference Manual}). Thus it effectively returns a list of terms."
  343. msgstr "Mit dem @dfn{quote}-Zeichen wird das Auswerten eines geklammerten Ausdrucks abgeschaltet: Der erste Term wird @emph{nicht} auf den anderen Termen aufgerufen (siehe @ref{Expression Syntax, quote,, guile, Referenzhandbuch zu GNU Guile}). Folglich liefert es quasi eine Liste von Termen."
  344. #. type: lisp
  345. #: guix-git/doc/guix-cookbook.texi:210
  346. #, no-wrap
  347. msgid ""
  348. "'(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  349. "@result{} (display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  350. "\n"
  351. msgstr ""
  352. "'(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  353. "@result{} (display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  354. "\n"
  355. #. type: lisp
  356. #: guix-git/doc/guix-cookbook.texi:213
  357. #, no-wrap
  358. msgid ""
  359. "'(2 a 5 7)\n"
  360. "@result{} (2 a 5 7)\n"
  361. msgstr ""
  362. "'(2 a 5 7)\n"
  363. "@result{} (2 a 5 7)\n"
  364. #. type: itemize
  365. #: guix-git/doc/guix-cookbook.texi:219
  366. msgid "The @dfn{quasiquote} disables evaluation of a parenthesized expression until @dfn{unquote} (a comma) re-enables it. Thus it provides us with fine-grained control over what is evaluated and what is not."
  367. msgstr "Mit einem @dfn{quasiquote}-Zeichen wird die Auswertung eines geklammerten Ausdrucks so lange abgeschaltet, bis ein @dfn{unquote} (ein Komma) sie wieder aktiviert. Wir können damit genau steuern, was ausgewertet wird und was nicht."
  368. #. type: lisp
  369. #: guix-git/doc/guix-cookbook.texi:223
  370. #, no-wrap
  371. msgid ""
  372. "`(2 a 5 7 (2 ,a 5 ,(+ a 4)))\n"
  373. "@result{} (2 a 5 7 (2 3 5 7))\n"
  374. msgstr ""
  375. "`(2 a 5 7 (2 ,a 5 ,(+ a 4)))\n"
  376. "@result{} (2 a 5 7 (2 3 5 7))\n"
  377. #. type: itemize
  378. #: guix-git/doc/guix-cookbook.texi:227
  379. msgid "Note that the above result is a list of mixed elements: numbers, symbols (here @code{a}) and the last element is a list itself."
  380. msgstr "Beachten Sie, dass obiges Ergenis eine Liste verschiedenartiger Elemente ist: Zahlen, Symbole (in diesem Fall @code{a}) und als letztes Element selbst wieder eine Liste."
  381. #. type: itemize
  382. #: guix-git/doc/guix-cookbook.texi:231
  383. msgid "Multiple variables can be named locally with @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}):"
  384. msgstr "Mehrere Variable können in einer lokalen Umgebung mit Bezeichnern versehen werden, indem Sie @code{let} benutzen (siehe @ref{Local Bindings,,, guile, Referenzhandbuch zu GNU Guile}):"
  385. #. type: lisp
  386. #: guix-git/doc/guix-cookbook.texi:238
  387. #, no-wrap
  388. msgid ""
  389. "(define x 10)\n"
  390. "(let ((x 2)\n"
  391. " (y 3))\n"
  392. " (list x y))\n"
  393. "@result{} (2 3)\n"
  394. "\n"
  395. msgstr ""
  396. "(define x 10)\n"
  397. "(let ((x 2)\n"
  398. " (y 3))\n"
  399. " (list x y))\n"
  400. "@result{} (2 3)\n"
  401. "\n"
  402. #. type: lisp
  403. #: guix-git/doc/guix-cookbook.texi:241
  404. #, no-wrap
  405. msgid ""
  406. "x\n"
  407. "@result{} 10\n"
  408. "\n"
  409. msgstr ""
  410. "x\n"
  411. "@result{} 10\n"
  412. "\n"
  413. #. type: lisp
  414. #: guix-git/doc/guix-cookbook.texi:244
  415. #, no-wrap
  416. msgid ""
  417. "y\n"
  418. "@error{} In procedure module-lookup: Unbound variable: y\n"
  419. msgstr ""
  420. "y\n"
  421. "@error{} In procedure module-lookup: Unbound variable: y\n"
  422. #. type: itemize
  423. #: guix-git/doc/guix-cookbook.texi:248
  424. msgid "Use @code{let*} to allow later variable declarations to refer to earlier definitions."
  425. msgstr "Benutzen Sie @code{let*}, damit spätere Variablendeklarationen auf frühere verweisen können."
  426. #. type: lisp
  427. #: guix-git/doc/guix-cookbook.texi:254
  428. #, no-wrap
  429. msgid ""
  430. "(let* ((x 2)\n"
  431. " (y (* x 3)))\n"
  432. " (list x y))\n"
  433. "@result{} (2 6)\n"
  434. msgstr ""
  435. "(let* ((x 2)\n"
  436. " (y (* x 3)))\n"
  437. " (list x y))\n"
  438. "@result{} (2 6)\n"
  439. #. type: itemize
  440. #: guix-git/doc/guix-cookbook.texi:261
  441. msgid "@dfn{Keywords} are typically used to identify the named parameters of a procedure. They are prefixed by @code{#:} (hash, colon) followed by alphanumeric characters: @code{#:like-this}. @xref{Keywords,,, guile, GNU Guile Reference Manual}."
  442. msgstr "Mit @dfn{Schlüsselwörtern} bestimmen wir normalerweise diejenigen Parameter einer Prozedur, die einen Namen haben sollen. Ihnen wird @code{#:} (Doppelkreuz und Doppelpunkt) vorangestellt, gefolgt von alphanumerischen Zeichen: @code{#:etwa-so}. Siehe @ref{Keywords,,, guile, Referenzhandbuch zu GNU Guile}."
  443. #. type: itemize
  444. #: guix-git/doc/guix-cookbook.texi:266
  445. msgid "The percentage @code{%} is typically used for read-only global variables in the build stage. Note that it is merely a convention, like @code{_} in C. Scheme treats @code{%} exactly the same as any other letter."
  446. msgstr "Das Prozentzeichen @code{%} wird in der Regel für globale Variable auf Erstellungsebene benutzt, auf die nur lesend zugegriffen werden soll. Beachten Sie, dass es sich dabei nur um eine Konvention handelt, ähnlich wie @code{_} in C@. Scheme behandelt @code{%} genau wie jedes andere Zeichen."
  447. #. type: itemize
  448. #: guix-git/doc/guix-cookbook.texi:270
  449. msgid "Modules are created with @code{define-module} (@pxref{Creating Guile Modules,,, guile, GNU Guile Reference Manual}). For instance"
  450. msgstr "Module werden mit Hilfe von @code{define-module} erzeugt (siehe @ref{Creating Guile Modules,,, guile, Referenzhandbuch zu GNU Guile}). Zum Beispiel definiert man mit"
  451. #. type: lisp
  452. #: guix-git/doc/guix-cookbook.texi:276
  453. #, no-wrap
  454. msgid ""
  455. "(define-module (guix build-system ruby)\n"
  456. " #:use-module (guix store)\n"
  457. " #:export (ruby-build\n"
  458. " ruby-build-system))\n"
  459. msgstr ""
  460. "(define-module (guix build-system ruby)\n"
  461. " #:use-module (guix store)\n"
  462. " #:export (ruby-build\n"
  463. " ruby-build-system))\n"
  464. #. type: itemize
  465. #: guix-git/doc/guix-cookbook.texi:282
  466. msgid "defines the module @code{guix build-system ruby} which must be located in @file{guix/build-system/ruby.scm} somewhere in the Guile load path. It depends on the @code{(guix store)} module and it exports two variables, @code{ruby-build} and @code{ruby-build-system}."
  467. msgstr "das Modul @code{guix build-system ruby}, das sich unter dem Pfad @file{guix/build-system/ruby.scm} innerhalb irgendeines Verzeichnisses im Guile-Ladepfad befinden muss. Es hat eine Abhängigkeit auf das Modul @code{(guix store)} und exportiert zwei seiner Variablen, @code{ruby-build} und @code{ruby-build-system}."
  468. #. type: Plain text
  469. #: guix-git/doc/guix-cookbook.texi:287
  470. msgid "For a more detailed introduction, check out @uref{http://www.troubleshooters.com/codecorn/scheme_guile/hello.htm, Scheme at a Glance}, by Steve Litt."
  471. msgstr "Für eine detailliertere Einführung können Sie einen Blick auf Steve Litts @uref{http://www.troubleshooters.com/codecorn/scheme_guile/hello.htm, Scheme at a Glance} werfen."
  472. #. type: Plain text
  473. #: guix-git/doc/guix-cookbook.texi:299
  474. msgid "One of the reference Scheme books is the seminal ``Structure and Interpretation of Computer Programs'', by Harold Abelson and Gerald Jay Sussman, with Julie Sussman. You'll find a @uref{https://mitpress.mit.edu/sites/default/files/sicp/index.html, free copy online}, together with @uref{https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/, videos of the lectures by the authors}. The book is available in Texinfo format as the @code{sicp} Guix package. Go ahead, run @code{guix install sicp} and start reading with @code{info sicp} (@pxref{,,, sicp, Structure and Interpretation of Computer Programs}). An @uref{https://sarabander.github.io/sicp/, unofficial ebook is also available}."
  475. msgstr "Eines der Referenzbücher zu Scheme ist das einflussreiche „Structure and Interpretation of Computer Programs“, von Harold Abelson und Gerald Jay Sussman, mit Julie Sussman. Eine deutsche Übersetzung „Struktur und Interpretation von Computerprogrammen“ hat Susanne Daniels-Herold verfasst. Vom englischen Original finden Sie eine @uref{https://mitpress.mit.edu/sites/default/files/sicp/index.html, kostenlose Ausgabe online} zusammen mit @uref{https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/, Videos der von den Autoren gehaltenen Vorlesungen}. Das Buch können Sie im Texinfo-Format über das @code{sicp}-Guix-Paket beziehen. Probieren Sie es aus: Führen Sie @code{guix install sicp} aus und fangen Sie mit dem Lesen an, indem Sie @code{info sicp} eintippen (siehe @ref{,,, sicp, Structure and Interpretation of Computer Programs}). Es gibt auch ein @uref{https://sarabander.github.io/sicp/, inoffizielles E-Book}."
  476. #. type: Plain text
  477. #: guix-git/doc/guix-cookbook.texi:302
  478. msgid "You'll find more books, tutorials and other resources at @url{https://schemers.org/}."
  479. msgstr "Sie finden noch mehr Bücher, Anleitungen und andere Ressourcen auf @url{https://schemers.org/}."
  480. #. type: cindex
  481. #: guix-git/doc/guix-cookbook.texi:308
  482. #, no-wrap
  483. msgid "packaging"
  484. msgstr "Pakete schreiben"
  485. #. type: Plain text
  486. #: guix-git/doc/guix-cookbook.texi:314
  487. msgid "This chapter is dedicated to teaching you how to add packages to the collection of packages that come with GNU Guix. This involves writing package definitions in Guile Scheme, organizing them in package modules, and building them."
  488. msgstr "In diesem Kapitel bringen wir Ihnen bei, wie Sie Pakete zur mit GNU Guix ausgelieferten Paketsammlung beitragen. Dazu gehört, Paketdefinitionen in Guile Scheme zu schreiben, sie in Paketmodulen zu organisieren und sie zu erstellen."
  489. #. type: menuentry
  490. #: guix-git/doc/guix-cookbook.texi:317
  491. msgid "A tutorial on how to add packages to Guix."
  492. msgstr "Eine Anleitung, wie Sie Pakete zu Guix hinzufügen."
  493. #. type: Plain text
  494. #: guix-git/doc/guix-cookbook.texi:328
  495. msgid "GNU Guix stands out as the @emph{hackable} package manager, mostly because it uses @uref{https://www.gnu.org/software/guile/, GNU Guile}, a powerful high-level programming language, one of the @uref{https://en.wikipedia.org/wiki/Scheme_%28programming_language%29, Scheme} dialects from the @uref{https://en.wikipedia.org/wiki/Lisp_%28programming_language%29, Lisp family}."
  496. msgstr "GNU Guix zeichnet sich in erster Linie deswegen als das @emph{hackbare} Paketverwaltungswerkzeug aus, weil es mit @uref{https://www.gnu.org/software/guile/, GNU Guile} arbeitet, einer mächtigen, hochsprachlichen Programmiersprache, die einen der Dialekte von @uref{https://de.wikipedia.org/wiki/Scheme, Scheme} darstellt. Scheme wiederum gehört zur @uref{https://de.wikipedia.org/wiki/Lisp, Lisp-Familie von Programmiersprachen}."
  497. #. type: Plain text
  498. #: guix-git/doc/guix-cookbook.texi:332
  499. msgid "Package definitions are also written in Scheme, which empowers Guix in some very unique ways, unlike most other package managers that use shell scripts or simple languages."
  500. msgstr "Paketdefinitionen werden ebenso in Scheme geschrieben, wodurch Guix auf sehr einzigartige Weise mächtiger wird als die meisten anderen Paketverwaltungssysteme, die Shell-Skripte oder einfache Sprachen benutzen."
  501. #. type: itemize
  502. #: guix-git/doc/guix-cookbook.texi:337
  503. msgid "Use functions, structures, macros and all of Scheme expressiveness for your package definitions."
  504. msgstr "Sie können sich Funktionen, Strukturen, Makros und all die Ausdrucksstärke von Scheme für Ihre Paketdefinitionen zu Nutze machen."
  505. #. type: itemize
  506. #: guix-git/doc/guix-cookbook.texi:341
  507. msgid "Inheritance makes it easy to customize a package by inheriting from it and modifying only what is needed."
  508. msgstr "Durch Vererbung können Sie ohne viel Aufwand ein Paket anpassen, indem Sie von ihm erben lassen und nur das Nötige abändern."
  509. #. type: itemize
  510. #: guix-git/doc/guix-cookbook.texi:351
  511. msgid "Batch processing: the whole package collection can be parsed, filtered and processed. Building a headless server with all graphical interfaces stripped out? It's possible. Want to rebuild everything from source using specific compiler optimization flags? Pass the @code{#:make-flags \"...\"} argument to the list of packages. It wouldn't be a stretch to think @uref{https://wiki.gentoo.org/wiki/USE_flag, Gentoo USE flags} here, but this goes even further: the changes don't have to be thought out beforehand by the packager, they can be @emph{programmed} by the user!"
  512. msgstr "Stapelverarbeitung („batch mode“) wird möglich; die ganze Paketsammlung kann analysiert, gefiltert und verarbeitet werden. Versuchen Sie, ein Serversystem ohne Bildschirm („headless“) auch tatsächlich von allen Grafikschnittstellen zu befreien? Das ist möglich. Möchten Sie alles von Neuem aus seinem Quellcode erstellen, aber mit eingeschalteten besonderen Compileroptimierungen? Übergeben Sie einfach das passende @code{#:make-flags \"...\"}-Argument an die Paketliste. Es wäre nicht übertrieben, hier an die @uref{https://wiki.gentoo.org/wiki/USE_flag, USE-Optionen von Gentoo} zu denken, aber das hier übertrifft sie: Der Paketautor muss vorher gar nicht darüber nachgedacht haben, der Nutzer kann sie selbst @emph{programmieren}!"
  513. #. type: Plain text
  514. #: guix-git/doc/guix-cookbook.texi:357
  515. msgid "The following tutorial covers all the basics around package creation with Guix. It does not assume much knowledge of the Guix system nor of the Lisp language. The reader is only expected to be familiar with the command line and to have some basic programming knowledge."
  516. msgstr "Die folgende Anleitung erklärt alles Grundlegende über das Schreiben von Paketen mit Guix. Dabei setzen wir kein großes Wissen über das Guix-System oder die Lisp-Sprache voraus. Vom Leser wird nur erwartet, dass er mit der Befehlszeile vertraut ist und über grundlegende Programmierkenntnisse verfügt."
  517. #. type: subsection
  518. #: guix-git/doc/guix-cookbook.texi:358 guix-git/doc/guix-cookbook.texi:359
  519. #, no-wrap
  520. msgid "A ``Hello World'' package"
  521. msgstr "Ein Hallo-Welt-Paket"
  522. #. type: Plain text
  523. #: guix-git/doc/guix-cookbook.texi:364
  524. msgid "The ``Defining Packages'' section of the manual introduces the basics of Guix packaging (@pxref{Defining Packages,,, guix, GNU Guix Reference Manual}). In the following section, we will partly go over those basics again."
  525. msgstr "Der Abschnitt „Pakete definieren“ im Handbuch führt in die Grundlagen des Paketschreibens für Guix ein (siehe @ref{Pakete definieren,,, guix.de, Referenzhandbuch zu GNU Guix}). Im folgenden Abschnitt werden wir diese Grundlagen teilweise rekapitulieren."
  526. #. type: Plain text
  527. #: guix-git/doc/guix-cookbook.texi:370
  528. msgid "GNU@tie{}Hello is a dummy project that serves as an idiomatic example for packaging. It uses the GNU build system (@code{./configure && make && make install}). Guix already provides a package definition which is a perfect example to start with. You can look up its declaration with @code{guix edit hello} from the command line. Let's see how it looks:"
  529. msgstr "GNU@tie{}Hello ist ein Projekt, das uns als Stellvertreter für „richtige“ Projekte und allgemeines Beispiel für das Schreiben von Paketen dient. Es verwendet das GNU-Erstellungssystem (@code{./configure && make && make install}). Guix stellt uns schon eine Paketdefinition zur Verfügung, die uns einen perfekten Ausgangspunkt bietet. Sie können sich ihre Deklaration anschauen, indem Sie @code{guix edit hello} von der Befehlszeile ausführen. Schauen wir sie uns an:"
  530. #. type: lisp
  531. #: guix-git/doc/guix-cookbook.texi:391
  532. #, no-wrap
  533. msgid ""
  534. "(define-public hello\n"
  535. " (package\n"
  536. " (name \"hello\")\n"
  537. " (version \"2.10\")\n"
  538. " (source (origin\n"
  539. " (method url-fetch)\n"
  540. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  541. " \".tar.gz\"))\n"
  542. " (sha256\n"
  543. " (base32\n"
  544. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  545. " (build-system gnu-build-system)\n"
  546. " (synopsis \"Hello, GNU world: An example GNU package\")\n"
  547. " (description\n"
  548. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  549. "serves as an example of standard GNU coding practices. As such, it supports\n"
  550. "command-line arguments, multiple languages, and so on.\")\n"
  551. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  552. " (license gpl3+)))\n"
  553. msgstr ""
  554. "(define-public hello\n"
  555. " (package\n"
  556. " (name \"hello\")\n"
  557. " (version \"2.10\")\n"
  558. " (source (origin\n"
  559. " (method url-fetch)\n"
  560. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  561. " \".tar.gz\"))\n"
  562. " (sha256\n"
  563. " (base32\n"
  564. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  565. " (build-system gnu-build-system)\n"
  566. " (synopsis \"Hello, GNU world: An example GNU package\")\n"
  567. " (description\n"
  568. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  569. "serves as an example of standard GNU coding practices. As such, it supports\n"
  570. "command-line arguments, multiple languages, and so on.\")\n"
  571. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  572. " (license gpl3+)))\n"
  573. #. type: Plain text
  574. #: guix-git/doc/guix-cookbook.texi:395
  575. msgid "As you can see, most of it is rather straightforward. But let's review the fields together:"
  576. msgstr "Wie Sie sehen können, ist das meiste klar strukturiert. Aber sehen wir uns die Felder zusammen an:"
  577. #. type: item
  578. #: guix-git/doc/guix-cookbook.texi:397
  579. #, no-wrap
  580. msgid "name"
  581. msgstr "name"
  582. #. type: table
  583. #: guix-git/doc/guix-cookbook.texi:400
  584. msgid "The project name. Using Scheme conventions, we prefer to keep it lower case, without underscore and using dash-separated words."
  585. msgstr "Der Name des Projekts. Wir halten uns an die Konventionen von Scheme und bevorzugen deshalb Kleinschreibung ohne Unterstriche, sondern mit Bindestrichen zwischen den Wörtern."
  586. #. type: item
  587. #: guix-git/doc/guix-cookbook.texi:401
  588. #, no-wrap
  589. msgid "source"
  590. msgstr "source"
  591. #. type: table
  592. #: guix-git/doc/guix-cookbook.texi:404
  593. msgid "This field contains a description of the source code origin. The @code{origin} record contains these fields:"
  594. msgstr "Dieses Feld enthält eine Beschreibung, was der Ursprung des Quellcodes ist. Das @code{origin}-Verbundsobjekt enthält diese Felder:"
  595. #. type: item
  596. #: guix-git/doc/guix-cookbook.texi:406
  597. #, no-wrap
  598. msgid "The method, here @code{url-fetch} to download via HTTP/FTP, but other methods"
  599. msgstr "Die Methode. Wir verwenden hier @code{url-fetch}, um über HTTP/FTP herunterzuladen,"
  600. #. type: enumerate
  601. #: guix-git/doc/guix-cookbook.texi:408
  602. msgid "exist, such as @code{git-fetch} for Git repositories."
  603. msgstr "aber es gibt auch andere Methoden wie @code{git-fetch} für Git-Repositorys."
  604. #. type: item
  605. #: guix-git/doc/guix-cookbook.texi:408
  606. #, no-wrap
  607. msgid "The URI, which is typically some @code{https://} location for @code{url-fetch}. Here"
  608. msgstr "Die URI, welche bei @code{url-fetch} normalerweise eine Ortsangabe mit @code{https://} ist."
  609. #. type: enumerate
  610. #: guix-git/doc/guix-cookbook.texi:411
  611. msgid "the special `mirror://gnu` refers to a set of well known locations, all of which can be used by Guix to fetch the source, should some of them fail."
  612. msgstr "In diesem Fall verweist die besondere URI ‚mirror://gnu‘ auf eine von mehreren wohlbekannten Ortsangaben, von denen Guix jede durchprobieren kann, um den Quellcode herunterzuladen, wenn es bei manchen davon nicht klappt."
  613. #. type: item
  614. #: guix-git/doc/guix-cookbook.texi:411
  615. #, no-wrap
  616. msgid "The @code{sha256} checksum of the requested file. This is essential to ensure"
  617. msgstr "Die @code{sha256}-Prüfsumme der angefragten Datei."
  618. #. type: enumerate
  619. #: guix-git/doc/guix-cookbook.texi:414
  620. msgid "the source is not corrupted. Note that Guix works with base32 strings, hence the call to the @code{base32} function."
  621. msgstr "Sie ist notwendig, damit sichergestellt werden kann, dass der Quellcode nicht beschädigt ist. Beachten Sie, dass Guix mit Zeichenketten in Base32-Kodierung arbeitet, weshalb wir die @code{base32}-Funktion aufrufen."
  622. #. type: item
  623. #: guix-git/doc/guix-cookbook.texi:416
  624. #, no-wrap
  625. msgid "build-system"
  626. msgstr "build-system"
  627. #. type: table
  628. #: guix-git/doc/guix-cookbook.texi:425
  629. msgid "This is where the power of abstraction provided by the Scheme language really shines: in this case, the @code{gnu-build-system} abstracts away the famous @code{./configure && make && make install} shell invocations. Other build systems include the @code{trivial-build-system} which does not do anything and requires from the packager to program all the build steps, the @code{python-build-system}, the @code{emacs-build-system}, and many more (@pxref{Build Systems,,, guix, GNU Guix Reference Manual})."
  630. msgstr "Hier glänzt Schemes Fähigkeit zur Abstraktion: In diesem Fall abstrahiert @code{gnu-build-system} die berühmten Schritte @code{./configure && make && make install}, die sonst in der Shell aufgerufen würden. Zu den anderen Erstellungssystemen gehören das @code{trivial-build-system}, das nichts tut und dem Paketautoren das Schreiben sämtlicher Erstellungsschritte abverlangt, das @code{python-build-system}, das @code{emacs-build-system}, und viele mehr (siehe @ref{Erstellungssysteme,,, guix.de, Referenzhandbuch zu GNU Guix})."
  631. #. type: item
  632. #: guix-git/doc/guix-cookbook.texi:426
  633. #, no-wrap
  634. msgid "synopsis"
  635. msgstr "synopsis"
  636. #. type: table
  637. #: guix-git/doc/guix-cookbook.texi:429
  638. msgid "It should be a concise summary of what the package does. For many packages a tagline from the project's home page can be used as the synopsis."
  639. msgstr "Die Zusammenfassung. Sie sollte eine knappe Beschreibung sein, was das Paket tut. Für viele Pakete findet sich auf der Homepage ein Einzeiler, der als Zusammenfassung benutzt werden kann."
  640. #. type: item
  641. #: guix-git/doc/guix-cookbook.texi:430
  642. #, no-wrap
  643. msgid "description"
  644. msgstr "description"
  645. #. type: table
  646. #: guix-git/doc/guix-cookbook.texi:433
  647. msgid "Same as for the synopsis, it's fine to re-use the project description from the homepage. Note that Guix uses Texinfo syntax."
  648. msgstr "Genau wie bei der Zusammenfassung ist es in Ordnung, die Beschreibung des Projekts für das Paket wiederzuverwenden. Beachten Sie, dass Guix dafür Texinfo-Syntax verlangt."
  649. #. type: item
  650. #: guix-git/doc/guix-cookbook.texi:434
  651. #, no-wrap
  652. msgid "home-page"
  653. msgstr "home-page"
  654. #. type: table
  655. #: guix-git/doc/guix-cookbook.texi:436
  656. msgid "Use HTTPS if available."
  657. msgstr "Hier soll möglichst HTTPS benutzt werden."
  658. #. type: item
  659. #: guix-git/doc/guix-cookbook.texi:437
  660. #, no-wrap
  661. msgid "license"
  662. msgstr "license"
  663. #. type: table
  664. #: guix-git/doc/guix-cookbook.texi:440
  665. msgid "See @code{guix/licenses.scm} in the project source for a full list of available licenses."
  666. msgstr "Siehe die vollständige Liste verfügbarer Lizenzen in @code{guix/licenses.scm} im Guix-Quellcode."
  667. #. type: Plain text
  668. #: guix-git/doc/guix-cookbook.texi:444
  669. msgid "Time to build our first package! Nothing fancy here for now: we will stick to a dummy @code{my-hello}, a copy of the above declaration."
  670. msgstr "Es wird Zeit, unser erstes Paket zu schreiben! Aber noch nichts tolles, wir bleiben bei einem Paket @code{my-hello} stelltvertretend für „richtige“ Software; es ist eine Kopie obiger Deklaration."
  671. #. type: Plain text
  672. #: guix-git/doc/guix-cookbook.texi:448
  673. msgid "As with the ritualistic ``Hello World'' taught with most programming languages, this will possibly be the most ``manual'' approach. We will work out an ideal setup later; for now we will go the simplest route."
  674. msgstr "Genau wie beim Ritual, Neulinge in Programmiersprachen „Hallo Welt“ schreiben zu lassen, fangen wir mit der vielleicht „arbeitsintensivsten“ Herangehensweise ans Paketeschreiben an. Wir kümmern uns später darum, wie man am besten an Paketen arbeitet; erst einmal nehmen wir den einfachsten Weg."
  675. #. type: Plain text
  676. #: guix-git/doc/guix-cookbook.texi:450
  677. msgid "Save the following to a file @file{my-hello.scm}."
  678. msgstr "Speichern Sie den folgenden Code in eine Datei @file{my-hello.scm}."
  679. #. type: lisp
  680. #: guix-git/doc/guix-cookbook.texi:456
  681. #, no-wrap
  682. msgid ""
  683. "(use-modules (guix packages)\n"
  684. " (guix download)\n"
  685. " (guix build-system gnu)\n"
  686. " (guix licenses))\n"
  687. "\n"
  688. msgstr ""
  689. "(use-modules (guix packages)\n"
  690. " (guix download)\n"
  691. " (guix build-system gnu)\n"
  692. " (guix licenses))\n"
  693. "\n"
  694. #. type: lisp
  695. #: guix-git/doc/guix-cookbook.texi:475
  696. #, no-wrap
  697. msgid ""
  698. "(package\n"
  699. " (name \"my-hello\")\n"
  700. " (version \"2.10\")\n"
  701. " (source (origin\n"
  702. " (method url-fetch)\n"
  703. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  704. " \".tar.gz\"))\n"
  705. " (sha256\n"
  706. " (base32\n"
  707. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  708. " (build-system gnu-build-system)\n"
  709. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  710. " (description\n"
  711. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  712. "serves as an example of standard GNU coding practices. As such, it supports\n"
  713. "command-line arguments, multiple languages, and so on.\")\n"
  714. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  715. " (license gpl3+))\n"
  716. msgstr ""
  717. "(package\n"
  718. " (name \"my-hello\")\n"
  719. " (version \"2.10\")\n"
  720. " (source (origin\n"
  721. " (method url-fetch)\n"
  722. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  723. " \".tar.gz\"))\n"
  724. " (sha256\n"
  725. " (base32\n"
  726. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  727. " (build-system gnu-build-system)\n"
  728. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  729. " (description\n"
  730. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  731. "serves as an example of standard GNU coding practices. As such, it supports\n"
  732. "command-line arguments, multiple languages, and so on.\")\n"
  733. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  734. " (license gpl3+))\n"
  735. #. type: Plain text
  736. #: guix-git/doc/guix-cookbook.texi:478
  737. msgid "We will explain the extra code in a moment."
  738. msgstr "Wir erklären den zusätzlichen Code in Kürze."
  739. #. type: Plain text
  740. #: guix-git/doc/guix-cookbook.texi:485
  741. msgid "Feel free to play with the different values of the various fields. If you change the source, you'll need to update the checksum. Indeed, Guix refuses to build anything if the given checksum does not match the computed checksum of the source code. To obtain the correct checksum of the package declaration, we need to download the source, compute the sha256 checksum and convert it to base32."
  742. msgstr "Spielen Sie ruhig mit unterschiedlichen Werten für die verschiedenen Felder herum. Wenn Sie den Quellort (die „source“) ändern, müssen Sie die Prüfsumme aktualisieren. Tatsächlich weigert sich Guix, etwas zu erstellen, wenn die angegebene Prüfsumme nicht zu der berechneten Prüfsumme des Quellcodes passt. Um die richtige Prüfsumme für die Paketdeklaration zu finden, müssen wir den Quellcode herunterladen, die SHA256-Summe davon berechnen und sie in Base32 umwandeln."
  743. #. type: Plain text
  744. #: guix-git/doc/guix-cookbook.texi:488
  745. msgid "Thankfully, Guix can automate this task for us; all we need is to provide the URI:"
  746. msgstr "Glücklicherweise kann Guix diese Aufgabe automatisieren; wir müssen lediglich die URI übergeben."
  747. #. type: example
  748. #: guix-git/doc/guix-cookbook.texi:492
  749. #, no-wrap
  750. msgid ""
  751. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz\n"
  752. "\n"
  753. msgstr ""
  754. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz\n"
  755. "\n"
  756. #. type: example
  757. #: guix-git/doc/guix-cookbook.texi:499
  758. #, no-wrap
  759. msgid ""
  760. "Starting download of /tmp/guix-file.JLYgL7\n"
  761. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz...\n"
  762. "following redirection to `https://mirror.ibcp.fr/pub/gnu/hello/hello-2.10.tar.gz'...\n"
  763. " …10.tar.gz 709KiB 2.5MiB/s 00:00 [##################] 100.0%\n"
  764. "/gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  765. "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\n"
  766. msgstr ""
  767. "Starting download of /tmp/guix-file.JLYgL7\n"
  768. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz...\n"
  769. "following redirection to `https://mirror.ibcp.fr/pub/gnu/hello/hello-2.10.tar.gz'...\n"
  770. " …10.tar.gz 709KiB 2.5MiB/s 00:00 [##################] 100.0%\n"
  771. "/gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  772. "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\n"
  773. #. type: Plain text
  774. #: guix-git/doc/guix-cookbook.texi:504
  775. msgid "In this specific case the output tells us which mirror was chosen. If the result of the above command is not the same as in the above snippet, update your @code{my-hello} declaration accordingly."
  776. msgstr "In diesem speziellen Fall sagt uns die Ausgabe, welcher Spiegelserver ausgewählt wurde. Wenn das Ergebnis des obigen Befehls nicht dasselbe ist wie im Codeschnipsel, dann aktualisieren Sie Ihre @code{my-hello}-Deklaration entsprechend."
  777. #. type: Plain text
  778. #: guix-git/doc/guix-cookbook.texi:508
  779. msgid "Note that GNU package tarballs come with an OpenPGP signature, so you should definitely check the signature of this tarball with `gpg` to authenticate it before going further:"
  780. msgstr "Beachten Sie, dass Tarball-Archive von GNU-Paketen mit einer OpenPGP-Signatur ausgeliefert werden, deshalb sollten Sie mit Sicherheit die Signatur dieses Tarballs mit „gpg“ überprüfen, um ihn zu authentifizieren, bevor Sie weitermachen."
  781. #. type: example
  782. #: guix-git/doc/guix-cookbook.texi:512
  783. #, no-wrap
  784. msgid ""
  785. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz.sig\n"
  786. "\n"
  787. msgstr ""
  788. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz.sig\n"
  789. "\n"
  790. #. type: example
  791. #: guix-git/doc/guix-cookbook.texi:527
  792. #, no-wrap
  793. msgid ""
  794. "Starting download of /tmp/guix-file.03tFfb\n"
  795. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz.sig...\n"
  796. "following redirection to `https://ftp.igh.cnrs.fr/pub/gnu/hello/hello-2.10.tar.gz.sig'...\n"
  797. " ….tar.gz.sig 819B 1.2MiB/s 00:00 [##################] 100.0%\n"
  798. "/gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig\n"
  799. "0q0v86n3y38z17rl146gdakw9xc4mcscpk8dscs412j22glrv9jf\n"
  800. "$ gpg --verify /gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig /gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  801. "gpg: Signature made Sun 16 Nov 2014 01:08:37 PM CET\n"
  802. "gpg: using RSA key A9553245FDE9B739\n"
  803. "gpg: Good signature from \"Sami Kerola <kerolasa@@iki.fi>\" [unknown]\n"
  804. "gpg: aka \"Sami Kerola (http://www.iki.fi/kerolasa/) <kerolasa@@iki.fi>\" [unknown]\n"
  805. "gpg: WARNING: This key is not certified with a trusted signature!\n"
  806. "gpg: There is no indication that the signature belongs to the owner.\n"
  807. "Primary key fingerprint: 8ED3 96E3 7E38 D471 A005 30D3 A955 3245 FDE9 B739\n"
  808. msgstr ""
  809. "Starting download of /tmp/guix-file.03tFfb\n"
  810. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz.sig...\n"
  811. "following redirection to `https://ftp.igh.cnrs.fr/pub/gnu/hello/hello-2.10.tar.gz.sig'...\n"
  812. " ….tar.gz.sig 819B 1.2MiB/s 00:00 [##################] 100.0%\n"
  813. "/gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig\n"
  814. "0q0v86n3y38z17rl146gdakw9xc4mcscpk8dscs412j22glrv9jf\n"
  815. "$ gpg --verify /gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig /gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  816. "gpg: Signatur vom So 16 Nov 2014 13:08:37 CET\n"
  817. "gpg: mittels RSA-Schlüssel A9553245FDE9B739\n"
  818. "gpg: Korrekte Signatur von \"Sami Kerola (https://www.iki.fi/kerolasa/) <kerolasa@@iki.fi>\" [unbekannt]\n"
  819. "gpg: WARNUNG: Dieser Schlüssel trägt keine vertrauenswürdige Signatur!\n"
  820. "gpg: Es gibt keinen Hinweis, daß die Signatur wirklich dem vorgeblichen Besitzer gehört.\n"
  821. "Haupt-Fingerabdruck = 8ED3 96E3 7E38 D471 A005 30D3 A955 3245 FDE9 B739\n"
  822. #. type: Plain text
  823. #: guix-git/doc/guix-cookbook.texi:530
  824. msgid "You can then happily run"
  825. msgstr "Sie können dann unbesorgt das hier ausführen:"
  826. #. type: example
  827. #: guix-git/doc/guix-cookbook.texi:534
  828. #, no-wrap
  829. msgid "$ guix package --install-from-file=my-hello.scm\n"
  830. msgstr "$ guix package --install-from-file=my-hello.scm\n"
  831. #. type: Plain text
  832. #: guix-git/doc/guix-cookbook.texi:537
  833. msgid "You should now have @code{my-hello} in your profile!"
  834. msgstr "Nun sollte @code{my-hello} in Ihrem Profil enthalten sein!"
  835. #. type: example
  836. #: guix-git/doc/guix-cookbook.texi:543
  837. #, no-wrap
  838. msgid ""
  839. "$ guix package --list-installed=my-hello\n"
  840. "my-hello\t2.10\tout\n"
  841. "/gnu/store/f1db2mfm8syb8qvc357c53slbvf1g9m9-my-hello-2.10\n"
  842. msgstr ""
  843. "$ guix package --list-installed=my-hello\n"
  844. "my-hello\t2.10\tout\n"
  845. "/gnu/store/f1db2mfm8syb8qvc357c53slbvf1g9m9-my-hello-2.10\n"
  846. #. type: Plain text
  847. #: guix-git/doc/guix-cookbook.texi:548
  848. msgid "We've gone as far as we could without any knowledge of Scheme. Before moving on to more complex packages, now is the right time to brush up on your Scheme knowledge. @pxref{A Scheme Crash Course} to get up to speed."
  849. msgstr "Wir sind so weit gekommen, wie es ohne Scheme-Kenntnisse möglich ist. Bevor wir mit komplexeren Paketen weitermachen, ist jetzt der Zeitpunkt gekommen, Ihr Wissen über Scheme zu entstauben. Siehe @ref{Ein Schnellkurs in Scheme} für eine Auffrischung."
  850. #. type: subsection
  851. #: guix-git/doc/guix-cookbook.texi:549 guix-git/doc/guix-cookbook.texi:550
  852. #, no-wrap
  853. msgid "Setup"
  854. msgstr "Herangehensweisen"
  855. #. type: Plain text
  856. #: guix-git/doc/guix-cookbook.texi:555
  857. msgid "In the rest of this chapter we will rely on some basic Scheme programming knowledge. Now let's detail the different possible setups for working on Guix packages."
  858. msgstr "Im Rest dieses Kapitels setzen wir ein paar grundlegende Scheme-Programmierkenntnisse voraus. Wir wollen uns nun verschiedene mögliche Herangehensweisen anschauen, wie man an Guix-Paketen arbeiten kann."
  859. #. type: Plain text
  860. #: guix-git/doc/guix-cookbook.texi:557
  861. msgid "There are several ways to set up a Guix packaging environment."
  862. msgstr "Es gibt mehrere Arten, eine Umgebung zum Paketeschreiben aufzusetzen."
  863. #. type: Plain text
  864. #: guix-git/doc/guix-cookbook.texi:560
  865. msgid "We recommend you work directly on the Guix source checkout since it makes it easier for everyone to contribute to the project."
  866. msgstr "Unsere Empfehlung ist, dass Sie direkt am Checkout des Guix-Quellcodes arbeiten, weil es dann für alle einfacher ist, zu Guix beizutragen."
  867. #. type: Plain text
  868. #: guix-git/doc/guix-cookbook.texi:562
  869. msgid "But first, let's look at other possibilities."
  870. msgstr "Werfen wir aber zunächst einen Blick auf andere Möglichkeiten."
  871. #. type: subsubsection
  872. #: guix-git/doc/guix-cookbook.texi:563 guix-git/doc/guix-cookbook.texi:564
  873. #, no-wrap
  874. msgid "Local file"
  875. msgstr "Lokale Datei"
  876. #. type: Plain text
  877. #: guix-git/doc/guix-cookbook.texi:569
  878. msgid "This is what we previously did with @samp{my-hello}. With the Scheme basics we've covered, we are now able to explain the leading chunks. As stated in @code{guix package --help}:"
  879. msgstr "Diese Methode haben wir zuletzt für @samp{my-hello} benutzt. Jetzt nachdem wir uns mit den Scheme-Grundlagen befasst haben, können wir uns den Code am Anfang erklären. @code{guix package --help} sagt uns:"
  880. #. type: example
  881. #: guix-git/doc/guix-cookbook.texi:574
  882. #, no-wrap
  883. msgid ""
  884. " -f, --install-from-file=FILE\n"
  885. " install the package that the code within FILE\n"
  886. " evaluates to\n"
  887. msgstr ""
  888. " -f, --install-from-file=DATEI\n"
  889. " das Paket installieren, zu dem der Code in der DATEI\n"
  890. " ausgewertet wird\n"
  891. #. type: Plain text
  892. #: guix-git/doc/guix-cookbook.texi:578
  893. msgid "Thus the last expression @emph{must} return a package, which is the case in our earlier example."
  894. msgstr "Daher @emph{muss} der letzte Ausdruck ein Paket liefern, was im vorherigen Beispiel der Fall ist."
  895. #. type: Plain text
  896. #: guix-git/doc/guix-cookbook.texi:582
  897. msgid "The @code{use-modules} expression tells which of the modules we need in the file. Modules are a collection of values and procedures. They are commonly called ``libraries'' or ``packages'' in other programming languages."
  898. msgstr "Der Ausdruck @code{use-modules} sagt aus, welche Module in der Datei gebraucht werden. Module sind eine Sammlung aus Werten und Prozeduren. In anderen Programmiersprachen werden sie oft „Bibliotheken“ oder „Pakete“ genannt."
  899. #. type: node
  900. #: guix-git/doc/guix-cookbook.texi:583
  901. #, no-wrap
  902. msgid "@samp{GUIX_PACKAGE_PATH}"
  903. msgstr "@samp{GUIX_PACKAGE_PATH}"
  904. #. type: samp{#1}
  905. #: guix-git/doc/guix-cookbook.texi:584
  906. #, no-wrap
  907. msgid "GUIX_PACKAGE_PATH"
  908. msgstr "GUIX_PACKAGE_PATH"
  909. #. type: emph{#1}
  910. #: guix-git/doc/guix-cookbook.texi:588
  911. msgid "Note: Starting from Guix 0.16, the more flexible Guix @dfn{channels} are the preferred way and supersede @samp{GUIX_PACKAGE_PATH}. See next section."
  912. msgstr "Anmerkung: Seit Guix 0.16 sind die vielseitigeren @dfn{Kanäle} von Guix die bevorzugte Wahl und sie lösen den @samp{GUIX_PACKAGE_PATH} ab. Siehe den nächsten Abschnitt."
  913. #. type: Plain text
  914. #: guix-git/doc/guix-cookbook.texi:592
  915. msgid "It can be tedious to specify the file from the command line instead of simply calling @code{guix package --install my-hello} as you would do with the official packages."
  916. msgstr "Es kann mühsam sein, die Datei auf der Befehlszeile anzugeben, statt einfach @code{guix package --install my-hello} aufzurufen, wie man es bei den offiziellen Paketen tun würde."
  917. #. type: Plain text
  918. #: guix-git/doc/guix-cookbook.texi:595
  919. msgid "Guix makes it possible to streamline the process by adding as many ``package declaration directories'' as you want."
  920. msgstr "Guix ermöglicht es, den Prozess zu optimieren, indem man so viele „Paketdeklarationsverzeichnisse“, wie man will, hinzufügt."
  921. #. type: Plain text
  922. #: guix-git/doc/guix-cookbook.texi:598
  923. msgid "Create a directory, say @file{~/guix-packages} and add it to the @samp{GUIX_PACKAGE_PATH} environment variable:"
  924. msgstr "Erzeugen Sie ein Verzeichnis, beispielsweise @file{~/guix-packages}, und fügen Sie es zur Umgebungsvariablen @env{GUIX_PACKAGE_PATH} hinzu:"
  925. #. type: example
  926. #: guix-git/doc/guix-cookbook.texi:602
  927. #, no-wrap
  928. msgid ""
  929. "$ mkdir ~/guix-packages\n"
  930. "$ export GUIX_PACKAGE_PATH=~/guix-packages\n"
  931. msgstr ""
  932. "$ mkdir ~/guix-packages\n"
  933. "$ export GUIX_PACKAGE_PATH=~/guix-packages\n"
  934. #. type: Plain text
  935. #: guix-git/doc/guix-cookbook.texi:605
  936. msgid "To add several directories, separate them with a colon (@code{:})."
  937. msgstr "Um mehrere Verzeichnisse hinzuzufügen, trennen Sie diese ab durch einen Doppelpunkt (@code{:})."
  938. #. type: Plain text
  939. #: guix-git/doc/guix-cookbook.texi:607
  940. msgid "Our previous @samp{my-hello} needs some adjustments though:"
  941. msgstr "Unser @samp{my-hello} von vorher braucht zudem ein paar Anpassungen:"
  942. #. type: lisp
  943. #: guix-git/doc/guix-cookbook.texi:614
  944. #, no-wrap
  945. msgid ""
  946. "(define-module (my-hello)\n"
  947. " #:use-module (guix licenses)\n"
  948. " #:use-module (guix packages)\n"
  949. " #:use-module (guix build-system gnu)\n"
  950. " #:use-module (guix download))\n"
  951. "\n"
  952. msgstr ""
  953. "(define-module (my-hello)\n"
  954. " #:use-module (guix licenses)\n"
  955. " #:use-module (guix packages)\n"
  956. " #:use-module (guix build-system gnu)\n"
  957. " #:use-module (guix download))\n"
  958. "\n"
  959. #. type: lisp
  960. #: guix-git/doc/guix-cookbook.texi:634
  961. #, no-wrap
  962. msgid ""
  963. "(define-public my-hello\n"
  964. " (package\n"
  965. " (name \"my-hello\")\n"
  966. " (version \"2.10\")\n"
  967. " (source (origin\n"
  968. " (method url-fetch)\n"
  969. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  970. " \".tar.gz\"))\n"
  971. " (sha256\n"
  972. " (base32\n"
  973. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  974. " (build-system gnu-build-system)\n"
  975. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  976. " (description\n"
  977. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  978. "serves as an example of standard GNU coding practices. As such, it supports\n"
  979. "command-line arguments, multiple languages, and so on.\")\n"
  980. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  981. " (license gpl3+)))\n"
  982. msgstr ""
  983. "(define-public my-hello\n"
  984. " (package\n"
  985. " (name \"my-hello\")\n"
  986. " (version \"2.10\")\n"
  987. " (source (origin\n"
  988. " (method url-fetch)\n"
  989. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  990. " \".tar.gz\"))\n"
  991. " (sha256\n"
  992. " (base32\n"
  993. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  994. " (build-system gnu-build-system)\n"
  995. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  996. " (description\n"
  997. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  998. "serves as an example of standard GNU coding practices. As such, it supports\n"
  999. "command-line arguments, multiple languages, and so on.\")\n"
  1000. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  1001. " (license gpl3+)))\n"
  1002. #. type: Plain text
  1003. #: guix-git/doc/guix-cookbook.texi:640
  1004. msgid "Note that we have assigned the package value to an exported variable name with @code{define-public}. This is effectively assigning the package to the @code{my-hello} variable so that it can be referenced, among other as dependency of other packages."
  1005. msgstr "Beachten Sie, dass wir den Paketwert einer exportierten Variablen mit @code{define-public} zugewiesen haben. Das bedeutet, das Paket wird einer Variablen @code{my-hello} zugewiesen, damit darauf verwiesen werden kann. Unter anderem kann es dadurch als Abhängigkeit anderer Pakete verwendet werden."
  1006. #. type: Plain text
  1007. #: guix-git/doc/guix-cookbook.texi:645
  1008. msgid "If you use @code{guix package --install-from-file=my-hello.scm} on the above file, it will fail because the last expression, @code{define-public}, does not return a package. If you want to use @code{define-public} in this use-case nonetheless, make sure the file ends with an evaluation of @code{my-hello}:"
  1009. msgstr "Wenn Sie @code{guix package --install-from-file=my-hello.scm} auf der obigen Datei aufrufen, geht es schief, weil der letzte Ausdruck, @code{define-public}, kein Paket zurückliefert. Wenn Sie trotzdem @code{define-public} für jene Herangehensweise verwenden möchten, stellen Sie sicher, dass am Ende der Datei eine Auswertung von @code{my-hello} steht:"
  1010. #. type: lisp
  1011. #: guix-git/doc/guix-cookbook.texi:651
  1012. #, no-wrap
  1013. msgid ""
  1014. "; ...\n"
  1015. "(define-public my-hello\n"
  1016. " ; ...\n"
  1017. " )\n"
  1018. "\n"
  1019. msgstr ""
  1020. "; …\n"
  1021. "(define-public my-hello\n"
  1022. " ; …\n"
  1023. " )\n"
  1024. "\n"
  1025. #. type: lisp
  1026. #: guix-git/doc/guix-cookbook.texi:653
  1027. #, no-wrap
  1028. msgid "my-hello\n"
  1029. msgstr "my-hello\n"
  1030. #. type: Plain text
  1031. #: guix-git/doc/guix-cookbook.texi:656
  1032. msgid "This last example is not very typical."
  1033. msgstr "Meistens tut man das aber nicht."
  1034. #. type: Plain text
  1035. #: guix-git/doc/guix-cookbook.texi:659
  1036. msgid "Now @samp{my-hello} should be part of the package collection like all other official packages. You can verify this with:"
  1037. msgstr "@samp{my-hello} sollte nun Teil der Paketsammlung sein, genau wie all die anderen, offiziellen Pakete. Sie können das so ausprobieren:"
  1038. #. type: example
  1039. #: guix-git/doc/guix-cookbook.texi:662
  1040. #, no-wrap
  1041. msgid "$ guix package --show=my-hello\n"
  1042. msgstr "$ guix package --show=my-hello\n"
  1043. #. type: subsubsection
  1044. #: guix-git/doc/guix-cookbook.texi:664 guix-git/doc/guix-cookbook.texi:665
  1045. #, no-wrap
  1046. msgid "Guix channels"
  1047. msgstr "Guix-Kanäle"
  1048. #. type: Plain text
  1049. #: guix-git/doc/guix-cookbook.texi:671
  1050. msgid "Guix 0.16 features channels, which is very similar to @samp{GUIX_PACKAGE_PATH} but provides better integration and provenance tracking. Channels are not necessarily local, they can be maintained as a public Git repository for instance. Of course, several channels can be used at the same time."
  1051. msgstr "Guix 0.16 hat Kanäle eingeführt, die sehr ähnlich zu @samp{GUIX_PACKAGE_PATH} sind, sich aber besser integrieren und Provenienzverfolgung ermöglichen. Kanäle befinden sich nicht unbedingt auf einem lokalen Rechner, sie können zum Beispiel auch anderen als öffentliches Git-Repository angeboten werden. Natürlich können zur selben Zeit mehrere Kanäle benutzt werden."
  1052. #. type: Plain text
  1053. #: guix-git/doc/guix-cookbook.texi:673
  1054. msgid "@xref{Channels,,, guix, GNU Guix Reference Manual} for setup details."
  1055. msgstr "Siehe @ref{Kanäle,,, guix.de, Referenzhandbuch zu GNU Guix} für Details zu deren Einrichtung."
  1056. #. type: subsubsection
  1057. #: guix-git/doc/guix-cookbook.texi:674 guix-git/doc/guix-cookbook.texi:675
  1058. #, no-wrap
  1059. msgid "Direct checkout hacking"
  1060. msgstr "Direkt am Checkout hacken"
  1061. #. type: Plain text
  1062. #: guix-git/doc/guix-cookbook.texi:680
  1063. msgid "Working directly on the Guix project is recommended: it reduces the friction when the time comes to submit your changes upstream to let the community benefit from your hard work!"
  1064. msgstr "Es wird empfohlen, direkt am Code des Guix-Projekts zu arbeiten, weil Ihre Änderungen dann später mit weniger Schwierigkeiten bei uns eingereicht werden können, damit Ihre harte Arbeit der Gemeinschaft nützt!"
  1065. #. type: Plain text
  1066. #: guix-git/doc/guix-cookbook.texi:686
  1067. msgid "Unlike most software distributions, the Guix repository holds in one place both the tooling (including the package manager) and the package definitions. This choice was made so that it would give developers the flexibility to modify the API without breakage by updating all packages at the same time. This reduces development inertia."
  1068. msgstr "Anders als die meisten Software-Distributionen werden bei Guix sowohl Werkzeuge (einschließlich des Paketverwaltungsprogramms) als auch die Paketdefinitionen in einem Repository gespeichert. Der Grund für diese Entscheidung war, dass Entwickler die Freiheit haben sollten, die Programmierschnittstelle (API) zu ändern, ohne Inkompatibilitäten einzuführen, indem alle Pakete gleichzeitig mit der API aktualisiert werden. Dadurch wird die Entwicklung weniger träge."
  1069. #. type: Plain text
  1070. #: guix-git/doc/guix-cookbook.texi:688
  1071. msgid "Check out the official @uref{https://git-scm.com/, Git} repository:"
  1072. msgstr "Legen Sie ein Checkout des offiziellen @uref{https://git-scm.com/, Git-Repositorys} an:"
  1073. #. type: example
  1074. #: guix-git/doc/guix-cookbook.texi:691
  1075. #, no-wrap
  1076. msgid "$ git clone https://git.savannah.gnu.org/git/guix.git\n"
  1077. msgstr "$ git clone https://git.savannah.gnu.org/git/guix.git\n"
  1078. #. type: Plain text
  1079. #: guix-git/doc/guix-cookbook.texi:695
  1080. msgid "In the rest of this article, we use @samp{$GUIX_CHECKOUT} to refer to the location of the checkout."
  1081. msgstr "Im Rest dieses Artikels schreiben wir @samp{$GUIX_CHECKOUT}, wenn wir den Ort meinen, an dem das Checkout gespeichert ist."
  1082. #. type: Plain text
  1083. #: guix-git/doc/guix-cookbook.texi:699
  1084. msgid "Follow the instructions in the manual (@pxref{Contributing,,, guix, GNU Guix Reference Manual}) to set up the repository environment."
  1085. msgstr "Folgen Sie den Anweisungen im Handbuch (siehe (@ref{Mitwirken,,, guix.de, Referenzhandbuch zu GNU Guix}), um die nötige Umgebung für die Nutzung des Repositorys herzustellen."
  1086. #. type: Plain text
  1087. #: guix-git/doc/guix-cookbook.texi:702
  1088. msgid "Once ready, you should be able to use the package definitions from the repository environment."
  1089. msgstr "Sobald sie hergestellt wurde, sollten Sie die Paketdefinitionen aus der Repository-Umgebung benutzen können."
  1090. #. type: Plain text
  1091. #: guix-git/doc/guix-cookbook.texi:704
  1092. msgid "Feel free to edit package definitions found in @samp{$GUIX_CHECKOUT/gnu/packages}."
  1093. msgstr "Versuchen Sie sich ruhig daran, die Paketdefinitionen zu editieren, die Sie in @samp{$GUIX_CHECKOUT/gnu/packages} finden."
  1094. #. type: Plain text
  1095. #: guix-git/doc/guix-cookbook.texi:708
  1096. msgid "The @samp{$GUIX_CHECKOUT/pre-inst-env} script lets you use @samp{guix} over the package collection of the repository (@pxref{Running Guix Before It Is Installed,,, guix, GNU Guix Reference Manual})."
  1097. msgstr "Das Skript @samp{$GUIX_CHECKOUT/pre-inst-env} ermöglicht es Ihnen, @samp{guix} auf der Paketsammlung des Repositorys aufzurufen (siehe @ref{Guix vor der Installation ausführen,,, guix.de, Referenzhandbuch zu GNU Guix})."
  1098. #. type: itemize
  1099. #: guix-git/doc/guix-cookbook.texi:712
  1100. msgid "Search packages, such as Ruby:"
  1101. msgstr "So suchen Sie Pakete, z.B.@: Ruby:"
  1102. #. type: example
  1103. #: guix-git/doc/guix-cookbook.texi:719
  1104. #, no-wrap
  1105. msgid ""
  1106. " $ cd $GUIX_CHECKOUT\n"
  1107. " $ ./pre-inst-env guix package --list-available=ruby\n"
  1108. " ruby 1.8.7-p374 out gnu/packages/ruby.scm:119:2\n"
  1109. " ruby 2.1.6 out gnu/packages/ruby.scm:91:2\n"
  1110. " ruby 2.2.2 out gnu/packages/ruby.scm:39:2\n"
  1111. msgstr ""
  1112. " $ cd $GUIX_CHECKOUT\n"
  1113. " $ ./pre-inst-env guix package --list-available=ruby\n"
  1114. " ruby 1.8.7-p374 out gnu/packages/ruby.scm:119:2\n"
  1115. " ruby 2.1.6 out gnu/packages/ruby.scm:91:2\n"
  1116. " ruby 2.2.2 out gnu/packages/ruby.scm:39:2\n"
  1117. #. type: itemize
  1118. #: guix-git/doc/guix-cookbook.texi:723
  1119. msgid "Build a package, here Ruby version 2.1:"
  1120. msgstr "Erstellen Sie ein Paket, z.B.@: Ruby in Version 2.1:"
  1121. #. type: example
  1122. #: guix-git/doc/guix-cookbook.texi:727
  1123. #, no-wrap
  1124. msgid ""
  1125. " $ ./pre-inst-env guix build --keep-failed ruby@@2.1\n"
  1126. " /gnu/store/c13v73jxmj2nir2xjqaz5259zywsa9zi-ruby-2.1.6\n"
  1127. msgstr ""
  1128. " $ ./pre-inst-env guix build --keep-failed ruby@@2.1\n"
  1129. " /gnu/store/c13v73jxmj2nir2xjqaz5259zywsa9zi-ruby-2.1.6\n"
  1130. #. type: itemize
  1131. #: guix-git/doc/guix-cookbook.texi:731
  1132. msgid "Install it to your user profile:"
  1133. msgstr "Installieren Sie es in Ihr Profil:"
  1134. #. type: example
  1135. #: guix-git/doc/guix-cookbook.texi:734
  1136. #, no-wrap
  1137. msgid " $ ./pre-inst-env guix package --install ruby@@2.1\n"
  1138. msgstr " $ ./pre-inst-env guix package --install ruby@@2.1\n"
  1139. #. type: itemize
  1140. #: guix-git/doc/guix-cookbook.texi:738
  1141. msgid "Check for common mistakes:"
  1142. msgstr "Prüfen Sie auf häufige Fehler:"
  1143. #. type: example
  1144. #: guix-git/doc/guix-cookbook.texi:741
  1145. #, no-wrap
  1146. msgid " $ ./pre-inst-env guix lint ruby@@2.1\n"
  1147. msgstr " $ ./pre-inst-env guix lint ruby@@2.1\n"
  1148. #. type: Plain text
  1149. #: guix-git/doc/guix-cookbook.texi:746
  1150. msgid "Guix strives at maintaining a high packaging standard; when contributing to the Guix project, remember to"
  1151. msgstr "Guix ist bestrebt, einen hohen Standard an seine Pakete anzusetzen. Wenn Sie Beiträge zum Guix-Projekt leisten,"
  1152. #. type: itemize
  1153. #: guix-git/doc/guix-cookbook.texi:750
  1154. msgid "follow the coding style (@pxref{Coding Style,,, guix, GNU Guix Reference Manual}),"
  1155. msgstr "schreiben Sie Ihren Code im Stil von Guix (siehe @ref{Programmierstil,,, guix.de, Referenzhandbuch zu GNU Guix})"
  1156. #. type: itemize
  1157. #: guix-git/doc/guix-cookbook.texi:752
  1158. msgid "and review the check list from the manual (@pxref{Submitting Patches,,, guix, GNU Guix Reference Manual})."
  1159. msgstr "und schauen Sie sich die Kontrollliste aus dem Handbuch (siehe @ref{Einreichen von Patches,,, guix.de, Referenzhandbuch zu GNU Guix}) noch einmal an."
  1160. #. type: Plain text
  1161. #: guix-git/doc/guix-cookbook.texi:756
  1162. msgid "Once you are happy with the result, you are welcome to send your contribution to make it part of Guix. This process is also detailed in the manual. (@pxref{Contributing,,, guix, GNU Guix Reference Manual})"
  1163. msgstr "Sobald Sie mit dem Ergebnis zufrieden sind, freuen wir uns, wenn Sie Ihren Beitrag an uns schicken, damit wir ihn in Guix aufnehmen. Dieser Prozess wird auch im Handbuch beschrieben (siehe @ref{Mitwirken,,, guix.de, Referenzhandbuch zu GNU Guix})<."
  1164. #. type: Plain text
  1165. #: guix-git/doc/guix-cookbook.texi:759
  1166. msgid "It's a community effort so the more join in, the better Guix becomes!"
  1167. msgstr "Es handelt sich um eine gemeinschaftliche Arbeit, je mehr also mitmachen, desto besser wird Guix!"
  1168. #. type: subsection
  1169. #: guix-git/doc/guix-cookbook.texi:760 guix-git/doc/guix-cookbook.texi:761
  1170. #, no-wrap
  1171. msgid "Extended example"
  1172. msgstr "Erweitertes Beispiel"
  1173. #. type: Plain text
  1174. #: guix-git/doc/guix-cookbook.texi:766
  1175. msgid "The above ``Hello World'' example is as simple as it goes. Packages can be more complex than that and Guix can handle more advanced scenarios. Let's look at another, more sophisticated package (slightly modified from the source):"
  1176. msgstr "Einfacher als obiges Hallo-Welt-Beispiel wird es nicht. Pakete können auch komplexer als das sein und Guix eignet sich für fortgeschrittenere Szenarien. Schauen wir uns ein anderes, umfangreicheres Paket an (leicht modifiziert gegenüber Guix’ Quellcode):"
  1177. #. type: lisp
  1178. #: guix-git/doc/guix-cookbook.texi:780
  1179. #, no-wrap
  1180. msgid ""
  1181. "(define-module (gnu packages version-control)\n"
  1182. " #:use-module ((guix licenses) #:prefix license:)\n"
  1183. " #:use-module (guix utils)\n"
  1184. " #:use-module (guix packages)\n"
  1185. " #:use-module (guix git-download)\n"
  1186. " #:use-module (guix build-system cmake)\n"
  1187. " #:use-module (gnu packages ssh)\n"
  1188. " #:use-module (gnu packages web)\n"
  1189. " #:use-module (gnu packages pkg-config)\n"
  1190. " #:use-module (gnu packages python)\n"
  1191. " #:use-module (gnu packages compression)\n"
  1192. " #:use-module (gnu packages tls))\n"
  1193. "\n"
  1194. msgstr ""
  1195. "(define-module (gnu packages version-control)\n"
  1196. " #:use-module ((guix licenses) #:prefix license:)\n"
  1197. " #:use-module (guix utils)\n"
  1198. " #:use-module (guix packages)\n"
  1199. " #:use-module (guix git-download)\n"
  1200. " #:use-module (guix build-system cmake)\n"
  1201. " #:use-module (gnu packages ssh)\n"
  1202. " #:use-module (gnu packages web)\n"
  1203. " #:use-module (gnu packages pkg-config)\n"
  1204. " #:use-module (gnu packages python)\n"
  1205. " #:use-module (gnu packages compression)\n"
  1206. " #:use-module (gnu packages tls))\n"
  1207. "\n"
  1208. #. type: lisp
  1209. #: guix-git/doc/guix-cookbook.texi:834
  1210. #, no-wrap
  1211. msgid ""
  1212. "(define-public my-libgit2\n"
  1213. " (let ((commit \"e98d0a37c93574d2c6107bf7f31140b548c6a7bf\")\n"
  1214. " (revision \"1\"))\n"
  1215. " (package\n"
  1216. " (name \"my-libgit2\")\n"
  1217. " (version (git-version \"0.26.6\" revision commit))\n"
  1218. " (source (origin\n"
  1219. " (method git-fetch)\n"
  1220. " (uri (git-reference\n"
  1221. " (url \"https://github.com/libgit2/libgit2/\")\n"
  1222. " (commit commit)))\n"
  1223. " (file-name (git-file-name name version))\n"
  1224. " (sha256\n"
  1225. " (base32\n"
  1226. " \"17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3\"))\n"
  1227. " (patches (search-patches \"libgit2-mtime-0.patch\"))\n"
  1228. " (modules '((guix build utils)))\n"
  1229. " ;; Remove bundled software.\n"
  1230. " (snippet '(delete-file-recursively \"deps\"))))\n"
  1231. " (build-system cmake-build-system)\n"
  1232. " (outputs '(\"out\" \"debug\"))\n"
  1233. " (arguments\n"
  1234. " `(#:tests? #true ; Run the test suite (this is the default)\n"
  1235. " #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; SHA-1 collision detection\n"
  1236. " #:phases\n"
  1237. " (modify-phases %standard-phases\n"
  1238. " (add-after 'unpack 'fix-hardcoded-paths\n"
  1239. " (lambda _\n"
  1240. " (substitute* \"tests/repo/init.c\"\n"
  1241. " ((\"#!/bin/sh\") (string-append \"#!\" (which \"sh\"))))\n"
  1242. " (substitute* \"tests/clar/fs.h\"\n"
  1243. " ((\"/bin/cp\") (which \"cp\"))\n"
  1244. " ((\"/bin/rm\") (which \"rm\")))))\n"
  1245. " ;; Run checks more verbosely.\n"
  1246. " (replace 'check\n"
  1247. " (lambda _ (invoke \"./libgit2_clar\" \"-v\" \"-Q\")))\n"
  1248. " (add-after 'unpack 'make-files-writable-for-tests\n"
  1249. " (lambda _ (for-each make-file-writable (find-files \".\" \".*\")))))))\n"
  1250. " (inputs\n"
  1251. " (list libssh2 http-parser python-wrapper))\n"
  1252. " (native-inputs\n"
  1253. " (list pkg-config))\n"
  1254. " (propagated-inputs\n"
  1255. " ;; These two libraries are in 'Requires.private' in libgit2.pc.\n"
  1256. " (list openssl zlib))\n"
  1257. " (home-page \"https://libgit2.github.com/\")\n"
  1258. " (synopsis \"Library providing Git core methods\")\n"
  1259. " (description\n"
  1260. " \"Libgit2 is a portable, pure C implementation of the Git core methods\n"
  1261. "provided as a re-entrant linkable library with a solid API, allowing you to\n"
  1262. "write native speed custom Git applications in any language with bindings.\")\n"
  1263. " ;; GPLv2 with linking exception\n"
  1264. " (license license:gpl2))))\n"
  1265. msgstr ""
  1266. "(define-public my-libgit2\n"
  1267. " (let ((commit \"e98d0a37c93574d2c6107bf7f31140b548c6a7bf\")\n"
  1268. " (revision \"1\"))\n"
  1269. " (package\n"
  1270. " (name \"my-libgit2\")\n"
  1271. " (version (git-version \"0.26.6\" revision commit))\n"
  1272. " (source (origin\n"
  1273. " (method git-fetch)\n"
  1274. " (uri (git-reference\n"
  1275. " (url \"https://github.com/libgit2/libgit2/\")\n"
  1276. " (commit commit)))\n"
  1277. " (file-name (git-file-name name version))\n"
  1278. " (sha256\n"
  1279. " (base32\n"
  1280. " \"17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3\"))\n"
  1281. " (patches (search-patches \"libgit2-mtime-0.patch\"))\n"
  1282. " (modules '((guix build utils)))\n"
  1283. " ;; Remove bundled software.\n"
  1284. " (snippet '(delete-file-recursively \"deps\"))))\n"
  1285. " (build-system cmake-build-system)\n"
  1286. " (outputs '(\"out\" \"debug\"))\n"
  1287. " (arguments\n"
  1288. " `(#:tests? #true ; Run the test suite (this is the default)\n"
  1289. " #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; SHA-1 collision detection\n"
  1290. " #:phases\n"
  1291. " (modify-phases %standard-phases\n"
  1292. " (add-after 'unpack 'fix-hardcoded-paths\n"
  1293. " (lambda _\n"
  1294. " (substitute* \"tests/repo/init.c\"\n"
  1295. " ((\"#!/bin/sh\") (string-append \"#!\" (which \"sh\"))))\n"
  1296. " (substitute* \"tests/clar/fs.h\"\n"
  1297. " ((\"/bin/cp\") (which \"cp\"))\n"
  1298. " ((\"/bin/rm\") (which \"rm\")))))\n"
  1299. " ;; Run checks more verbosely.\n"
  1300. " (replace 'check\n"
  1301. " (lambda _ (invoke \"./libgit2_clar\" \"-v\" \"-Q\")))\n"
  1302. " (add-after 'unpack 'make-files-writable-for-tests\n"
  1303. " (lambda _ (for-each make-file-writable (find-files \".\" \".*\")))))))\n"
  1304. " (inputs\n"
  1305. " (list libssh2 http-parser python-wrapper))\n"
  1306. " (native-inputs\n"
  1307. " (list pkg-config))\n"
  1308. " (propagated-inputs\n"
  1309. " ;; These two libraries are in 'Requires.private' in libgit2.pc.\n"
  1310. " (list openssl zlib))\n"
  1311. " (home-page \"https://libgit2.github.com/\")\n"
  1312. " (synopsis \"Library providing Git core methods\")\n"
  1313. " (description\n"
  1314. " \"Libgit2 is a portable, pure C implementation of the Git core methods\n"
  1315. "provided as a re-entrant linkable library with a solid API, allowing you to\n"
  1316. "write native speed custom Git applications in any language with bindings.\")\n"
  1317. " ;; GPLv2 with linking exception\n"
  1318. " (license license:gpl2))))\n"
  1319. #. type: Plain text
  1320. #: guix-git/doc/guix-cookbook.texi:839
  1321. msgid "(In those cases were you only want to tweak a few fields from a package definition, you should rely on inheritance instead of copy-pasting everything. See below.)"
  1322. msgstr "(In solchen Fällen, wo Sie nur ein paar wenige Felder einer Paketdefinition abändern wollen, wäre es wirklich besser, wenn Sie Vererbung einsetzen würden, statt alles abzuschreiben. Siehe unten.)"
  1323. #. type: Plain text
  1324. #: guix-git/doc/guix-cookbook.texi:841
  1325. msgid "Let's discuss those fields in depth."
  1326. msgstr "Reden wir über diese Felder im Detail."
  1327. #. type: subsubsection
  1328. #: guix-git/doc/guix-cookbook.texi:842
  1329. #, no-wrap
  1330. msgid "@code{git-fetch} method"
  1331. msgstr "@code{git-fetch}-Methode"
  1332. #. type: Plain text
  1333. #: guix-git/doc/guix-cookbook.texi:849
  1334. msgid "Unlike the @code{url-fetch} method, @code{git-fetch} expects a @code{git-reference} which takes a Git repository and a commit. The commit can be any Git reference such as tags, so if the @code{version} is tagged, then it can be used directly. Sometimes the tag is prefixed with a @code{v}, in which case you'd use @code{(commit (string-append \"v\" version))}."
  1335. msgstr "Anders als die @code{url-fetch}-Methode erwartet @code{git-fetch} eine @code{git-reference}, welche ein Git-Repository und einen Commit entgegennimmt. Der Commit kann eine beliebige Art von Git-Referenz sein, z.B.@: ein Tag. Wenn die @code{version} also mit einem Tag versehen ist, kann sie einfach benutzt werden. Manchmal ist dem Tag ein Präfix @code{v} vorangestellt. In diesem Fall würden Sie @code{(commit (string-append \"v\" version))} schreiben."
  1336. #. type: Plain text
  1337. #: guix-git/doc/guix-cookbook.texi:853
  1338. msgid "To ensure that the source code from the Git repository is stored in a directory with a descriptive name, we use @code{(file-name (git-file-name name version))}."
  1339. msgstr "Um sicherzustellen, dass der Quellcode aus dem Git-Repository in einem Verzeichnis mit nachvollziehbarem Namen landet, schreiben wir @code{(file-name (git-file-name name version))}."
  1340. #. type: Plain text
  1341. #: guix-git/doc/guix-cookbook.texi:858
  1342. msgid "The @code{git-version} procedure can be used to derive the version when packaging programs for a specific commit, following the Guix contributor guidelines (@pxref{Version Numbers,,, guix, GNU Guix Reference Manual})."
  1343. msgstr "Mit der Prozedur @code{git-version} kann die Version beim Paketieren eines bestimmten Commits eines Programms entsprechend den Richtlinien für Beiträge zu Guix (@pxref{Versionsnummern,,, guix.de, Referenzhandbuch zu GNU Guix}) abgeleitet werden."
  1344. #. type: Plain text
  1345. #: guix-git/doc/guix-cookbook.texi:862
  1346. msgid "How does one obtain the @code{sha256} hash that's in there, you ask? By invoking @command{guix hash} on a checkout of the desired commit, along these lines:"
  1347. msgstr "Sie fragen, woher man den darin angegebenen @code{sha256}-Hash bekommt? Indem Sie @command{guix hash} auf einem Checkout des gewünschten Commits aufrufen, ungefähr so:"
  1348. #. type: example
  1349. #: guix-git/doc/guix-cookbook.texi:868
  1350. #, no-wrap
  1351. msgid ""
  1352. "git clone https://github.com/libgit2/libgit2/\n"
  1353. "cd libgit2\n"
  1354. "git checkout v0.26.6\n"
  1355. "guix hash -rx .\n"
  1356. msgstr ""
  1357. "git clone https://github.com/libgit2/libgit2/\n"
  1358. "cd libgit2\n"
  1359. "git checkout v0.26.6\n"
  1360. "guix hash -rx .\n"
  1361. #. type: Plain text
  1362. #: guix-git/doc/guix-cookbook.texi:873
  1363. msgid "@command{guix hash -rx} computes a SHA256 hash over the whole directory, excluding the @file{.git} sub-directory (@pxref{Invoking guix hash,,, guix, GNU Guix Reference Manual})."
  1364. msgstr "@command{guix hash -rx} berechnet einen SHA256-Hash des gesamten Verzeichnisses, abgesehen vom @file{.git}-Unterverzeichnis (siehe @ref{Aufruf von guix hash,,, guix.de, Referenzhandbuch zu GNU Guix})."
  1365. #. type: Plain text
  1366. #: guix-git/doc/guix-cookbook.texi:876
  1367. msgid "In the future, @command{guix download} will hopefully be able to do these steps for you, just like it does for regular downloads."
  1368. msgstr "In Zukunft wird @command{guix download} diese Schritte hoffentlich für Sie erledigen können, genau wie es das für normales Herunterladen macht."
  1369. #. type: subsubsection
  1370. #: guix-git/doc/guix-cookbook.texi:877
  1371. #, no-wrap
  1372. msgid "Snippets"
  1373. msgstr "Schnipsel"
  1374. #. type: Plain text
  1375. #: guix-git/doc/guix-cookbook.texi:883
  1376. msgid "Snippets are quoted (i.e. non-evaluated) Scheme code that are a means of patching the source. They are a Guix-y alternative to the traditional @file{.patch} files. Because of the quote, the code in only evaluated when passed to the Guix daemon for building. There can be as many snippets as needed."
  1377. msgstr "„Snippets“, deutsch Schnipsel, sind mit z.B.@: @code{quote}-Zeichen maskierte, also nicht ausgewertete, Stücke Scheme-Code, mit denen der Quellcode gepatcht wird. Sie sind eine guixige Alternative zu traditionellen @file{.patch}-Dateien. Wegen der Maskierung werden sie erst dann ausgewertet, wenn sie an den Guix-Daemon zum Erstellen übergeben werden. Es kann so viele Schnipsel geben wie nötig."
  1378. #. type: Plain text
  1379. #: guix-git/doc/guix-cookbook.texi:886
  1380. msgid "Snippets might need additional Guile modules which can be imported from the @code{modules} field."
  1381. msgstr "In Schnipseln könnten zusätzliche Guile-Module benötigt werden. Diese können importiert werden, indem man sie im Feld @code{modules} angibt."
  1382. #. type: subsubsection
  1383. #: guix-git/doc/guix-cookbook.texi:887
  1384. #, no-wrap
  1385. msgid "Inputs"
  1386. msgstr "Eingaben"
  1387. #. type: Plain text
  1388. #: guix-git/doc/guix-cookbook.texi:890
  1389. msgid "There are 3 different input types. In short:"
  1390. msgstr "Es gibt 3 verschiedene Arten von Eingaben. Kurz gefasst:"
  1391. #. type: item
  1392. #: guix-git/doc/guix-cookbook.texi:892
  1393. #, no-wrap
  1394. msgid "native-inputs"
  1395. msgstr "native-inputs"
  1396. #. type: table
  1397. #: guix-git/doc/guix-cookbook.texi:895
  1398. msgid "Required for building but not runtime -- installing a package through a substitute won't install these inputs."
  1399. msgstr "Sie werden zum Erstellen gebraucht, aber @emph{nicht} zur Laufzeit@tie{}— wenn Sie ein Paket als Substitut installieren, werden diese Eingaben nirgendwo installiert."
  1400. #. type: item
  1401. #: guix-git/doc/guix-cookbook.texi:895
  1402. #, no-wrap
  1403. msgid "inputs"
  1404. msgstr "inputs"
  1405. #. type: table
  1406. #: guix-git/doc/guix-cookbook.texi:898
  1407. msgid "Installed in the store but not in the profile, as well as being present at build time."
  1408. msgstr "Sie werden in den Store installiert, aber nicht in das Profil, und sie stehen beim Erstellen zur Verfügung."
  1409. #. type: item
  1410. #: guix-git/doc/guix-cookbook.texi:898
  1411. #, no-wrap
  1412. msgid "propagated-inputs"
  1413. msgstr "propagated-inputs"
  1414. #. type: table
  1415. #: guix-git/doc/guix-cookbook.texi:901
  1416. msgid "Installed in the store and in the profile, as well as being present at build time."
  1417. msgstr "Sie werden sowohl in den Store als auch ins Profil installiert und sind auch beim Erstellen verfügbar."
  1418. #. type: Plain text
  1419. #: guix-git/doc/guix-cookbook.texi:904
  1420. msgid "@xref{Package Reference,,, guix, GNU Guix Reference Manual} for more details."
  1421. msgstr "Siehe @ref{„package“-Referenz,,, guix.de, Referenzhandbuch zu GNU Guix} für mehr Details."
  1422. #. type: Plain text
  1423. #: guix-git/doc/guix-cookbook.texi:908
  1424. msgid "The distinction between the various inputs is important: if a dependency can be handled as an @emph{input} instead of a @emph{propagated input}, it should be done so, or else it ``pollutes'' the user profile for no good reason."
  1425. msgstr "Der Unterschied zwischen den verschiedenen Eingaben ist wichtig: Wenn eine Abhängigkeit als @code{input} statt als @code{propagated-input} ausreicht, dann sollte sie auch so eingeordnet werden, sonst „verschmutzt“ sie das Profil des Benutzers ohne guten Grund."
  1426. #. type: Plain text
  1427. #: guix-git/doc/guix-cookbook.texi:915
  1428. msgid "For instance, a user installing a graphical program that depends on a command line tool might only be interested in the graphical part, so there is no need to force the command line tool into the user profile. The dependency is a concern to the package, not to the user. @emph{Inputs} make it possible to handle dependencies without bugging the user by adding undesired executable files (or libraries) to their profile."
  1429. msgstr "Wenn eine Nutzerin beispielsweise ein grafisches Programm installiert, das von einem Befehlszeilenwerkzeug abhängt, sie sich aber nur für den grafischen Teil interessiert, dann sollten wir sie nicht zur Installation des Befehlszeilenwerkzeugs in ihr Benutzerprofil zwingen. Um die Abhängigkeit sollte sich das Paket kümmern, nicht seine Benutzerin. Mit @emph{Inputs} können wir Abhängigkeiten verwenden, wo sie gebraucht werden, ohne Nutzer zu belästigen, indem wir ausführbare Dateien (oder Bibliotheken) in deren Profil installieren."
  1430. #. type: Plain text
  1431. #: guix-git/doc/guix-cookbook.texi:921
  1432. msgid "Same goes for @emph{native-inputs}: once the program is installed, build-time dependencies can be safely garbage-collected. It also matters when a substitute is available, in which case only the @emph{inputs} and @emph{propagated inputs} will be fetched: the @emph{native inputs} are not required to install a package from a substitute."
  1433. msgstr "Das Gleiche gilt für @emph{native-inputs}: Wenn das Programm einmal installiert ist, können Abhängigkeiten zur Erstellungszeit gefahrlos dem Müllsammler anvertraut werden. Sie sind auch besser, wenn ein Substitut verfügbar ist, so dass nur die @code{inputs} und @code{propagated-inputs} heruntergeladen werden; @code{native-inputs} braucht niemand, der das Paket aus einem Substitut heraus installiert."
  1434. #. type: quotation
  1435. #: guix-git/doc/guix-cookbook.texi:922 guix-git/doc/guix-cookbook.texi:1892
  1436. #, no-wrap
  1437. msgid "Note"
  1438. msgstr "Anmerkung"
  1439. #. type: quotation
  1440. #: guix-git/doc/guix-cookbook.texi:925
  1441. msgid "You may see here and there snippets where package inputs are written quite differently, like so:"
  1442. msgstr "Vielleicht bemerken Sie hier und da Schnipsel, deren Paketeingaben recht anders geschrieben wurden, etwa so:"
  1443. #. type: lisp
  1444. #: guix-git/doc/guix-cookbook.texi:932
  1445. #, no-wrap
  1446. msgid ""
  1447. ";; The \"old style\" for inputs.\n"
  1448. "(inputs\n"
  1449. " `((\"libssh2\" ,libssh2)\n"
  1450. " (\"http-parser\" ,http-parser)\n"
  1451. " (\"python\" ,python-wrapper)))\n"
  1452. msgstr ""
  1453. ";; Der „alte Stil“ von Eingaben.\n"
  1454. "(inputs\n"
  1455. " `((\"libssh2\" ,libssh2)\n"
  1456. " (\"http-parser\" ,http-parser)\n"
  1457. " (\"python\" ,python-wrapper)))\n"
  1458. #. type: quotation
  1459. #: guix-git/doc/guix-cookbook.texi:938
  1460. msgid "This is the ``old style'', where each input in the list is explicitly given a label (a string). It is still supported but we recommend using the style above instead. @xref{package Reference,,, guix, GNU Guix Reference Manual}, for more info."
  1461. msgstr "Früher hatte man Eingaben in diesem „alten Stil“ geschrieben, wo jede Eingabe ausdrücklich mit einer Bezeichnung (als Zeichenkette) assoziiert wurde. Er wird immer noch unterstützt, aber wir empfehlen, dass Sie stattdessen im weiter oben gezeigten Stil schreiben. Siehe @ref{„package“-Referenz,,, guix.de, Referenzhandbuch zu GNU Guix} für mehr Informationen."
  1462. #. type: subsubsection
  1463. #: guix-git/doc/guix-cookbook.texi:940
  1464. #, no-wrap
  1465. msgid "Outputs"
  1466. msgstr "Ausgaben"
  1467. #. type: Plain text
  1468. #: guix-git/doc/guix-cookbook.texi:944
  1469. msgid "Just like how a package can have multiple inputs, it can also produce multiple outputs."
  1470. msgstr "Genau wie ein Paket mehrere Eingaben haben kann, kann es auch mehrere Ausgaben haben."
  1471. #. type: Plain text
  1472. #: guix-git/doc/guix-cookbook.texi:946
  1473. msgid "Each output corresponds to a separate directory in the store."
  1474. msgstr "Jede Ausgabe entspricht einem anderen Verzeichnis im Store."
  1475. #. type: Plain text
  1476. #: guix-git/doc/guix-cookbook.texi:949
  1477. msgid "The user can choose which output to install; this is useful to save space or to avoid polluting the user profile with unwanted executables or libraries."
  1478. msgstr "Die Benutzerin kann sich entscheiden, welche Ausgabe sie installieren will; so spart sie Platz auf dem Datenträger und verschmutzt ihr Benutzerprofil nicht mit unerwünschten ausführbaren Dateien oder Bibliotheken."
  1479. #. type: Plain text
  1480. #: guix-git/doc/guix-cookbook.texi:952
  1481. msgid "Output separation is optional. When the @code{outputs} field is left out, the default and only output (the complete package) is referred to as @code{\"out\"}."
  1482. msgstr "Nach Ausgaben zu trennen ist optional. Wenn Sie kein @code{outputs}-Feld schreiben, heißt die standardmäßige und einzige Ausgabe (also das ganze Paket) schlicht @code{\"out\"}."
  1483. #. type: Plain text
  1484. #: guix-git/doc/guix-cookbook.texi:954
  1485. msgid "Typical separate output names include @code{debug} and @code{doc}."
  1486. msgstr "Typische Namen für getrennte Ausgaben sind @code{debug} und @code{doc}."
  1487. #. type: Plain text
  1488. #: guix-git/doc/guix-cookbook.texi:958
  1489. msgid "It's advised to separate outputs only when you've shown it's worth it: if the output size is significant (compare with @code{guix size}) or in case the package is modular."
  1490. msgstr "Es wird empfohlen, getrennte Ausgaben nur dann anzubieten, wenn Sie gezeigt haben, dass es sich lohnt, d.h.@: wenn die Ausgabengröße signifikant ist (vergleichen Sie sie mittels @code{guix size}) oder das Paket modular aufgebaut ist."
  1491. #. type: subsubsection
  1492. #: guix-git/doc/guix-cookbook.texi:959
  1493. #, no-wrap
  1494. msgid "Build system arguments"
  1495. msgstr "Argumente ans Erstellungssystem"
  1496. #. type: Plain text
  1497. #: guix-git/doc/guix-cookbook.texi:962
  1498. msgid "The @code{arguments} is a keyword-value list used to configure the build process."
  1499. msgstr "@code{arguments} ist eine Liste aus Schlüsselwort-Wert-Paaren (eine „keyword-value list“), mit denen der Erstellungsprozess konfiguriert wird."
  1500. #. type: Plain text
  1501. #: guix-git/doc/guix-cookbook.texi:967
  1502. msgid "The simplest argument @code{#:tests?} can be used to disable the test suite when building the package. This is mostly useful when the package does not feature any test suite. It's strongly recommended to keep the test suite on if there is one."
  1503. msgstr "Das einfachste Argument @code{#:tests?} kann man benutzen, um den Testkatalog bei der Erstellung des Pakets nicht zu prüfen. Das braucht man meistens dann, wenn das Paket überhaupt keinen Testkatalog hat. Wir empfehlen sehr, den Testkatalog zu benutzen, wenn es einen gibt."
  1504. #. type: Plain text
  1505. #: guix-git/doc/guix-cookbook.texi:971
  1506. msgid "Another common argument is @code{:make-flags}, which specifies a list of flags to append when running make, as you would from the command line. For instance, the following flags"
  1507. msgstr "Ein anderes häufiges Argument ist @code{:make-flags}, was eine Liste an den @code{make}-Aufruf anzuhängender Befehlszeilenargumente festlegt, so wie Sie sie auf der Befehlszeile angeben würden. Zum Beispiel werden die folgenden @code{:make-flags}"
  1508. #. type: lisp
  1509. #: guix-git/doc/guix-cookbook.texi:975
  1510. #, no-wrap
  1511. msgid ""
  1512. "#:make-flags (list (string-append \"prefix=\" (assoc-ref %outputs \"out\"))\n"
  1513. " \"CC=gcc\")\n"
  1514. msgstr ""
  1515. "#:make-flags (list (string-append \"prefix=\" (assoc-ref %outputs \"out\"))\n"
  1516. " \"CC=gcc\")\n"
  1517. #. type: Plain text
  1518. #: guix-git/doc/guix-cookbook.texi:978
  1519. msgid "translate into"
  1520. msgstr "übersetzt zu"
  1521. #. type: example
  1522. #: guix-git/doc/guix-cookbook.texi:981
  1523. #, no-wrap
  1524. msgid "$ make CC=gcc prefix=/gnu/store/...-<out>\n"
  1525. msgstr "$ make CC=gcc prefix=/gnu/store/...-<out>\n"
  1526. #. type: Plain text
  1527. #: guix-git/doc/guix-cookbook.texi:987
  1528. msgid "This sets the C compiler to @code{gcc} and the @code{prefix} variable (the installation directory in Make parlance) to @code{(assoc-ref %outputs \"out\")}, which is a build-stage global variable pointing to the destination directory in the store (something like @file{/gnu/store/...-my-libgit2-20180408})."
  1529. msgstr "Dadurch wird als C-Compiler @code{gcc} verwendet und als @code{prefix}-Variable (das Installationsverzeichnis in der Sprechweise von Make) wird @code{(assoc-ref %outputs \"out\")} verwendet, also eine globale Variable der Erstellungsschicht, die auf das Zielverzeichnis im Store verweist (so etwas wie @file{/gnu/store/…-my-libgit2-20180408})."
  1530. #. type: Plain text
  1531. #: guix-git/doc/guix-cookbook.texi:989
  1532. msgid "Similarly, it's possible to set the configure flags:"
  1533. msgstr "Auf gleiche Art kann man auch die Befehlszeilenoptionen für configure festlegen:"
  1534. #. type: lisp
  1535. #: guix-git/doc/guix-cookbook.texi:992
  1536. #, no-wrap
  1537. msgid "#:configure-flags '(\"-DUSE_SHA1DC=ON\")\n"
  1538. msgstr "#:configure-flags '(\"-DUSE_SHA1DC=ON\")\n"
  1539. #. type: Plain text
  1540. #: guix-git/doc/guix-cookbook.texi:996
  1541. msgid "The @code{%build-inputs} variable is also generated in scope. It's an association table that maps the input names to their store directories."
  1542. msgstr "Die Variable @code{%build-inputs} wird auch in diesem Sichtbarkeitsbereich erzeugt. Es handelt sich um eine assoziative Liste, die von den Namen der Eingaben auf ihre Verzeichnisse im Store abbildet."
  1543. #. type: Plain text
  1544. #: guix-git/doc/guix-cookbook.texi:1001
  1545. msgid "The @code{phases} keyword lists the sequential steps of the build system. Typically phases include @code{unpack}, @code{configure}, @code{build}, @code{install} and @code{check}. To know more about those phases, you need to work out the appropriate build system definition in @samp{$GUIX_CHECKOUT/guix/build/gnu-build-system.scm}:"
  1546. msgstr "Das @code{phases}-Schlüsselwort listet der Reihe nach die vom Erstellungssystem durchgeführten Schritte auf. Zu den üblichen Phasen gehören @code{unpack}, @code{configure}, @code{build}, @code{install} und @code{check}. Um mehr über diese Phasen zu lernen, müssen Sie sich die Definition des zugehörigen Erstellungssystems in @samp{$GUIX_CHECKOUT/guix/build/gnu-build-system.scm} anschauen:"
  1547. #. type: lisp
  1548. #: guix-git/doc/guix-cookbook.texi:1020
  1549. #, no-wrap
  1550. msgid ""
  1551. "(define %standard-phases\n"
  1552. " ;; Standard build phases, as a list of symbol/procedure pairs.\n"
  1553. " (let-syntax ((phases (syntax-rules ()\n"
  1554. " ((_ p ...) `((p . ,p) ...)))))\n"
  1555. " (phases set-SOURCE-DATE-EPOCH set-paths install-locale unpack\n"
  1556. " bootstrap\n"
  1557. " patch-usr-bin-file\n"
  1558. " patch-source-shebangs configure patch-generated-file-shebangs\n"
  1559. " build check install\n"
  1560. " patch-shebangs strip\n"
  1561. " validate-runpath\n"
  1562. " validate-documentation-location\n"
  1563. " delete-info-dir-file\n"
  1564. " patch-dot-desktop-files\n"
  1565. " install-license-files\n"
  1566. " reset-gzip-timestamps\n"
  1567. " compress-documentation)))\n"
  1568. msgstr ""
  1569. "(define %standard-phases\n"
  1570. " ;; Standard build phases, as a list of symbol/procedure pairs.\n"
  1571. " (let-syntax ((phases (syntax-rules ()\n"
  1572. " ((_ p ...) `((p . ,p) ...)))))\n"
  1573. " (phases set-SOURCE-DATE-EPOCH set-paths install-locale unpack\n"
  1574. " bootstrap\n"
  1575. " patch-usr-bin-file\n"
  1576. " patch-source-shebangs configure patch-generated-file-shebangs\n"
  1577. " build check install\n"
  1578. " patch-shebangs strip\n"
  1579. " validate-runpath\n"
  1580. " validate-documentation-location\n"
  1581. " delete-info-dir-file\n"
  1582. " patch-dot-desktop-files\n"
  1583. " install-license-files\n"
  1584. " reset-gzip-timestamps\n"
  1585. " compress-documentation)))\n"
  1586. #. type: Plain text
  1587. #: guix-git/doc/guix-cookbook.texi:1023
  1588. msgid "Or from the REPL:"
  1589. msgstr "Alternativ auf einer REPL:"
  1590. #. type: lisp
  1591. #: guix-git/doc/guix-cookbook.texi:1029
  1592. #, no-wrap
  1593. msgid ""
  1594. "(add-to-load-path \"/path/to/guix/checkout\")\n"
  1595. ",use (guix build gnu-build-system)\n"
  1596. "(map first %standard-phases)\n"
  1597. "@result{} (set-SOURCE-DATE-EPOCH set-paths install-locale unpack bootstrap patch-usr-bin-file patch-source-shebangs configure patch-generated-file-shebangs build check install patch-shebangs strip validate-runpath validate-documentation-location delete-info-dir-file patch-dot-desktop-files install-license-files reset-gzip-timestamps compress-documentation)\n"
  1598. msgstr ""
  1599. "(add-to-load-path \"/path/to/guix/checkout\")\n"
  1600. ",use (guix build gnu-build-system)\n"
  1601. "(map first %standard-phases)\n"
  1602. "@result{} (set-SOURCE-DATE-EPOCH set-paths install-locale unpack bootstrap patch-usr-bin-file patch-source-shebangs configure patch-generated-file-shebangs build check install patch-shebangs strip validate-runpath validate-documentation-location delete-info-dir-file patch-dot-desktop-files install-license-files reset-gzip-timestamps compress-documentation)\n"
  1603. #. type: Plain text
  1604. #: guix-git/doc/guix-cookbook.texi:1033
  1605. msgid "If you want to know more about what happens during those phases, consult the associated procedures."
  1606. msgstr "Wenn Sie mehr darüber wissen wollen, was in diesen Phasen passiert, schauen Sie in den jeweiligen Prozeduren."
  1607. #. type: Plain text
  1608. #: guix-git/doc/guix-cookbook.texi:1036
  1609. msgid "For instance, as of this writing the definition of @code{unpack} for the GNU build system is:"
  1610. msgstr "Beispielsweise sieht momentan, als dies hier geschrieben wurde, die Definition von @code{unpack} für das GNU-Erstellungssystem so aus:"
  1611. #. type: lisp
  1612. #: guix-git/doc/guix-cookbook.texi:1046
  1613. #, no-wrap
  1614. msgid ""
  1615. "(define* (unpack #:key source #:allow-other-keys)\n"
  1616. " \"Unpack SOURCE in the working directory, and change directory within the\n"
  1617. "source. When SOURCE is a directory, copy it in a sub-directory of the current\n"
  1618. "working directory.\"\n"
  1619. " (if (file-is-directory? source)\n"
  1620. " (begin\n"
  1621. " (mkdir \"source\")\n"
  1622. " (chdir \"source\")\n"
  1623. "\n"
  1624. msgstr ""
  1625. "(define* (unpack #:key source #:allow-other-keys)\n"
  1626. " \"Unpack SOURCE in the working directory, and change directory within the\n"
  1627. "source. When SOURCE is a directory, copy it in a sub-directory of the current\n"
  1628. "working directory.\"\n"
  1629. " (if (file-is-directory? source)\n"
  1630. " (begin\n"
  1631. " (mkdir \"source\")\n"
  1632. " (chdir \"source\")\n"
  1633. "\n"
  1634. #. type: lisp
  1635. #: guix-git/doc/guix-cookbook.texi:1057
  1636. #, no-wrap
  1637. msgid ""
  1638. " ;; Preserve timestamps (set to the Epoch) on the copied tree so that\n"
  1639. " ;; things work deterministically.\n"
  1640. " (copy-recursively source \".\"\n"
  1641. " #:keep-mtime? #true))\n"
  1642. " (begin\n"
  1643. " (if (string-suffix? \".zip\" source)\n"
  1644. " (invoke \"unzip\" source)\n"
  1645. " (invoke \"tar\" \"xvf\" source))\n"
  1646. " (chdir (first-subdirectory \".\"))))\n"
  1647. " #true)\n"
  1648. msgstr ""
  1649. " ;; Preserve timestamps (set to the Epoch) on the copied tree so that\n"
  1650. " ;; things work deterministically.\n"
  1651. " (copy-recursively source \".\"\n"
  1652. " #:keep-mtime? #true))\n"
  1653. " (begin\n"
  1654. " (if (string-suffix? \".zip\" source)\n"
  1655. " (invoke \"unzip\" source)\n"
  1656. " (invoke \"tar\" \"xvf\" source))\n"
  1657. " (chdir (first-subdirectory \".\"))))\n"
  1658. " #true)\n"
  1659. #. type: Plain text
  1660. #: guix-git/doc/guix-cookbook.texi:1065
  1661. msgid "Note the @code{chdir} call: it changes the working directory to where the source was unpacked. Thus every phase following the @code{unpack} will use the source as a working directory, which is why we can directly work on the source files. That is to say, unless a later phase changes the working directory to something else."
  1662. msgstr "Beachten Sie den Aufruf von @code{chdir}: Damit wird das Arbeitsverzeichnis zu demjenigen gewechselt, wohin die Quelldateien entpackt wurden. In jeder Phase nach @code{unpack} dient also das Verzeichnis mit den Quelldateien als Arbeitsverzeichnis. Deswegen können wir direkt mit den Quelldateien arbeiten, zumindest solange keine spätere Phase das Arbeitsverzeichnis woandershin wechselt."
  1663. #. type: Plain text
  1664. #: guix-git/doc/guix-cookbook.texi:1069
  1665. msgid "We modify the list of @code{%standard-phases} of the build system with the @code{modify-phases} macro as per the list of specified modifications, which may have the following forms:"
  1666. msgstr "Die Liste der @code{%standard-phases} des Erstellungssystems ändern wir mit Hilfe des @code{modify-phases}-Makros über eine Liste von Änderungen. Sie kann folgende Formen haben:"
  1667. #. type: itemize
  1668. #: guix-git/doc/guix-cookbook.texi:1073
  1669. msgid "@code{(add-before @var{phase} @var{new-phase} @var{procedure})}: Run @var{procedure} named @var{new-phase} before @var{phase}."
  1670. msgstr "@code{(add-before @var{Phase} @var{neue-Phase} @var{Prozedur})}: @var{Prozedur} unter dem Namen @var{neue-Phase} vor @var{Phase} ausführen."
  1671. #. type: itemize
  1672. #: guix-git/doc/guix-cookbook.texi:1075
  1673. msgid "@code{(add-after @var{phase} @var{new-phase} @var{procedure})}: Same, but afterwards."
  1674. msgstr "@code{(add-after @var{Phase} @var{neue-Phase} @var{Prozedur})}: Genauso, aber danach."
  1675. #. type: itemize
  1676. #: guix-git/doc/guix-cookbook.texi:1077
  1677. msgid "@code{(replace @var{phase} @var{procedure})}."
  1678. msgstr "@code{(replace @var{Phase} @var{Prozedur})}."
  1679. #. type: itemize
  1680. #: guix-git/doc/guix-cookbook.texi:1079
  1681. msgid "@code{(delete @var{phase})}."
  1682. msgstr "@code{(delete @var{Phase})}."
  1683. #. type: Plain text
  1684. #: guix-git/doc/guix-cookbook.texi:1086
  1685. msgid "The @var{procedure} supports the keyword arguments @code{inputs} and @code{outputs}. Each input (whether @emph{native}, @emph{propagated} or not) and output directory is referenced by their name in those variables. Thus @code{(assoc-ref outputs \"out\")} is the store directory of the main output of the package. A phase procedure may look like this:"
  1686. msgstr "Die @var{Prozedur} unterstützt die Schlüsselwortargumente @code{inputs} und @code{outputs}. Jede Eingabe (ob sie @emph{native}, @emph{propagated} oder nichts davon ist) und jedes Ausgabeverzeichnis ist in diesen Variablen mit dem jeweiligen Namen assoziiert. @code{(assoc-ref outputs \"out\")} ist also das Store-Verzeichnis der Hauptausgabe des Pakets. Eine Phasenprozedur kann so aussehen:"
  1687. #. type: lisp
  1688. #: guix-git/doc/guix-cookbook.texi:1094
  1689. #, no-wrap
  1690. msgid ""
  1691. "(lambda* (#:key inputs outputs #:allow-other-keys)\n"
  1692. " (let ((bash-directory (assoc-ref inputs \"bash\"))\n"
  1693. " (output-directory (assoc-ref outputs \"out\"))\n"
  1694. " (doc-directory (assoc-ref outputs \"doc\")))\n"
  1695. " ;; ...\n"
  1696. " #true))\n"
  1697. msgstr ""
  1698. "(lambda* (#:key inputs outputs #:allow-other-keys)\n"
  1699. " (let ((bash-directory (assoc-ref inputs \"bash\"))\n"
  1700. " (output-directory (assoc-ref outputs \"out\"))\n"
  1701. " (doc-directory (assoc-ref outputs \"doc\")))\n"
  1702. " ;; …\n"
  1703. " #true))\n"
  1704. #. type: Plain text
  1705. #: guix-git/doc/guix-cookbook.texi:1100
  1706. msgid "The procedure must return @code{#true} on success. It's brittle to rely on the return value of the last expression used to tweak the phase because there is no guarantee it would be a @code{#true}. Hence the trailing @code{#true} to ensure the right value is returned on success."
  1707. msgstr "Die Prozedur muss bei Erfolg @code{#true} zurückliefern. Auf den Rückgabewert des letzten Ausdrucks, mit dem die Phase angepasst wurde, kann man sich nicht verlassen, weil es keine Garantie gibt, dass der Rückgabewert @code{#true} sein wird. Deswegen schreiben wir dahinter @code{#true}, damit bei erfolgreicher Ausführung der richtige Wert geliefert wird."
  1708. #. type: subsubsection
  1709. #: guix-git/doc/guix-cookbook.texi:1101
  1710. #, no-wrap
  1711. msgid "Code staging"
  1712. msgstr "Code-Staging"
  1713. #. type: Plain text
  1714. #: guix-git/doc/guix-cookbook.texi:1107
  1715. msgid "The astute reader may have noticed the quasi-quote and comma syntax in the argument field. Indeed, the build code in the package declaration should not be evaluated on the client side, but only when passed to the Guix daemon. This mechanism of passing code around two running processes is called @uref{https://arxiv.org/abs/1709.00833, code staging}."
  1716. msgstr "Aufmerksame Leser könnten die Syntax mit @code{quasiquote} und Komma im Argumentefeld bemerkt haben. Tatsächlich sollte der Erstellungscode in der Paketdeklaration @emph{nicht} auf Client-Seite ausgeführt werden, sondern erst, wenn er an den Guix-Daemon übergeben worden ist. Der Mechanismus, über den Code zwischen zwei laufenden Prozessen weitergegeben wird, nennen wir @uref{https://arxiv.org/abs/1709.00833, Code-Staging}."
  1717. #. type: subsubsection
  1718. #: guix-git/doc/guix-cookbook.texi:1108
  1719. #, no-wrap
  1720. msgid "Utility functions"
  1721. msgstr "Hilfsfunktionen"
  1722. #. type: Plain text
  1723. #: guix-git/doc/guix-cookbook.texi:1113
  1724. msgid "When customizing @code{phases}, we often need to write code that mimics the equivalent system invocations (@code{make}, @code{mkdir}, @code{cp}, etc.)@: commonly used during regular ``Unix-style'' installations."
  1725. msgstr "Beim Anpassen der @code{phases} müssen wir oft Code schreiben, der analog zu den äquivalenten Systemaufrufen funktioniert (@code{make}, @code{mkdir}, @code{cp}, etc.), welche in regulären „Unix-artigen“ Installationen oft benutzt werden."
  1726. #. type: Plain text
  1727. #: guix-git/doc/guix-cookbook.texi:1116
  1728. msgid "Some like @code{chmod} are native to Guile. @xref{,,, guile, Guile reference manual} for a complete list."
  1729. msgstr "Manche, wie @code{chmod}, sind Teil von Guile. Siehe das @ref{,,, guile, Referenzhandbuch zu Guile} für eine vollständige Liste."
  1730. #. type: Plain text
  1731. #: guix-git/doc/guix-cookbook.texi:1119
  1732. msgid "Guix provides additional helper functions which prove especially handy in the context of package management."
  1733. msgstr "Guix stellt zusätzliche Hilfsfunktionen zur Verfügung, die bei der Paketverwaltung besonders praktisch sind."
  1734. #. type: Plain text
  1735. #: guix-git/doc/guix-cookbook.texi:1123
  1736. msgid "Some of those functions can be found in @samp{$GUIX_CHECKOUT/guix/guix/build/utils.scm}. Most of them mirror the behaviour of the traditional Unix system commands:"
  1737. msgstr "Manche dieser Funktionalitäten finden Sie in @samp{$GUIX_CHECKOUT/guix/guix/build/utils.scm}. Die meisten spiegeln das Verhalten traditioneller Unix-Systembefehle wider:"
  1738. #. type: item
  1739. #: guix-git/doc/guix-cookbook.texi:1125
  1740. #, no-wrap
  1741. msgid "which"
  1742. msgstr "which"
  1743. #. type: table
  1744. #: guix-git/doc/guix-cookbook.texi:1127
  1745. msgid "Like the @samp{which} system command."
  1746. msgstr "Das Gleiche wie der @samp{which}-Systembefehl."
  1747. #. type: item
  1748. #: guix-git/doc/guix-cookbook.texi:1127
  1749. #, no-wrap
  1750. msgid "find-files"
  1751. msgstr "find-files"
  1752. #. type: table
  1753. #: guix-git/doc/guix-cookbook.texi:1129
  1754. msgid "Akin to the @samp{find} system command."
  1755. msgstr "Wie der @samp{find} Systembefehl."
  1756. #. type: item
  1757. #: guix-git/doc/guix-cookbook.texi:1129
  1758. #, no-wrap
  1759. msgid "mkdir-p"
  1760. msgstr "mkdir-p"
  1761. #. type: table
  1762. #: guix-git/doc/guix-cookbook.texi:1131
  1763. msgid "Like @samp{mkdir -p}, which creates all parents as needed."
  1764. msgstr "Wie @samp{mkdir -p}, das Elternverzeichnisse erzeugt, wenn nötig."
  1765. #. type: item
  1766. #: guix-git/doc/guix-cookbook.texi:1131
  1767. #, no-wrap
  1768. msgid "install-file"
  1769. msgstr "install-file"
  1770. #. type: table
  1771. #: guix-git/doc/guix-cookbook.texi:1135
  1772. msgid "Similar to @samp{install} when installing a file to a (possibly non-existing) directory. Guile has @code{copy-file} which works like @samp{cp}."
  1773. msgstr "Ähnlich wie @samp{install} beim Installieren einer Datei in ein (nicht unbedingt existierendes) Verzeichnis. Guile kennt @code{copy-file}, das wie @samp{cp} funktioniert."
  1774. #. type: item
  1775. #: guix-git/doc/guix-cookbook.texi:1135
  1776. #, no-wrap
  1777. msgid "copy-recursively"
  1778. msgstr "copy-recursively"
  1779. #. type: table
  1780. #: guix-git/doc/guix-cookbook.texi:1137
  1781. msgid "Like @samp{cp -r}."
  1782. msgstr "Wie @samp{cp -r}."
  1783. #. type: item
  1784. #: guix-git/doc/guix-cookbook.texi:1137
  1785. #, no-wrap
  1786. msgid "delete-file-recursively"
  1787. msgstr "delete-file-recursively"
  1788. #. type: table
  1789. #: guix-git/doc/guix-cookbook.texi:1139
  1790. msgid "Like @samp{rm -rf}."
  1791. msgstr "Wie @samp{rm -rf}."
  1792. #. type: item
  1793. #: guix-git/doc/guix-cookbook.texi:1139
  1794. #, no-wrap
  1795. msgid "invoke"
  1796. msgstr "invoke"
  1797. #. type: table
  1798. #: guix-git/doc/guix-cookbook.texi:1141
  1799. msgid "Run an executable. This should be used instead of @code{system*}."
  1800. msgstr "Eine ausführbare Datei ausführen. Man sollte es benutzen und nicht @code{system*}."
  1801. #. type: item
  1802. #: guix-git/doc/guix-cookbook.texi:1141
  1803. #, no-wrap
  1804. msgid "with-directory-excursion"
  1805. msgstr "with-directory-excursion"
  1806. #. type: table
  1807. #: guix-git/doc/guix-cookbook.texi:1144
  1808. msgid "Run the body in a different working directory, then restore the previous working directory."
  1809. msgstr "Den Rumpf in einem anderen Arbeitsverzeichnis ausführen und danach wieder in das vorherige Arbeitsverzeichnis wechseln."
  1810. #. type: item
  1811. #: guix-git/doc/guix-cookbook.texi:1144
  1812. #, no-wrap
  1813. msgid "substitute*"
  1814. msgstr "substitute*"
  1815. #. type: table
  1816. #: guix-git/doc/guix-cookbook.texi:1146
  1817. msgid "A ``@command{sed}-like'' function."
  1818. msgstr "Eine „@command{sed}-artige“ Funktion."
  1819. #. type: Plain text
  1820. #: guix-git/doc/guix-cookbook.texi:1150
  1821. msgid "@xref{Build Utilities,,, guix, GNU Guix Reference Manual}, for more information on these utilities."
  1822. msgstr "Siehe @ref{Werkzeuge zur Erstellung,,, guix.de, Referenzhandbuch zu GNU Guix} für mehr Informationen zu diesen Werkzeugen."
  1823. #. type: subsubsection
  1824. #: guix-git/doc/guix-cookbook.texi:1151
  1825. #, no-wrap
  1826. msgid "Module prefix"
  1827. msgstr "Modulpräfix"
  1828. #. type: Plain text
  1829. #: guix-git/doc/guix-cookbook.texi:1161
  1830. msgid "The license in our last example needs a prefix: this is because of how the @code{license} module was imported in the package, as @code{#:use-module ((guix licenses) #:prefix license:)}. The Guile module import mechanism (@pxref{Using Guile Modules,,, guile, Guile reference manual}) gives the user full control over namespacing: this is needed to avoid clashes between, say, the @samp{zlib} variable from @samp{licenses.scm} (a @emph{license} value) and the @samp{zlib} variable from @samp{compression.scm} (a @emph{package} value)."
  1831. msgstr "Die Lizenz in unserem letzten Beispiel braucht ein Präfix. Der Grund liegt darin, wie das @code{license}-Modul importiert worden ist, nämlich @code{#:use-module ((guix licenses) #:prefix license:)}. Der Importmechanismus von Guile-Modulen (siehe @ref{Using Guile Modules,,, guile, Referenzhandbuch zu Guile}) gibt Benutzern die volle Kontrolle über Namensräume. Man braucht sie, um Konflikte zu lösen, z.B.@ zwischen der @samp{zlib}-Variablen aus @samp{licenses.scm} (dieser Wert repräsentiert eine @emph{Softwarelizenz}) und der @samp{zlib}-Variablen aus @samp{compression.scm} (ein Wert, der für ein @emph{Paket} steht)."
  1832. #. type: subsection
  1833. #: guix-git/doc/guix-cookbook.texi:1162 guix-git/doc/guix-cookbook.texi:1163
  1834. #, no-wrap
  1835. msgid "Other build systems"
  1836. msgstr "Andere Erstellungssysteme"
  1837. #. type: Plain text
  1838. #: guix-git/doc/guix-cookbook.texi:1170
  1839. msgid "What we've seen so far covers the majority of packages using a build system other than the @code{trivial-build-system}. The latter does not automate anything and leaves you to build everything manually. This can be more demanding and we won't cover it here for now, but thankfully it is rarely necessary to fall back on this system."
  1840. msgstr "Was wir bisher gesehen haben reicht für die meisten Pakete aus, die als Erstellungssystem etwas anderes als @code{trivial-build-system} verwenden. Letzteres automatisiert gar nichts und überlässt es Ihnen, alles zur Erstellung manuell festzulegen. Das kann einen noch mehr beanspruchen und wir beschreiben es hier zurzeit nicht, aber glücklicherweise braucht man dieses System auch nur in seltenen Fällen."
  1841. #. type: Plain text
  1842. #: guix-git/doc/guix-cookbook.texi:1174
  1843. msgid "For the other build systems, such as ASDF, Emacs, Perl, Ruby and many more, the process is very similar to the GNU build system except for a few specialized arguments."
  1844. msgstr "Bei anderen Erstellungssystemen wie ASDF, Emacs, Perl, Ruby und vielen anderen ist der Prozess sehr ähnlich zum GNU-Erstellungssystem abgesehen von ein paar speziellen Argumenten."
  1845. #. type: Plain text
  1846. #: guix-git/doc/guix-cookbook.texi:1179
  1847. msgid "@xref{Build Systems,,, guix, GNU Guix Reference Manual}, for more information on build systems, or check the source code in the @samp{$GUIX_CHECKOUT/guix/build} and @samp{$GUIX_CHECKOUT/guix/build-system} directories."
  1848. msgstr "Siehe @ref{Erstellungssysteme,,, guix.de, Referenzhandbuch zu GNU Guix}, für mehr Informationen über Erstellungssysteme, oder den Quellcode in den Verzeichnissen @samp{$GUIX_CHECKOUT/guix/build} und @samp{$GUIX_CHECKOUT/guix/build-system}."
  1849. #. type: subsection
  1850. #: guix-git/doc/guix-cookbook.texi:1180 guix-git/doc/guix-cookbook.texi:1181
  1851. #, no-wrap
  1852. msgid "Programmable and automated package definition"
  1853. msgstr "Programmierbare und automatisierte Paketdefinition"
  1854. #. type: Plain text
  1855. #: guix-git/doc/guix-cookbook.texi:1185
  1856. msgid "We can't repeat it enough: having a full-fledged programming language at hand empowers us in ways that reach far beyond traditional package management."
  1857. msgstr "Wir können es nicht oft genug wiederholen: Eine Allzweck-Programmiersprache zur Hand zu haben macht Dinge möglich, die traditionelle Paketverwaltung weit übersteigen."
  1858. #. type: Plain text
  1859. #: guix-git/doc/guix-cookbook.texi:1187
  1860. msgid "Let's illustrate this with some awesome features of Guix!"
  1861. msgstr "Wir können uns das anhand Guix’ großartiger Funktionalitäten klarmachen!"
  1862. #. type: subsubsection
  1863. #: guix-git/doc/guix-cookbook.texi:1188 guix-git/doc/guix-cookbook.texi:1189
  1864. #, no-wrap
  1865. msgid "Recursive importers"
  1866. msgstr "Rekursive Importer"
  1867. #. type: Plain text
  1868. #: guix-git/doc/guix-cookbook.texi:1196
  1869. msgid "You might find some build systems good enough that there is little to do at all to write a package, to the point that it becomes repetitive and tedious after a while. A @emph{raison d'être} of computers is to replace human beings at those boring tasks. So let's tell Guix to do this for us and create the package definition of an R package from CRAN (the output is trimmed for conciseness):"
  1870. msgstr "Sie könnten feststellen, dass manche Erstellungssysteme gut genug sind und nichts weiter zu tun bleibt, um ein Paket zu verfassen. Das Paketeschreiben kann so monoton werden und man wird dessen bald überdrüssig. Eine Daseinsberechtigung von Rechnern ist, Menschen bei solch langweiligen Aufgaben zu ersetzen. Lasst uns also Guix die Sache erledigen: Wir lassen uns die Paketdefinition eines R-Pakets mit den Informationen aus CRAN holen (was zu anderen ausgegeben wird, haben wir im Folgenden weggelassen):"
  1871. #. type: example
  1872. #: guix-git/doc/guix-cookbook.texi:1199
  1873. #, no-wrap
  1874. msgid ""
  1875. "$ guix import cran --recursive walrus\n"
  1876. "\n"
  1877. msgstr ""
  1878. "$ guix import cran --recursive walrus\n"
  1879. "\n"
  1880. #. type: example
  1881. #: guix-git/doc/guix-cookbook.texi:1203
  1882. #, no-wrap
  1883. msgid ""
  1884. "(define-public r-mc2d\n"
  1885. " ; ...\n"
  1886. " (license gpl2+)))\n"
  1887. "\n"
  1888. msgstr ""
  1889. "(define-public r-mc2d\n"
  1890. " ; …\n"
  1891. " (license gpl2+)))\n"
  1892. "\n"
  1893. #. type: example
  1894. #: guix-git/doc/guix-cookbook.texi:1207
  1895. #, no-wrap
  1896. msgid ""
  1897. "(define-public r-jmvcore\n"
  1898. " ; ...\n"
  1899. " (license gpl2+)))\n"
  1900. "\n"
  1901. msgstr ""
  1902. "(define-public r-jmvcore\n"
  1903. " ; …\n"
  1904. " (license gpl2+)))\n"
  1905. "\n"
  1906. #. type: example
  1907. #: guix-git/doc/guix-cookbook.texi:1211
  1908. #, no-wrap
  1909. msgid ""
  1910. "(define-public r-wrs2\n"
  1911. " ; ...\n"
  1912. " (license gpl3)))\n"
  1913. "\n"
  1914. msgstr ""
  1915. "(define-public r-wrs2\n"
  1916. " ; …\n"
  1917. " (license gpl3)))\n"
  1918. "\n"
  1919. #. type: example
  1920. #: guix-git/doc/guix-cookbook.texi:1237
  1921. #, no-wrap
  1922. msgid ""
  1923. "(define-public r-walrus\n"
  1924. " (package\n"
  1925. " (name \"r-walrus\")\n"
  1926. " (version \"1.0.3\")\n"
  1927. " (source\n"
  1928. " (origin\n"
  1929. " (method url-fetch)\n"
  1930. " (uri (cran-uri \"walrus\" version))\n"
  1931. " (sha256\n"
  1932. " (base32\n"
  1933. " \"1nk2glcvy4hyksl5ipq2mz8jy4fss90hx6cq98m3w96kzjni6jjj\"))))\n"
  1934. " (build-system r-build-system)\n"
  1935. " (propagated-inputs\n"
  1936. " (list r-ggplot2 r-jmvcore r-r6 r-wrs2))\n"
  1937. " (home-page \"https://github.com/jamovi/walrus\")\n"
  1938. " (synopsis \"Robust Statistical Methods\")\n"
  1939. " (description\n"
  1940. " \"This package provides a toolbox of common robust statistical\n"
  1941. "tests, including robust descriptives, robust t-tests, and robust ANOVA.\n"
  1942. "It is also available as a module for 'jamovi' (see\n"
  1943. "<https://www.jamovi.org> for more information). Walrus is based on the\n"
  1944. "WRS2 package by Patrick Mair, which is in turn based on the scripts and\n"
  1945. "work of Rand Wilcox. These analyses are described in depth in the book\n"
  1946. "'Introduction to Robust Estimation & Hypothesis Testing'.\")\n"
  1947. " (license gpl3)))\n"
  1948. msgstr ""
  1949. "(define-public r-walrus\n"
  1950. " (package\n"
  1951. " (name \"r-walrus\")\n"
  1952. " (version \"1.0.3\")\n"
  1953. " (source\n"
  1954. " (origin\n"
  1955. " (method url-fetch)\n"
  1956. " (uri (cran-uri \"walrus\" version))\n"
  1957. " (sha256\n"
  1958. " (base32\n"
  1959. " \"1nk2glcvy4hyksl5ipq2mz8jy4fss90hx6cq98m3w96kzjni6jjj\"))))\n"
  1960. " (build-system r-build-system)\n"
  1961. " (propagated-inputs\n"
  1962. " (list r-ggplot2 r-jmvcore r-r6 r-wrs2))\n"
  1963. " (home-page \"https://github.com/jamovi/walrus\")\n"
  1964. " (synopsis \"Robust Statistical Methods\")\n"
  1965. " (description\n"
  1966. " \"This package provides a toolbox of common robust statistical\n"
  1967. "tests, including robust descriptives, robust t-tests, and robust ANOVA.\n"
  1968. "It is also available as a module for 'jamovi' (see\n"
  1969. "<https://www.jamovi.org> for more information). Walrus is based on the\n"
  1970. "WRS2 package by Patrick Mair, which is in turn based on the scripts and\n"
  1971. "work of Rand Wilcox. These analyses are described in depth in the book\n"
  1972. "'Introduction to Robust Estimation & Hypothesis Testing'.\")\n"
  1973. " (license gpl3)))\n"
  1974. #. type: Plain text
  1975. #: guix-git/doc/guix-cookbook.texi:1241
  1976. msgid "The recursive importer won't import packages for which Guix already has package definitions, except for the very first."
  1977. msgstr "Der rekursive Importer wird keine Pakete importieren, für die es in Guix bereits eine Paketdefinition gibt, außer dem Paket, mit dem er anfängt."
  1978. #. type: Plain text
  1979. #: guix-git/doc/guix-cookbook.texi:1246
  1980. msgid "Not all applications can be packaged this way, only those relying on a select number of supported systems. Read about the full list of importers in the guix import section of the manual (@pxref{Invoking guix import,,, guix, GNU Guix Reference Manual})."
  1981. msgstr "Nicht für alle Anwendungen können auf diesem Weg Pakete erzeugt werden, nur für jene, die auf ausgewählten Systemen aufbauen. Im Handbuch können Sie Informationen über die vollständige Liste aller Importer bekommen (siehe @ref{Aufruf von guix import,,, guix.de, Referenzhandbuch zu GNU Guix})."
  1982. #. type: subsubsection
  1983. #: guix-git/doc/guix-cookbook.texi:1247 guix-git/doc/guix-cookbook.texi:1248
  1984. #, no-wrap
  1985. msgid "Automatic update"
  1986. msgstr "Automatisch aktualisieren"
  1987. #. type: Plain text
  1988. #: guix-git/doc/guix-cookbook.texi:1252
  1989. msgid "Guix can be smart enough to check for updates on systems it knows. It can report outdated package definitions with"
  1990. msgstr "Guix ist klug genug, um verfügbare Aktualisierungen auf bekannten Systemen zu erkennen. Es kann über veraltete Paketdefinitionen Bericht erstatten, wenn man dies eingibt:"
  1991. #. type: example
  1992. #: guix-git/doc/guix-cookbook.texi:1255
  1993. #, no-wrap
  1994. msgid "$ guix refresh hello\n"
  1995. msgstr "$ guix refresh hello\n"
  1996. #. type: Plain text
  1997. #: guix-git/doc/guix-cookbook.texi:1260
  1998. msgid "In most cases, updating a package to a newer version requires little more than changing the version number and the checksum. Guix can do that automatically as well:"
  1999. msgstr "In den meisten Fällen muss man zur Aktualisierung auf eine neuere Version wenig mehr tun, als die Versionsnummer und die Prüfsumme ändern. Auch das kann mit Guix automatisiert werden:"
  2000. #. type: example
  2001. #: guix-git/doc/guix-cookbook.texi:1263
  2002. #, no-wrap
  2003. msgid "$ guix refresh hello --update\n"
  2004. msgstr "$ guix refresh hello --update\n"
  2005. #. type: subsubsection
  2006. #: guix-git/doc/guix-cookbook.texi:1265 guix-git/doc/guix-cookbook.texi:1266
  2007. #, no-wrap
  2008. msgid "Inheritance"
  2009. msgstr "Vererbung"
  2010. #. type: Plain text
  2011. #: guix-git/doc/guix-cookbook.texi:1270
  2012. msgid "If you've started browsing the existing package definitions, you might have noticed that a significant number of them have a @code{inherit} field:"
  2013. msgstr "Wenn Sie anfangen, bestehende Paketdefinitionen anzuschauen, könnte es Ihnen auffallen, dass viele von ihnen über ein @code{inherit}-Feld verfügen."
  2014. #. type: lisp
  2015. #: guix-git/doc/guix-cookbook.texi:1285
  2016. #, no-wrap
  2017. msgid ""
  2018. "(define-public adwaita-icon-theme\n"
  2019. " (package (inherit gnome-icon-theme)\n"
  2020. " (name \"adwaita-icon-theme\")\n"
  2021. " (version \"3.26.1\")\n"
  2022. " (source (origin\n"
  2023. " (method url-fetch)\n"
  2024. " (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n"
  2025. " (version-major+minor version) \"/\"\n"
  2026. " name \"-\" version \".tar.xz\"))\n"
  2027. " (sha256\n"
  2028. " (base32\n"
  2029. " \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n"
  2030. " (native-inputs (list `(,gtk+ \"bin\")))))\n"
  2031. msgstr ""
  2032. "(define-public adwaita-icon-theme\n"
  2033. " (package (inherit gnome-icon-theme)\n"
  2034. " (name \"adwaita-icon-theme\")\n"
  2035. " (version \"3.26.1\")\n"
  2036. " (source (origin\n"
  2037. " (method url-fetch)\n"
  2038. " (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n"
  2039. " (version-major+minor version) \"/\"\n"
  2040. " name \"-\" version \".tar.xz\"))\n"
  2041. " (sha256\n"
  2042. " (base32\n"
  2043. " \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n"
  2044. " (native-inputs (list `(,gtk+ \\\"bin\\\")))))\n"
  2045. #. type: Plain text
  2046. #: guix-git/doc/guix-cookbook.texi:1290
  2047. msgid "All unspecified fields are inherited from the parent package. This is very convenient to create alternative packages, for instance with different source, version or compilation options."
  2048. msgstr "Alle @emph{nicht} aufgeführten Felder werden vom Elternpaket geerbt. Das ist ziemlich praktisch, um alternative Pakete zu erzeugen, zum Beispiel solche mit geänderten Quellorten, Versionen oder Kompilierungsoptionen."
  2049. #. type: subsection
  2050. #: guix-git/doc/guix-cookbook.texi:1291 guix-git/doc/guix-cookbook.texi:1292
  2051. #, no-wrap
  2052. msgid "Getting help"
  2053. msgstr "Hilfe bekommen"
  2054. #. type: Plain text
  2055. #: guix-git/doc/guix-cookbook.texi:1298
  2056. msgid "Sadly, some applications can be tough to package. Sometimes they need a patch to work with the non-standard file system hierarchy enforced by the store. Sometimes the tests won't run properly. (They can be skipped but this is not recommended.) Other times the resulting package won't be reproducible."
  2057. msgstr "Leider ist es für manche Anwendungen schwierig, Pakete zu schreiben. Manchmal brauchen sie einen Patch, um mit vom Standard abweichenden Dateisystemhierarchien klarzukommen, wie sie der Store erforderlich macht. Manchmal funktionieren die Tests nicht richtig. (Man kann sie überspringen, aber man sollte nicht.) Ein andermal ist das sich ergebende Paket nicht reproduzierbar."
  2058. #. type: Plain text
  2059. #: guix-git/doc/guix-cookbook.texi:1301
  2060. msgid "Should you be stuck, unable to figure out how to fix any sort of packaging issue, don't hesitate to ask the community for help."
  2061. msgstr "Wenn Sie nicht weiterkommen, weil Sie nicht wissen, wie Sie ein Problem beim Paketschreiben lösen können, dann zögern Sie nicht, die Gemeinde um Hilfe zu bitten."
  2062. #. type: Plain text
  2063. #: guix-git/doc/guix-cookbook.texi:1303
  2064. msgid "See the @uref{https://www.gnu.org/software/guix/contact/, Guix homepage} for information on the mailing lists, IRC, etc."
  2065. msgstr "Siehe die @uref{https://www.gnu.org/software/guix/contact/, Homepage von Guix} für Informationen, welche Mailing-Listen, IRC-Kanäle etc.@: bereitstehen."
  2066. #. type: subsection
  2067. #: guix-git/doc/guix-cookbook.texi:1304 guix-git/doc/guix-cookbook.texi:1305
  2068. #, no-wrap
  2069. msgid "Conclusion"
  2070. msgstr "Schlusswort"
  2071. #. type: Plain text
  2072. #: guix-git/doc/guix-cookbook.texi:1311
  2073. msgid "This tutorial was a showcase of the sophisticated package management that Guix boasts. At this point we have mostly restricted this introduction to the @code{gnu-build-system} which is a core abstraction layer on which more advanced abstractions are based."
  2074. msgstr "Diese Anleitung hat einen Überblick über die fortgeschrittene Paketverwaltung gegeben, die Guix vorweist. Zu diesem Zeitpunkt haben wir diese Einführung größtenteils auf das @code{gnu-build-system} eingeschränkt, was eine zentrale Abstraktionsschicht darstellt, auf der weitere Abstraktionen aufbauen."
  2075. #. type: Plain text
  2076. #: guix-git/doc/guix-cookbook.texi:1316
  2077. msgid "Where do we go from here? Next we ought to dissect the innards of the build system by removing all abstractions, using the @code{trivial-build-system}: this should give us a thorough understanding of the process before investigating some more advanced packaging techniques and edge cases."
  2078. msgstr "Wie geht es nun weiter? Als Nächstes müssten wir das Erstellungssystem in seine Bestandteile zerlegen, um einen Einblick ganz ohne Abstraktionen zu bekommen. Das bedeutet, wir müssten das @code{trivial-build-system} analysieren. Dadurch sollte ein gründliches Verständnis des Prozesses vermittelt werden, bevor wir höher entwickelte Paketierungstechniken und Randfälle untersuchen."
  2079. #. type: Plain text
  2080. #: guix-git/doc/guix-cookbook.texi:1319
  2081. msgid "Other features worth exploring are the interactive editing and debugging capabilities of Guix provided by the Guile REPL@."
  2082. msgstr "Andere Funktionalitäten, die es wert sind, erkundet zu werden, sind Guix’ Funktionalitäten zum interaktiven Editieren und zur Fehlersuche, die die REPL von Guile darbietet."
  2083. #. type: Plain text
  2084. #: guix-git/doc/guix-cookbook.texi:1324
  2085. msgid "Those fancy features are completely optional and can wait; now is a good time to take a well-deserved break. With what we've introduced here you should be well armed to package lots of programs. You can get started right away and hopefully we will see your contributions soon!"
  2086. msgstr "Diese eindrucksvollen Funktionalitäten sind völlig optional und können warten; jetzt ist die Zeit für eine wohlverdiente Pause. Mit dem Wissen, in das wir hier eingeführt haben, sollten Sie für das Paketieren vieler Programme gut gerüstet sein. Sie können gleich anfangen und hoffentlich bekommen wir bald Ihre Beiträge zu sehen!"
  2087. #. type: subsection
  2088. #: guix-git/doc/guix-cookbook.texi:1325 guix-git/doc/guix-cookbook.texi:1326
  2089. #, no-wrap
  2090. msgid "References"
  2091. msgstr "Literaturverzeichnis"
  2092. #. type: itemize
  2093. #: guix-git/doc/guix-cookbook.texi:1331
  2094. msgid "The @uref{https://www.gnu.org/software/guix/manual/en/html_node/Defining-Packages.html, package reference in the manual}"
  2095. msgstr "Die @uref{https://guix.gnu.org/manual/de/html_node/Pakete-definieren.html, Paketreferenz im Handbuch}"
  2096. #. type: itemize
  2097. #: guix-git/doc/guix-cookbook.texi:1334
  2098. msgid "@uref{https://gitlab.com/pjotrp/guix-notes/blob/master/HACKING.org, Pjotr’s hacking guide to GNU Guix}"
  2099. msgstr "@uref{https://gitlab.com/pjotrp/guix-notes/blob/master/HACKING.org, Pjotr’s Hacking-Leitfaden für GNU Guix}"
  2100. #. type: itemize
  2101. #: guix-git/doc/guix-cookbook.texi:1337
  2102. msgid "@uref{https://www.gnu.org/software/guix/guix-ghm-andreas-20130823.pdf, ``GNU Guix: Package without a scheme!''}, by Andreas Enge"
  2103. msgstr "@uref{https://www.gnu.org/software/guix/guix-ghm-andreas-20130823.pdf, „GNU Guix: Package without a scheme!“} von Andreas Enge"
  2104. #. type: Plain text
  2105. #: guix-git/doc/guix-cookbook.texi:1346
  2106. msgid "Guix offers a flexible language for declaratively configuring your Guix System. This flexibility can at times be overwhelming. The purpose of this chapter is to demonstrate some advanced configuration concepts."
  2107. msgstr "Guix stellt eine flexible Sprache bereit, um Ihr „Guix System“ auf deklarative Weise zu konfigurieren. Diese Flexibilität kann einen manchmal überwältigen. Dieses Kapitel hat den Zweck, einige fortgeschrittene Konfigurationskonzepte vorzuzeigen."
  2108. #. type: Plain text
  2109. #: guix-git/doc/guix-cookbook.texi:1349
  2110. msgid "@pxref{System Configuration,,, guix, GNU Guix Reference Manual} for a complete reference."
  2111. msgstr "Siehe @ref{Systemkonfiguration,,, guix.de, Referenzhandbuch zu GNU Guix} für eine vollständige Referenz."
  2112. #. type: section
  2113. #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1645
  2114. #: guix-git/doc/guix-cookbook.texi:1646
  2115. #, no-wrap
  2116. msgid "Guix System Image API"
  2117. msgstr "Die Image-Schnittstelle von Guix System"
  2118. #. type: menuentry
  2119. #: guix-git/doc/guix-cookbook.texi:1360
  2120. msgid "Customizing images to target specific platforms."
  2121. msgstr "Abbilder für bestimmte Plattformen anpassen."
  2122. #. type: section
  2123. #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1856
  2124. #: guix-git/doc/guix-cookbook.texi:1857
  2125. #, no-wrap
  2126. msgid "Connecting to Wireguard VPN"
  2127. msgstr "Verbinden mit Wireguard VPN"
  2128. #. type: menuentry
  2129. #: guix-git/doc/guix-cookbook.texi:1360
  2130. msgid "Connecting to a Wireguard VPN."
  2131. msgstr "Wie man sich mit einem Wireguard-VPN verbindet."
  2132. #. type: section
  2133. #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1933
  2134. #: guix-git/doc/guix-cookbook.texi:1934
  2135. #, no-wrap
  2136. msgid "Customizing a Window Manager"
  2137. msgstr "Fensterverwalter (Window Manager) anpassen"
  2138. #. type: menuentry
  2139. #: guix-git/doc/guix-cookbook.texi:1360
  2140. msgid "Handle customization of a Window manager on Guix System."
  2141. msgstr "Wie man einen Fensterverwalter auf Guix System anpassen kann."
  2142. #. type: section
  2143. #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2024
  2144. #: guix-git/doc/guix-cookbook.texi:2025
  2145. #, no-wrap
  2146. msgid "Running Guix on a Linode Server"
  2147. msgstr "Guix auf einem Linode-Server nutzen"
  2148. #. type: section
  2149. #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2267
  2150. #: guix-git/doc/guix-cookbook.texi:2268
  2151. #, no-wrap
  2152. msgid "Setting up a bind mount"
  2153. msgstr "Bind-Mounts anlegen"
  2154. #. type: menuentry
  2155. #: guix-git/doc/guix-cookbook.texi:1360
  2156. msgid "Setting up a bind mount in the file-systems definition."
  2157. msgstr "Bind-Mounts als Dateisystemdefinition einrichten."
  2158. #. type: section
  2159. #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2316
  2160. #: guix-git/doc/guix-cookbook.texi:2317
  2161. #, no-wrap
  2162. msgid "Getting substitutes from Tor"
  2163. msgstr "Substitute über Tor beziehen"
  2164. #. type: menuentry
  2165. #: guix-git/doc/guix-cookbook.texi:1360
  2166. msgid "Configuring Guix daemon to get substitutes through Tor."
  2167. msgstr "Den Guix-Daemon konfigurieren, damit er Substitute über Tor lädt."
  2168. #. type: section
  2169. #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2378
  2170. #: guix-git/doc/guix-cookbook.texi:2379
  2171. #, no-wrap
  2172. msgid "Setting up NGINX with Lua"
  2173. msgstr "NGINX mit Lua konfigurieren"
  2174. #. type: menuentry
  2175. #: guix-git/doc/guix-cookbook.texi:1360
  2176. msgid "Configuring NGINX web-server to load Lua modules."
  2177. msgstr "Den NGINX-Web-Server so einrichten, dass Lua-Module geladen werden."
  2178. #. type: Plain text
  2179. #: guix-git/doc/guix-cookbook.texi:1372
  2180. msgid "While the Guix manual explains auto-login one user to @emph{all} TTYs ( @pxref{auto-login to TTY,,, guix, GNU Guix Reference Manual}), some might prefer a situation, in which one user is logged into one TTY with the other TTYs either configured to login different users or no one at all. Note that one can auto-login one user to any TTY, but it is usually advisable to avoid @code{tty1}, which, by default, is used to log warnings and errors."
  2181. msgstr "Im Guix-Handbuch wird erklärt, wie man ein Benutzerkonto automatisch auf @emph{allen} TTYs anmelden lassen kann (@pxref{auto-login to TTY,,, guix.de, Referenzhandbuch zu GNU Guix}), aber vielleicht wäre es Ihnen lieber, ein Benutzerkonto an genau einem TTY anzumelden und die anderen TTYs so zu konfigurieren, dass entweder andere Benutzer oder gar niemand angemeldet wird. Beachten Sie, dass man auf jedem TTY automatisch jemanden anmelden kann, aber meistens will man @code{tty1} in Ruhe lassen, weil dorthin nach Voreinstellung Warnungs- und Fehlerprotokolle ausgegeben werden."
  2182. #. type: Plain text
  2183. #: guix-git/doc/guix-cookbook.texi:1374
  2184. msgid "Here is how one might set up auto login for one user to one tty:"
  2185. msgstr "Um eine Benutzerin auf einem einzelnen TTY automatisch anzumelden, schreibt man:"
  2186. #. type: lisp
  2187. #: guix-git/doc/guix-cookbook.texi:1382
  2188. #, no-wrap
  2189. msgid ""
  2190. "(define (auto-login-to-tty config tty user)\n"
  2191. " (if (string=? tty (mingetty-configuration-tty config))\n"
  2192. " (mingetty-configuration\n"
  2193. " (inherit config)\n"
  2194. " (auto-login user))\n"
  2195. " config))\n"
  2196. "\n"
  2197. msgstr ""
  2198. "(define (auto-login-to-tty config tty user)\n"
  2199. " (if (string=? tty (mingetty-configuration-tty config))\n"
  2200. " (mingetty-configuration\n"
  2201. " (inherit config)\n"
  2202. " (auto-login user))\n"
  2203. " config))\n"
  2204. "\n"
  2205. #. type: lisp
  2206. #: guix-git/doc/guix-cookbook.texi:1389
  2207. #, no-wrap
  2208. msgid ""
  2209. "(define %my-services\n"
  2210. " (modify-services %base-services\n"
  2211. " ;; @dots{}\n"
  2212. " (mingetty-service-type config =>\n"
  2213. " (auto-login-to-tty\n"
  2214. " config \"tty3\" \"alice\"))))\n"
  2215. "\n"
  2216. msgstr ""
  2217. "(define %my-services\n"
  2218. " (modify-services %base-services\n"
  2219. " ;; …\n"
  2220. " (mingetty-service-type config =>\n"
  2221. " (auto-login-to-tty\n"
  2222. " config \"tty3\" \"alice\"))))\n"
  2223. "\n"
  2224. #. type: lisp
  2225. #: guix-git/doc/guix-cookbook.texi:1393
  2226. #, no-wrap
  2227. msgid ""
  2228. "(operating-system\n"
  2229. " ;; @dots{}\n"
  2230. " (services %my-services))\n"
  2231. msgstr ""
  2232. "(operating-system\n"
  2233. " ;; …\n"
  2234. " (services %my-services))\n"
  2235. #. type: Plain text
  2236. #: guix-git/doc/guix-cookbook.texi:1398
  2237. msgid "One could also @code{compose} (@pxref{Higher-Order Functions,,, guile, The Guile Reference Manual}) @code{auto-login-to-tty} to login multiple users to multiple ttys."
  2238. msgstr "Mit Hilfe von @code{compose} (siehe @ref{Higher-Order Functions,,, guile, das Referenzhandbuch zu GNU Guile}) kann man etwas wie @code{auto-login-to-tty} mehrfach angeben, um mehrere Nutzerkonten auf verschiedenen TTYs anzumelden."
  2239. #. type: Plain text
  2240. #: guix-git/doc/guix-cookbook.texi:1405
  2241. msgid "Finally, here is a note of caution. Setting up auto login to a TTY, means that anyone can turn on your computer and run commands as your regular user. However, if you have an encrypted root partition, and thus already need to enter a passphrase when the system boots, auto-login might be a convenient option."
  2242. msgstr "Zum Schluss aber noch eine Warnung. Wenn Sie jemanden auf einem TTY automatisch anmelden lassen, kann jeder einfach Ihren Rechner anschalten und dann Befehle in deren Namen ausführen. Haben Sie Ihr Wurzeldateisystem auf einer verschlüsselten Partition, müsste man dafür erst einmal das Passwort eingeben, wenn das System startet. Dann wäre automatisches Anmelden vielleicht bequem."
  2243. #. type: Plain text
  2244. #: guix-git/doc/guix-cookbook.texi:1417
  2245. msgid "Guix is, at its core, a source based distribution with substitutes (@pxref{Substitutes,,, guix, GNU Guix Reference Manual}), and as such building packages from their source code is an expected part of regular package installations and upgrades. Given this starting point, it makes sense that efforts are made to reduce the amount of time spent compiling packages, and recent changes and upgrades to the building and distribution of substitutes continues to be a topic of discussion within Guix."
  2246. msgstr "Im Kern ist Guix eine quellcodebasierte Distribution mit Substituten (siehe @ref{Substitute,,, guix.de, Referenzhandbuch zu GNU Guix}), daher ist das Erstellen von Paketen aus ihrem Quellcode heraus genauso vorgesehen wie die normale Installation und Aktualisierung von Paketen. Von diesem Standpunkt ist es sinnvoll, zu versuchen, den Zeitaufwand für das Kompilieren von Paketen zu senken, und kürzliche Neuerungen sowie Verbesserungen beim Erstellen und Verteilen von Substituten bleiben ein Diskussionsthema innerhalb von Guix."
  2247. #. type: Plain text
  2248. #: guix-git/doc/guix-cookbook.texi:1423
  2249. msgid "The kernel, while not requiring an overabundance of RAM to build, does take a rather long time on an average machine. The official kernel configuration, as is the case with many GNU/Linux distributions, errs on the side of inclusiveness, and this is really what causes the build to take such a long time when the kernel is built from source."
  2250. msgstr "Der Kernel braucht zwar keine übermäßigen Mengen an Arbeitsspeicher beim Erstellen, jedoch jede Menge Zeit auf einer durchschnittlichen Maschine. Die offizielle Konfiguration des Kernels umfasst, wie bei anderen GNU/Linux-Distributionen auch, besser zu viel als zu wenig. Das ist der eigentliche Grund, warum seine Erstellung so lange dauert, wenn man den Kernel aus dem Quellcode heraus erstellt."
  2251. #. type: Plain text
  2252. #: guix-git/doc/guix-cookbook.texi:1428
  2253. msgid "The Linux kernel, however, can also just be described as a regular old package, and as such can be customized just like any other package. The procedure is a little bit different, although this is primarily due to the nature of how the package definition is written."
  2254. msgstr "Man kann den Linux-Kernel jedoch auch als ganz normales Paket beschreiben, das genau wie jedes andere Paket angepasst werden kann. Der Vorgang ist ein klein wenig anders, aber das liegt hauptsächlich an der Art, wie die Paketdefinition geschrieben ist."
  2255. #. type: Plain text
  2256. #: guix-git/doc/guix-cookbook.texi:1431
  2257. msgid "The @code{linux-libre} kernel package definition is actually a procedure which creates a package."
  2258. msgstr "Die @code{linux-libre}-Kernelpaketdefinition ist tatsächlich eine Prozedur, die ein Paket liefert."
  2259. #. type: lisp
  2260. #: guix-git/doc/guix-cookbook.texi:1442
  2261. #, no-wrap
  2262. msgid ""
  2263. "(define* (make-linux-libre* version gnu-revision source supported-systems\n"
  2264. " #:key\n"
  2265. " (extra-version #f)\n"
  2266. " ;; A function that takes an arch and a variant.\n"
  2267. " ;; See kernel-config for an example.\n"
  2268. " (configuration-file #f)\n"
  2269. " (defconfig \"defconfig\")\n"
  2270. " (extra-options %default-extra-linux-options))\n"
  2271. " ...)\n"
  2272. msgstr ""
  2273. "(define* (make-linux-libre* version gnu-revision source supported-systems\n"
  2274. " #:key\n"
  2275. " (extra-version #f)\n"
  2276. " ;; A function that takes an arch and a variant.\n"
  2277. " ;; See kernel-config for an example.\n"
  2278. " (configuration-file #f)\n"
  2279. " (defconfig \"defconfig\")\n"
  2280. " (extra-options %default-extra-linux-options))\n"
  2281. " …)\n"
  2282. #. type: Plain text
  2283. #: guix-git/doc/guix-cookbook.texi:1446
  2284. msgid "The current @code{linux-libre} package is for the 5.15.x series, and is declared like this:"
  2285. msgstr "Das momentane @code{linux-libre}-Paket zielt ab auf die 5.15.x-Serie und ist wie folgt deklariert:"
  2286. #. type: lisp
  2287. #: guix-git/doc/guix-cookbook.texi:1454
  2288. #, no-wrap
  2289. msgid ""
  2290. "(define-public linux-libre-5.15\n"
  2291. " (make-linux-libre* linux-libre-5.15-version\n"
  2292. " linux-libre-5.15-gnu-revision\n"
  2293. " linux-libre-5.15-source\n"
  2294. " '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\" \"riscv64-linux\")\n"
  2295. " #:configuration-file kernel-config))\n"
  2296. msgstr ""
  2297. "(define-public linux-libre-5.15\n"
  2298. " (make-linux-libre* linux-libre-5.15-version\n"
  2299. " linux-libre-5.15-gnu-revision\n"
  2300. " linux-libre-5.15-source\n"
  2301. " '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\" \"riscv64-linux\")\n"
  2302. " #:configuration-file kernel-config))\n"
  2303. #. type: Plain text
  2304. #: guix-git/doc/guix-cookbook.texi:1461
  2305. msgid "Any keys which are not assigned values inherit their default value from the @code{make-linux-libre} definition. When comparing the two snippets above, notice the code comment that refers to @code{#:configuration-file}. Because of this, it is not actually easy to include a custom kernel configuration from the definition, but don't worry, there are other ways to work with what we do have."
  2306. msgstr "Alle Schlüssel, denen kein Wert zugewiesen wird, erben ihren Vorgabewert von der Definition von @code{make-linux-libre}. Wenn Sie die beiden Schnipsel oben vergleichen, ist anzumerken, dass sich der Code-Kommentar in ersterem auf @code{#:configuration-file} bezieht. Deswegen ist es nicht so leicht, aus der Definition heraus eine eigene Kernel-Konfiguration anhand der Definition zu schreiben, aber keine Sorge, es gibt andere Möglichkeiten, um mit dem zu arbeiten, was uns gegeben wurde."
  2307. #. type: Plain text
  2308. #: guix-git/doc/guix-cookbook.texi:1467
  2309. msgid "There are two ways to create a kernel with a custom kernel configuration. The first is to provide a standard @file{.config} file during the build process by including an actual @file{.config} file as a native input to our custom kernel. The following is a snippet from the custom @code{'configure} phase of the @code{make-linux-libre} package definition:"
  2310. msgstr "Es gibt zwei Möglichkeiten, einen Kernel mit eigener Kernel-Konfiguration zu erzeugen. Die erste ist, eine normale @file{.config}-Datei als native Eingabe zu unserem angepassten Kernel hinzuzufügen. Im Folgenden sehen Sie ein Schnipsel aus der angepassten @code{'configure}-Phase der @code{make-linux-libre}-Paketdefinition:"
  2311. #. type: lisp
  2312. #: guix-git/doc/guix-cookbook.texi:1471
  2313. #, no-wrap
  2314. msgid ""
  2315. "(let ((build (assoc-ref %standard-phases 'build))\n"
  2316. " (config (assoc-ref (or native-inputs inputs) \"kconfig\")))\n"
  2317. "\n"
  2318. msgstr ""
  2319. "(let ((build (assoc-ref %standard-phases 'build))\n"
  2320. " (config (assoc-ref (or native-inputs inputs) \"kconfig\")))\n"
  2321. "\n"
  2322. #. type: lisp
  2323. #: guix-git/doc/guix-cookbook.texi:1479
  2324. #, no-wrap
  2325. msgid ""
  2326. " ;; Use a custom kernel configuration file or a default\n"
  2327. " ;; configuration file.\n"
  2328. " (if config\n"
  2329. " (begin\n"
  2330. " (copy-file config \".config\")\n"
  2331. " (chmod \".config\" #o666))\n"
  2332. " (invoke \"make\" ,defconfig)))\n"
  2333. msgstr ""
  2334. " ;; Use a custom kernel configuration file or a default\n"
  2335. " ;; configuration file.\n"
  2336. " (if config\n"
  2337. " (begin\n"
  2338. " (copy-file config \".config\")\n"
  2339. " (chmod \".config\" #o666))\n"
  2340. " (invoke \"make\" ,defconfig)))\n"
  2341. #. type: Plain text
  2342. #: guix-git/doc/guix-cookbook.texi:1484
  2343. msgid "Below is a sample kernel package. The @code{linux-libre} package is nothing special and can be inherited from and have its fields overridden like any other package:"
  2344. msgstr "Nun folgt ein Beispiel-Kernel-Paket. Das @code{linux-libre}-Paket ist nicht anders als andere Pakete und man kann von ihm erben und seine Felder ersetzen wie bei jedem anderen Paket."
  2345. #. type: lisp
  2346. #: guix-git/doc/guix-cookbook.texi:1493
  2347. #, no-wrap
  2348. msgid ""
  2349. "(define-public linux-libre/E2140\n"
  2350. " (package\n"
  2351. " (inherit linux-libre)\n"
  2352. " (native-inputs\n"
  2353. " `((\"kconfig\" ,(local-file \"E2140.config\"))\n"
  2354. " ,@@(alist-delete \"kconfig\"\n"
  2355. " (package-native-inputs linux-libre))))))\n"
  2356. msgstr ""
  2357. "(define-public linux-libre/E2140\n"
  2358. " (package\n"
  2359. " (inherit linux-libre)\n"
  2360. " (native-inputs\n"
  2361. " `((\"kconfig\" ,(local-file \"E2140.config\"))\n"
  2362. " ,@@(alist-delete \"kconfig\"\n"
  2363. " (package-native-inputs linux-libre))))))\n"
  2364. #. type: Plain text
  2365. #: guix-git/doc/guix-cookbook.texi:1500
  2366. msgid "In the same directory as the file defining @code{linux-libre-E2140} is a file named @file{E2140.config}, which is an actual kernel configuration file. The @code{defconfig} keyword of @code{make-linux-libre} is left blank here, so the only kernel configuration in the package is the one which was included in the @code{native-inputs} field."
  2367. msgstr "Im selben Verzeichnis wie die Datei, die @code{linux-libre-E2140} definiert, befindet sich noch eine Datei namens @file{E2140.config}, bei der es sich um eine richtige Kernel-Konfigurationsdatei handelt. Das Schlüsselwort @code{defconfig} von @code{make-linux-libre} wird hier leer gelassen, so dass die einzige Kernel-Konfiguration im Paket die im @code{native-inputs}-Feld ist."
  2368. #. type: Plain text
  2369. #: guix-git/doc/guix-cookbook.texi:1505
  2370. msgid "The second way to create a custom kernel is to pass a new value to the @code{extra-options} keyword of the @code{make-linux-libre} procedure. The @code{extra-options} keyword works with another function defined right below it:"
  2371. msgstr "Die zweite Möglichkeit, einen eigenen Kernel zu erzeugen, ist, einen neuen Wert an das @code{extra-options}-Schlüsselwort der @code{make-linux-libre}-Prozedur zu übergeben. Das @code{extra-options}-Schlüsselwort wird zusammen mit einer anderen, direkt darunter definierten Funktion benutzt:"
  2372. #. type: lisp
  2373. #: guix-git/doc/guix-cookbook.texi:1521
  2374. #, no-wrap
  2375. msgid ""
  2376. "(define %default-extra-linux-options\n"
  2377. " `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html\n"
  2378. " (\"CONFIG_DEVPTS_MULTIPLE_INSTANCES\" . #true)\n"
  2379. " ;; Modules required for initrd:\n"
  2380. " (\"CONFIG_NET_9P\" . m)\n"
  2381. " (\"CONFIG_NET_9P_VIRTIO\" . m)\n"
  2382. " (\"CONFIG_VIRTIO_BLK\" . m)\n"
  2383. " (\"CONFIG_VIRTIO_NET\" . m)\n"
  2384. " (\"CONFIG_VIRTIO_PCI\" . m)\n"
  2385. " (\"CONFIG_VIRTIO_BALLOON\" . m)\n"
  2386. " (\"CONFIG_VIRTIO_MMIO\" . m)\n"
  2387. " (\"CONFIG_FUSE_FS\" . m)\n"
  2388. " (\"CONFIG_CIFS\" . m)\n"
  2389. " (\"CONFIG_9P_FS\" . m)))\n"
  2390. "\n"
  2391. msgstr ""
  2392. "(define %default-extra-linux-options\n"
  2393. " `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html\n"
  2394. " (\"CONFIG_DEVPTS_MULTIPLE_INSTANCES\" . #true)\n"
  2395. " ;; Modules required for initrd:\n"
  2396. " (\"CONFIG_NET_9P\" . m)\n"
  2397. " (\"CONFIG_NET_9P_VIRTIO\" . m)\n"
  2398. " (\"CONFIG_VIRTIO_BLK\" . m)\n"
  2399. " (\"CONFIG_VIRTIO_NET\" . m)\n"
  2400. " (\"CONFIG_VIRTIO_PCI\" . m)\n"
  2401. " (\"CONFIG_VIRTIO_BALLOON\" . m)\n"
  2402. " (\"CONFIG_VIRTIO_MMIO\" . m)\n"
  2403. " (\"CONFIG_FUSE_FS\" . m)\n"
  2404. " (\"CONFIG_CIFS\" . m)\n"
  2405. " (\"CONFIG_9P_FS\" . m)))\n"
  2406. "\n"
  2407. #. type: lisp
  2408. #: guix-git/doc/guix-cookbook.texi:1532
  2409. #, no-wrap
  2410. msgid ""
  2411. "(define (config->string options)\n"
  2412. " (string-join (map (match-lambda\n"
  2413. " ((option . 'm)\n"
  2414. " (string-append option \"=m\"))\n"
  2415. " ((option . #true)\n"
  2416. " (string-append option \"=y\"))\n"
  2417. " ((option . #false)\n"
  2418. " (string-append option \"=n\")))\n"
  2419. " options)\n"
  2420. " \"\\n\"))\n"
  2421. msgstr ""
  2422. "(define (config->string options)\n"
  2423. " (string-join (map (match-lambda\n"
  2424. " ((option . 'm)\n"
  2425. " (string-append option \"=m\"))\n"
  2426. " ((option . #true)\n"
  2427. " (string-append option \"=y\"))\n"
  2428. " ((option . #false)\n"
  2429. " (string-append option \"=n\")))\n"
  2430. " options)\n"
  2431. " \"\\n\"))\n"
  2432. #. type: Plain text
  2433. #: guix-git/doc/guix-cookbook.texi:1535
  2434. msgid "And in the custom configure script from the `make-linux-libre` package:"
  2435. msgstr "Und im eigenen configure-Skript des „make-linux-libre“-Pakets:"
  2436. #. type: lisp
  2437. #: guix-git/doc/guix-cookbook.texi:1543
  2438. #, no-wrap
  2439. msgid ""
  2440. ";; Appending works even when the option wasn't in the\n"
  2441. ";; file. The last one prevails if duplicated.\n"
  2442. "(let ((port (open-file \".config\" \"a\"))\n"
  2443. " (extra-configuration ,(config->string extra-options)))\n"
  2444. " (display extra-configuration port)\n"
  2445. " (close-port port))\n"
  2446. "\n"
  2447. msgstr ""
  2448. ";; Appending works even when the option wasn't in the\n"
  2449. ";; file. The last one prevails if duplicated.\n"
  2450. "(let ((port (open-file \".config\" \"a\"))\n"
  2451. " (extra-configuration ,(config->string extra-options)))\n"
  2452. " (display extra-configuration port)\n"
  2453. " (close-port port))\n"
  2454. "\n"
  2455. #. type: lisp
  2456. #: guix-git/doc/guix-cookbook.texi:1545
  2457. #, no-wrap
  2458. msgid "(invoke \"make\" \"oldconfig\")\n"
  2459. msgstr "(invoke \"make\" \"oldconfig\")\n"
  2460. #. type: Plain text
  2461. #: guix-git/doc/guix-cookbook.texi:1550
  2462. msgid "So by not providing a configuration-file the @file{.config} starts blank, and then we write into it the collection of flags that we want. Here's another custom kernel:"
  2463. msgstr "Indem wir also kein „configuration-file“ mitgeben, ist @file{.config} anfangs leer und danach schreiben wir dort die Sammlung der gewünschten Optionen („Flags“) hinein. Hier ist noch ein eigener Kernel:"
  2464. #. type: lisp
  2465. #: guix-git/doc/guix-cookbook.texi:1558
  2466. #, no-wrap
  2467. msgid ""
  2468. "(define %macbook41-full-config\n"
  2469. " (append %macbook41-config-options\n"
  2470. " %file-systems\n"
  2471. " %efi-support\n"
  2472. " %emulation\n"
  2473. " (@@@@ (gnu packages linux) %default-extra-linux-options)))\n"
  2474. "\n"
  2475. msgstr ""
  2476. "(define %macbook41-full-config\n"
  2477. " (append %macbook41-config-options\n"
  2478. " %file-systems\n"
  2479. " %efi-support\n"
  2480. " %emulation\n"
  2481. " (@@@@ (gnu packages linux) %default-extra-linux-options)))\n"
  2482. "\n"
  2483. #. type: lisp
  2484. #: guix-git/doc/guix-cookbook.texi:1569
  2485. #, no-wrap
  2486. msgid ""
  2487. "(define-public linux-libre-macbook41\n"
  2488. " ;; XXX: Access the internal 'make-linux-libre*' procedure, which is\n"
  2489. " ;; private and unexported, and is liable to change in the future.\n"
  2490. " ((@@@@ (gnu packages linux) make-linux-libre*)\n"
  2491. " (@@@@ (gnu packages linux) linux-libre-version)\n"
  2492. " (@@@@ (gnu packages linux) linux-libre-gnu-revision)\n"
  2493. " (@@@@ (gnu packages linux) linux-libre-source)\n"
  2494. " '(\"x86_64-linux\")\n"
  2495. " #:extra-version \"macbook41\"\n"
  2496. " #:extra-options %macbook41-config-options))\n"
  2497. msgstr ""
  2498. "(define-public linux-libre-macbook41\n"
  2499. " ;; XXX: Auf die interne 'make-linux-libre*'-Prozedur zugreifen, welche privat\n"
  2500. " ;; ist und nicht exportiert, desweiteren kann sie sich in Zukunft ändern.\n"
  2501. " ((@@@@ (gnu packages linux) make-linux-libre*)\n"
  2502. " (@@@@ (gnu packages linux) linux-libre-version)\n"
  2503. " (@@@@ (gnu packages linux) linux-libre-gnu-revision)\n"
  2504. " (@@@@ (gnu packages linux) linux-libre-source)\n"
  2505. " '(\"x86_64-linux\")\n"
  2506. " #:extra-version \"macbook41\"\n"
  2507. " #:extra-options %macbook41-config-options))\n"
  2508. #. type: Plain text
  2509. #: guix-git/doc/guix-cookbook.texi:1576
  2510. msgid "In the above example @code{%file-systems} is a collection of flags enabling different file system support, @code{%efi-support} enables EFI support and @code{%emulation} enables a x86_64-linux machine to act in 32-bit mode also. @code{%default-extra-linux-options} are the ones quoted above, which had to be added in since they were replaced in the @code{extra-options} keyword."
  2511. msgstr "Im obigen Beispiel ist @code{%file-systems} eine Sammlung solcher „Flags“, mit denen Unterstützung für verschiedene Dateisysteme aktiviert wird, @code{%efi-support} aktiviert Unterstützung für EFI und @code{%emulation} ermöglicht es einer x86_64-linux-Maschine, auch im 32-Bit-Modus zu arbeiten. Die @code{%default-extra-linux-options} sind die oben zitierten, die wieder hinzugefügt werden mussten, weil sie durch das @code{extra-options}-Schlüsselwort ersetzt worden waren."
  2512. #. type: Plain text
  2513. #: guix-git/doc/guix-cookbook.texi:1585
  2514. msgid "This all sounds like it should be doable, but how does one even know which modules are required for a particular system? Two places that can be helpful in trying to answer this question is the @uref{https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel, Gentoo Handbook} and the @uref{https://www.kernel.org/doc/html/latest/admin-guide/README.html?highlight=localmodconfig, documentation from the kernel itself}. From the kernel documentation, it seems that @code{make localmodconfig} is the command we want."
  2515. msgstr "All das klingt machbar, aber woher weiß man überhaupt, welche Module für ein bestimmtes System nötig sind? Es gibt zwei hilfreiche Anlaufstellen, zum einen das @uref{https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel, Gentoo-Handbuch}, zum anderen die @uref{https://www.kernel.org/doc/html/latest/admin-guide/README.html?highlight=localmodconfig, Dokumentation des Kernels selbst}. Aus der Kernel-Dokumentation erfahren wir, dass @code{make localmodconfig} der Befehl sein könnte, den wir wollen."
  2516. #. type: Plain text
  2517. #: guix-git/doc/guix-cookbook.texi:1588
  2518. msgid "In order to actually run @code{make localmodconfig} we first need to get and unpack the kernel source code:"
  2519. msgstr "Um @code{make localmodconfig} auch tatsächlich ausführen zu können, müssen wir zunächst den Quellcode des Kernels holen und entpacken:"
  2520. #. type: example
  2521. #: guix-git/doc/guix-cookbook.texi:1591
  2522. #, no-wrap
  2523. msgid "tar xf $(guix build linux-libre --source)\n"
  2524. msgstr "tar xf $(guix build linux-libre --source)\n"
  2525. #. type: Plain text
  2526. #: guix-git/doc/guix-cookbook.texi:1598
  2527. msgid "Once inside the directory containing the source code run @code{touch .config} to create an initial, empty @file{.config} to start with. @code{make localmodconfig} works by seeing what you already have in @file{.config} and letting you know what you're missing. If the file is blank then you're missing everything. The next step is to run:"
  2528. msgstr "Sobald wir im Verzeichnis mit dem Quellcode sind, führen Sie @code{touch .config} aus, um mit einer ersten, leeren @file{.config} anzufangen. @code{make localmodconfig} funktioniert so, dass angeschaut wird, was bereits in Ihrer @file{.config} steht, und Ihnen mitgeteilt wird, was Ihnen noch fehlt. Wenn die Datei leer bleibt, fehlt eben alles. Der nächste Schritt ist, das hier auszuführen:"
  2529. #. type: example
  2530. #: guix-git/doc/guix-cookbook.texi:1601
  2531. #, no-wrap
  2532. msgid "guix environment linux-libre -- make localmodconfig\n"
  2533. msgstr "guix environment linux-libre -- make localmodconfig\n"
  2534. #. type: Plain text
  2535. #: guix-git/doc/guix-cookbook.texi:1606
  2536. msgid "and note the output. Do note that the @file{.config} file is still empty. The output generally contains two types of warnings. The first start with \"WARNING\" and can actually be ignored in our case. The second read:"
  2537. msgstr "und uns die Ausgabe davon anzuschauen. Beachten Sie, dass die @file{.config}-Datei noch immer leer ist. Die Ausgabe enthält im Allgemeinen zwei Arten von Warnungen. Am Anfang der ersten steht „WARNING“ und in unserem Fall können wir sie tatsächlich ignorieren. Bei der zweiten heißt es:"
  2538. #. type: example
  2539. #: guix-git/doc/guix-cookbook.texi:1609
  2540. #, no-wrap
  2541. msgid "module pcspkr did not have configs CONFIG_INPUT_PCSPKR\n"
  2542. msgstr "module pcspkr did not have configs CONFIG_INPUT_PCSPKR\n"
  2543. #. type: Plain text
  2544. #: guix-git/doc/guix-cookbook.texi:1614
  2545. msgid "For each of these lines, copy the @code{CONFIG_XXXX_XXXX} portion into the @file{.config} in the directory, and append @code{=m}, so in the end it looks like this:"
  2546. msgstr "Für jede solche Zeile kopieren Sie den @code{CONFIG_XXXX_XXXX}-Teil in die @file{.config} im selben Verzeichnis und hängen @code{=m} an, damit es am Ende so aussieht:"
  2547. #. type: example
  2548. #: guix-git/doc/guix-cookbook.texi:1618
  2549. #, no-wrap
  2550. msgid ""
  2551. "CONFIG_INPUT_PCSPKR=m\n"
  2552. "CONFIG_VIRTIO=m\n"
  2553. msgstr ""
  2554. "CONFIG_INPUT_PCSPKR=m\n"
  2555. "CONFIG_VIRTIO=m\n"
  2556. #. type: Plain text
  2557. #: guix-git/doc/guix-cookbook.texi:1627
  2558. msgid "After copying all the configuration options, run @code{make localmodconfig} again to make sure that you don't have any output starting with ``module''. After all of these machine specific modules there are a couple more left that are also needed. @code{CONFIG_MODULES} is necessary so that you can build and load modules separately and not have everything built into the kernel. @code{CONFIG_BLK_DEV_SD} is required for reading from hard drives. It is possible that there are other modules which you will need."
  2559. msgstr "Nachdem Sie alle Konfigurationsoptionen kopiert haben, führen Sie noch einmal @code{make localmodconfig} aus, um sicherzugehen, dass es keine Ausgaben mehr gibt, deren erstes Wort „module“ ist. Zusätzlich zu diesen maschinenspezifischen Modulen gibt es noch ein paar mehr, die Sie auch brauchen. @code{CONFIG_MODULES} brauchen Sie, damit Sie Module getrennt erstellen und laden können und nicht alles im Kernel eingebaut sein muss. Sie brauchen auch @code{CONFIG_BLK_DEV_SD}, um von Festplatten lesen zu können. Möglicherweise gibt es auch sonst noch Module, die Sie brauchen werden."
  2560. #. type: Plain text
  2561. #: guix-git/doc/guix-cookbook.texi:1631
  2562. msgid "This post does not aim to be a guide to configuring your own kernel however, so if you do decide to build a custom kernel you'll have to seek out other guides to create a kernel which is just right for your needs."
  2563. msgstr "Die Absicht hinter dem hier Niedergeschriebenen ist @emph{nicht}, eine Anleitung zum Konfigurieren eines eigenen Kernels zu sein. Wenn Sie also vorhaben, den Kernel an Ihre ganz eigenen Bedürfnisse anzupassen, werden Sie in anderen Anleitungen fündig."
  2564. #. type: Plain text
  2565. #: guix-git/doc/guix-cookbook.texi:1639
  2566. msgid "The second way to setup the kernel configuration makes more use of Guix's features and allows you to share configuration segments between different kernels. For example, all machines using EFI to boot have a number of EFI configuration flags that they need. It is likely that all the kernels will share a list of file systems to support. By using variables it is easier to see at a glance what features are enabled and to make sure you don't have features in one kernel but missing in another."
  2567. msgstr "Die zweite Möglichkeit, die Kernel-Konfiguration einzurichten, benutzt mehr von Guix’ Funktionalitäten und sie ermöglicht es Ihnen, Gemeinsamkeiten von Konfigurationen zwischen verschiedenen Kernels zu teilen. Zum Beispiel wird eine Reihe von EFI-Konfigurationsoptionen von allen Maschinen, die EFI benutzen, benötigt. Wahrscheinlich haben all diese Kernels eine Schnittmenge zu unterstützender Dateisysteme. Indem Sie Variable benutzen, können Sie leicht auf einen Schlag sehen, welche Funktionalitäten aktiviert sind, und gleichzeitig sicherstellen, dass Ihnen nicht Funktionalitäten des einen Kernels im anderen fehlen."
  2568. #. type: Plain text
  2569. #: guix-git/doc/guix-cookbook.texi:1644
  2570. msgid "Left undiscussed however, is Guix's initrd and its customization. It is likely that you'll need to modify the initrd on a machine using a custom kernel, since certain modules which are expected to be built may not be available for inclusion into the initrd."
  2571. msgstr "Was wir hierbei nicht erläutert haben, ist, wie Guix’ initrd und dessen Anpassung funktioniert. Wahrscheinlich werden Sie auf einer Maschine mit eigenem Kernel die initrd verändern müssen, weil sonst versucht wird, bestimmte Module in die initrd einzubinden, die Sie gar nicht erstellen haben lassen."
  2572. #. type: Plain text
  2573. #: guix-git/doc/guix-cookbook.texi:1651
  2574. msgid "Historically, Guix System is centered around an @code{operating-system} structure. This structure contains various fields ranging from the bootloader and kernel declaration to the services to install."
  2575. msgstr "In der Vergangenheit drehte sich in Guix System alles um eine @code{operating-system}-Struktur. So eine Struktur enthält vielerlei Felder vom Bootloader und der Deklaration des Kernels bis hin zu den Diensten, die installiert werden sollen."
  2576. #. type: Plain text
  2577. #: guix-git/doc/guix-cookbook.texi:1657
  2578. msgid "Depending on the target machine, that can go from a standard @code{x86_64} machine to a small ARM single board computer such as the Pine64, the image constraints can vary a lot. The hardware manufacturers will impose different image formats with various partition sizes and offsets."
  2579. msgstr "Aber je nach Zielmaschine@tie{}— diese kann alles von einer normalen @code{x86_64}-Maschine sein bis zu einem kleinen ARM-Einplatinenrechner wie dem Pine64@tie{}—, können die für ein Abbild geltenden Einschränkungen sehr unterschiedlich sein. Die Hardwarehersteller ordnen verschiedene Abbildformate an mit unterschiedlich versetzten unterschiedlich großen Partitionen."
  2580. #. type: Plain text
  2581. #: guix-git/doc/guix-cookbook.texi:1662
  2582. msgid "To create images suitable for all those machines, a new abstraction is necessary: that's the goal of the @code{image} record. This record contains all the required information to be transformed into a standalone image, that can be directly booted on any target machine."
  2583. msgstr "Um für jede dieser Arten von Maschinen geeignete Abbilder zu erzeugen, brauchen wir eine neue Abstraktion. Dieses Ziel verfolgen wir mit dem @code{image}-Verbund. Ein Verbundsobjekt enthält alle nötigen Informationen, um daraus ein eigenständiges Abbild auf die Zielmaschine zu bringen. Es ist direkt startfähig von jeder solchen Zielmaschine."
  2584. #. type: lisp
  2585. #: guix-git/doc/guix-cookbook.texi:1684
  2586. #, no-wrap
  2587. msgid ""
  2588. "(define-record-type* <image>\n"
  2589. " image make-image\n"
  2590. " image?\n"
  2591. " (name image-name ;symbol\n"
  2592. " (default #f))\n"
  2593. " (format image-format) ;symbol\n"
  2594. " (target image-target\n"
  2595. " (default #f))\n"
  2596. " (size image-size ;size in bytes as integer\n"
  2597. " (default 'guess))\n"
  2598. " (operating-system image-operating-system ;<operating-system>\n"
  2599. " (default #f))\n"
  2600. " (partitions image-partitions ;list of <partition>\n"
  2601. " (default '()))\n"
  2602. " (compression? image-compression? ;boolean\n"
  2603. " (default #t))\n"
  2604. " (volatile-root? image-volatile-root? ;boolean\n"
  2605. " (default #t))\n"
  2606. " (substitutable? image-substitutable? ;boolean\n"
  2607. " (default #t)))\n"
  2608. msgstr ""
  2609. "(define-record-type* <image>\n"
  2610. " image make-image\n"
  2611. " image?\n"
  2612. " (name image-name ;Symbol\n"
  2613. " (default #f))\n"
  2614. " (format image-format) ;Symbol\n"
  2615. " (target image-target\n"
  2616. " (default #f))\n"
  2617. " (size image-size ;Größe in Bytes als ganze Zahl\n"
  2618. " (default 'guess)) ;Vorgabe: automatisch bestimmen\n"
  2619. " (operating-system image-operating-system ;<operating-system>\n"
  2620. " (default #f))\n"
  2621. " (partitions image-partitions ;Liste von <partition>\n"
  2622. " (default '()))\n"
  2623. " (compression? image-compression? ;Boolescher Ausdruck\n"
  2624. " (default #t))\n"
  2625. " (volatile-root? image-volatile-root? ;Boolescher Ausdruck\n"
  2626. " (default #t))\n"
  2627. " (substitutable? image-substitutable? ;Boolescher Ausdruck\n"
  2628. " (default #t)))\n"
  2629. #. type: Plain text
  2630. #: guix-git/doc/guix-cookbook.texi:1690
  2631. msgid "This record contains the operating-system to instantiate. The @code{format} field defines the image type and can be @code{efi-raw}, @code{qcow2} or @code{iso9660} for instance. In the future, it could be extended to @code{docker} or other image types."
  2632. msgstr "In einem Verbundsobjekt davon steht auch das zu instanziierende Betriebssystem (in @code{operating-system}). Im Feld @code{format} steht, was der Abbildtyp („image type“) ist, zum Beispiel @code{efi-raw}, @code{qcow2} oder @code{iso9660}. In Zukunft könnten die Möglichkeiten auf @code{docker} oder andere Abbildtypen erweitert werden."
  2633. #. type: Plain text
  2634. #: guix-git/doc/guix-cookbook.texi:1693
  2635. msgid "A new directory in the Guix sources is dedicated to images definition. For now there are four files:"
  2636. msgstr "Ein neues Verzeichnis im Guix-Quellbaum wurde Abbilddefinitionen gewidmet. Zurzeit gibt es vier Dateien darin:"
  2637. #. type: file{#1}
  2638. #: guix-git/doc/guix-cookbook.texi:1695
  2639. #, no-wrap
  2640. msgid "gnu/system/images/hurd.scm"
  2641. msgstr "gnu/system/images/hurd.scm"
  2642. #. type: file{#1}
  2643. #: guix-git/doc/guix-cookbook.texi:1696
  2644. #, no-wrap
  2645. msgid "gnu/system/images/pine64.scm"
  2646. msgstr "gnu/system/images/pine64.scm"
  2647. #. type: file{#1}
  2648. #: guix-git/doc/guix-cookbook.texi:1697
  2649. #, no-wrap
  2650. msgid "gnu/system/images/novena.scm"
  2651. msgstr "gnu/system/images/novena.scm"
  2652. #. type: file{#1}
  2653. #: guix-git/doc/guix-cookbook.texi:1698
  2654. #, no-wrap
  2655. msgid "gnu/system/images/pinebook-pro.scm"
  2656. msgstr "gnu/system/images/pinebook-pro.scm"
  2657. #. type: Plain text
  2658. #: guix-git/doc/guix-cookbook.texi:1704
  2659. msgid "Let's have a look to @file{pine64.scm}. It contains the @code{pine64-barebones-os} variable which is a minimal definition of an operating-system dedicated to the @b{Pine A64 LTS} board."
  2660. msgstr "Schauen wir uns @file{pine64.scm} an. Es enthält die Variable @code{pine64-barebones-os}, bei der es sich um eine minimale Definition eines Betriebssystems handelt, die auf Platinen der Art @b{Pine A64 LTS} ausgerichtet ist."
  2661. #. type: lisp
  2662. #: guix-git/doc/guix-cookbook.texi:1728
  2663. #, no-wrap
  2664. msgid ""
  2665. "(define pine64-barebones-os\n"
  2666. " (operating-system\n"
  2667. " (host-name \"vignemale\")\n"
  2668. " (timezone \"Europe/Paris\")\n"
  2669. " (locale \"en_US.utf8\")\n"
  2670. " (bootloader (bootloader-configuration\n"
  2671. " (bootloader u-boot-pine64-lts-bootloader)\n"
  2672. " (targets '(\"/dev/vda\"))))\n"
  2673. " (initrd-modules '())\n"
  2674. " (kernel linux-libre-arm64-generic)\n"
  2675. " (file-systems (cons (file-system\n"
  2676. " (device (file-system-label \"my-root\"))\n"
  2677. " (mount-point \"/\")\n"
  2678. " (type \"ext4\"))\n"
  2679. " %base-file-systems))\n"
  2680. " (services (cons (service agetty-service-type\n"
  2681. " (agetty-configuration\n"
  2682. " (extra-options '(\"-L\")) ; no carrier detect\n"
  2683. " (baud-rate \"115200\")\n"
  2684. " (term \"vt100\")\n"
  2685. " (tty \"ttyS0\")))\n"
  2686. " %base-services))))\n"
  2687. msgstr ""
  2688. "(define pine64-barebones-os\n"
  2689. " (operating-system\n"
  2690. " (host-name \"vignemale\")\n"
  2691. " (timezone \"Europe/Paris\")\n"
  2692. " (locale \"en_US.utf8\")\n"
  2693. " (bootloader (bootloader-configuration\n"
  2694. " (bootloader u-boot-pine64-lts-bootloader)\n"
  2695. " (targets '(\"/dev/vda\"))))\n"
  2696. " (initrd-modules '())\n"
  2697. " (kernel linux-libre-arm64-generic)\n"
  2698. " (file-systems (cons (file-system\n"
  2699. " (device (file-system-label \"my-root\"))\n"
  2700. " (mount-point \"/\")\n"
  2701. " (type \"ext4\"))\n"
  2702. " %base-file-systems))\n"
  2703. " (services (cons (service agetty-service-type\n"
  2704. " (agetty-configuration\n"
  2705. " (extra-options '(\"-L\")) ;kein Carrier Detect\n"
  2706. " (baud-rate \"115200\")\n"
  2707. " (term \"vt100\")\n"
  2708. " (tty \"ttyS0\")))\n"
  2709. " %base-services))))\n"
  2710. #. type: Plain text
  2711. #: guix-git/doc/guix-cookbook.texi:1732
  2712. msgid "The @code{kernel} and @code{bootloader} fields are pointing to packages dedicated to this board."
  2713. msgstr "Die Felder @code{kernel} und @code{bootloader} verweisen auf platinenspezifische Pakete."
  2714. #. type: Plain text
  2715. #: guix-git/doc/guix-cookbook.texi:1734
  2716. msgid "Right below, the @code{pine64-image-type} variable is also defined."
  2717. msgstr "Direkt darunter wird auch die Variable @code{pine64-image-type} definiert."
  2718. #. type: lisp
  2719. #: guix-git/doc/guix-cookbook.texi:1740
  2720. #, no-wrap
  2721. msgid ""
  2722. "(define pine64-image-type\n"
  2723. " (image-type\n"
  2724. " (name 'pine64-raw)\n"
  2725. " (constructor (cut image-with-os arm64-disk-image <>))))\n"
  2726. msgstr ""
  2727. "(define pine64-image-type\n"
  2728. " (image-type\n"
  2729. " (name 'pine64-raw)\n"
  2730. " (constructor (cut image-with-os arm64-disk-image <>))))\n"
  2731. #. type: Plain text
  2732. #: guix-git/doc/guix-cookbook.texi:1744
  2733. msgid "It's using a record we haven't talked about yet, the @code{image-type} record, defined this way:"
  2734. msgstr "Sie benutzt einen Verbundstyp, über den wir noch nicht gesprochen haben, den @code{image-type}-Verbund. Er ist wie folgt definiert:"
  2735. #. type: lisp
  2736. #: guix-git/doc/guix-cookbook.texi:1751
  2737. #, no-wrap
  2738. msgid ""
  2739. "(define-record-type* <image-type>\n"
  2740. " image-type make-image-type\n"
  2741. " image-type?\n"
  2742. " (name image-type-name) ;symbol\n"
  2743. " (constructor image-type-constructor)) ;<operating-system> -> <image>\n"
  2744. msgstr ""
  2745. "(define-record-type* <image-type>\n"
  2746. " image-type make-image-type\n"
  2747. " image-type?\n"
  2748. " (name image-type-name) ;Symbol\n"
  2749. " (constructor image-type-constructor)) ;<operating-system> -> <image>\n"
  2750. #. type: Plain text
  2751. #: guix-git/doc/guix-cookbook.texi:1757
  2752. msgid "The main purpose of this record is to associate a name to a procedure transforming an @code{operating-system} to an image. To understand why it is necessary, let's have a look to the command producing an image from an @code{operating-system} configuration file:"
  2753. msgstr "Der Hauptzweck dieses Verbunds ist, einer Prozedur, die ein @code{operating-system} in ein @code{image}-Abbild umwandelt, einen Namen zu geben. Um den Bedarf dafür nachzuvollziehen, schauen wir uns den Befehl an, mit dem ein Abbild aus einer @code{operating-system}-Konfigurationsdatei erzeugt wird:"
  2754. #. type: example
  2755. #: guix-git/doc/guix-cookbook.texi:1760
  2756. #, no-wrap
  2757. msgid "guix system image my-os.scm\n"
  2758. msgstr "guix system image my-os.scm\n"
  2759. #. type: Plain text
  2760. #: guix-git/doc/guix-cookbook.texi:1766
  2761. msgid "This command expects an @code{operating-system} configuration but how should we indicate that we want an image targeting a Pine64 board? We need to provide an extra information, the @code{image-type}, by passing the @code{--image-type} or @code{-t} flag, this way:"
  2762. msgstr "Dieser Befehl erwartet eine @code{operating-system}-Konfiguration, doch wie geben wir an, dass wir ein Abbild für einen Pine64-Rechner möchten? Wir müssen zusätzliche Informationen mitgeben, nämlich den Abbildtyp, @code{image-type}, indem wir die Befehlszeilenoption @code{--image-type} oder @code{-t} übergeben, und zwar so:"
  2763. #. type: example
  2764. #: guix-git/doc/guix-cookbook.texi:1769
  2765. #, no-wrap
  2766. msgid "guix system image --image-type=pine64-raw my-os.scm\n"
  2767. msgstr "guix system image --image-type=pine64-raw my-os.scm\n"
  2768. #. type: Plain text
  2769. #: guix-git/doc/guix-cookbook.texi:1775
  2770. msgid "This @code{image-type} parameter points to the @code{pine64-image-type} defined above. Hence, the @code{operating-system} declared in @code{my-os.scm} will be applied the @code{(cut image-with-os arm64-disk-image <>)} procedure to turn it into an image."
  2771. msgstr "Der Parameter @code{image-type} verweist auf den oben definierten @code{pine64-image-type}. Dadurch wird die Prozedur @code{(cut image-with-os arm64-disk-image <>)} auf das in @code{my-os.scm} deklarierte @code{operating-system} angewandt und macht es zu einem @code{image}-Abbild."
  2772. #. type: Plain text
  2773. #: guix-git/doc/guix-cookbook.texi:1777
  2774. msgid "The resulting image looks like:"
  2775. msgstr "Es ergibt sich ein Abbild wie dieses:"
  2776. #. type: lisp
  2777. #: guix-git/doc/guix-cookbook.texi:1787
  2778. #, no-wrap
  2779. msgid ""
  2780. "(image\n"
  2781. " (format 'disk-image)\n"
  2782. " (target \"aarch64-linux-gnu\")\n"
  2783. " (operating-system my-os)\n"
  2784. " (partitions\n"
  2785. " (list (partition\n"
  2786. " (inherit root-partition)\n"
  2787. " (offset root-offset)))))\n"
  2788. msgstr ""
  2789. "(image\n"
  2790. " (format 'disk-image)\n"
  2791. " (target \"aarch64-linux-gnu\")\n"
  2792. " (operating-system my-os)\n"
  2793. " (partitions\n"
  2794. " (list (partition\n"
  2795. " (inherit root-partition)\n"
  2796. " (offset root-offset)))))\n"
  2797. #. type: Plain text
  2798. #: guix-git/doc/guix-cookbook.texi:1791
  2799. msgid "which is the aggregation of the @code{operating-system} defined in @code{my-os.scm} to the @code{arm64-disk-image} record."
  2800. msgstr "Das ist das Aggregat aus dem in @code{my-os.scm} definierten @code{operating-system} und dem @code{arm64-disk-image}-Verbundsobjekt."
  2801. #. type: Plain text
  2802. #: guix-git/doc/guix-cookbook.texi:1793
  2803. msgid "But enough Scheme madness. What does this image API bring to the Guix user?"
  2804. msgstr "Aber genug vom Scheme-Wahnsinn. Was nützt die Image-Schnittstelle dem Nutzer von Guix?"
  2805. #. type: Plain text
  2806. #: guix-git/doc/guix-cookbook.texi:1795
  2807. msgid "One can run:"
  2808. msgstr "Sie können das ausführen:"
  2809. #. type: example
  2810. #: guix-git/doc/guix-cookbook.texi:1799
  2811. #, no-wrap
  2812. msgid ""
  2813. "mathieu@@cervin:~$ guix system --list-image-types\n"
  2814. "The available image types are:\n"
  2815. "\n"
  2816. msgstr ""
  2817. "mathieu@@cervin:~$ guix system --list-image-types\n"
  2818. "Die verfügbaren Abbildtypen sind:\n"
  2819. "\n"
  2820. #. type: example
  2821. #: guix-git/doc/guix-cookbook.texi:1811
  2822. #, no-wrap
  2823. msgid ""
  2824. " - pinebook-pro-raw\n"
  2825. " - pine64-raw\n"
  2826. " - novena-raw\n"
  2827. " - hurd-raw\n"
  2828. " - hurd-qcow2\n"
  2829. " - qcow2\n"
  2830. " - uncompressed-iso9660\n"
  2831. " - efi-raw\n"
  2832. " - arm64-raw\n"
  2833. " - arm32-raw\n"
  2834. " - iso9660\n"
  2835. msgstr ""
  2836. " - pinebook-pro-raw\n"
  2837. " - pine64-raw\n"
  2838. " - novena-raw\n"
  2839. " - hurd-raw\n"
  2840. " - hurd-qcow2\n"
  2841. " - qcow2\n"
  2842. " - uncompressed-iso9660\n"
  2843. " - efi-raw\n"
  2844. " - arm64-raw\n"
  2845. " - arm32-raw\n"
  2846. " - iso9660\n"
  2847. #. type: Plain text
  2848. #: guix-git/doc/guix-cookbook.texi:1816
  2849. msgid "and by writing an @code{operating-system} file based on @code{pine64-barebones-os}, you can customize your image to your preferences in a file (@file{my-pine-os.scm}) like this:"
  2850. msgstr "und indem Sie eine Betriebssystemkonfigurationsdatei mit einem auf @code{pine64-barebones-os} aufbauenden @code{operating-system} schreiben, können Sie Ihr Abbild nach Ihren Wünschen anpassen in einer Datei, sagen wir @file{my-pine-os.scm}:"
  2851. #. type: lisp
  2852. #: guix-git/doc/guix-cookbook.texi:1820
  2853. #, no-wrap
  2854. msgid ""
  2855. "(use-modules (gnu services linux)\n"
  2856. " (gnu system images pine64))\n"
  2857. "\n"
  2858. msgstr ""
  2859. "(use-modules (gnu services linux)\n"
  2860. " (gnu system images pine64))\n"
  2861. "\n"
  2862. #. type: lisp
  2863. #: guix-git/doc/guix-cookbook.texi:1831
  2864. #, no-wrap
  2865. msgid ""
  2866. "(let ((base-os pine64-barebones-os))\n"
  2867. " (operating-system\n"
  2868. " (inherit base-os)\n"
  2869. " (timezone \"America/Indiana/Indianapolis\")\n"
  2870. " (services\n"
  2871. " (cons\n"
  2872. " (service earlyoom-service-type\n"
  2873. " (earlyoom-configuration\n"
  2874. " (prefer-regexp \"icecat|chromium\")))\n"
  2875. " (operating-system-user-services base-os)))))\n"
  2876. msgstr ""
  2877. "(let ((base-os pine64-barebones-os))\n"
  2878. " (operating-system\n"
  2879. " (inherit base-os)\n"
  2880. " (timezone \"America/Indiana/Indianapolis\")\n"
  2881. " (services\n"
  2882. " (cons\n"
  2883. " (service earlyoom-service-type\n"
  2884. " (earlyoom-configuration\n"
  2885. " (prefer-regexp \"icecat|chromium\")))\n"
  2886. " (operating-system-user-services base-os)))))\n"
  2887. #. type: Plain text
  2888. #: guix-git/doc/guix-cookbook.texi:1834
  2889. msgid "run:"
  2890. msgstr "Führen Sie aus:"
  2891. #. type: example
  2892. #: guix-git/doc/guix-cookbook.texi:1837
  2893. #, no-wrap
  2894. msgid "guix system image --image-type=pine64-raw my-pine-os.scm\n"
  2895. msgstr "guix system image --image-type=pine64-raw my-pine-os.scm\n"
  2896. #. type: Plain text
  2897. #: guix-git/doc/guix-cookbook.texi:1840
  2898. msgid "or,"
  2899. msgstr "oder"
  2900. #. type: example
  2901. #: guix-git/doc/guix-cookbook.texi:1843
  2902. #, no-wrap
  2903. msgid "guix system image --image-type=hurd-raw my-hurd-os.scm\n"
  2904. msgstr "guix system image --image-type=hurd-raw my-hurd-os.scm\n"
  2905. #. type: Plain text
  2906. #: guix-git/doc/guix-cookbook.texi:1847
  2907. msgid "to get an image that can be written directly to a hard drive and booted from."
  2908. msgstr "und Sie bekommen ein Abbild, das Sie direkt auf eine Festplatte kopieren und starten können."
  2909. #. type: Plain text
  2910. #: guix-git/doc/guix-cookbook.texi:1849
  2911. msgid "Without changing anything to @code{my-hurd-os.scm}, calling:"
  2912. msgstr "Ohne irgendetwas an @code{my-hurd-os.scm} zu ändern, bewirkt ein Aufruf"
  2913. #. type: example
  2914. #: guix-git/doc/guix-cookbook.texi:1852
  2915. #, no-wrap
  2916. msgid "guix system image --image-type=hurd-qcow2 my-hurd-os.scm\n"
  2917. msgstr "guix system image --image-type=hurd-qcow2 my-hurd-os.scm\n"
  2918. #. type: Plain text
  2919. #: guix-git/doc/guix-cookbook.texi:1855
  2920. msgid "will instead produce a Hurd QEMU image."
  2921. msgstr "dass stattdessen ein Hurd-Abbild für QEMU erzeugt wird."
  2922. #. type: Plain text
  2923. #: guix-git/doc/guix-cookbook.texi:1862
  2924. msgid "To connect to a Wireguard VPN server you need the kernel module to be loaded in memory and a package providing networking tools that support it (e.g. @code{wireguard-tools} or @code{network-manager})."
  2925. msgstr "Damit Sie sich mit einem Wireguard-VPN-Server verbinden können, müssen Sie dafür sorgen, dass die dafür nötigen Kernel-Module in den Speicher eingeladen werden und ein Paket bereitsteht, dass die unterstützenden Netzwerkwerkzeuge dazu enthält (z.B.@: @code{wireguard-tools} oder @code{network-manager})."
  2926. #. type: Plain text
  2927. #: guix-git/doc/guix-cookbook.texi:1866
  2928. msgid "Here is a configuration example for Linux-Libre < 5.6, where the module is out of tree and need to be loaded manually---following revisions of the kernel have it built-in and so don't need such configuration:"
  2929. msgstr "Hier ist ein Beispiel für eine Konfiguration für Linux-Libre < 5.6, wo sich das Modul noch nicht im Kernel-Quellbaum befindet („out of tree“) und daher von Hand geladen werden muss@tie{}— in nachfolgenden Kernelversionen ist das Modul bereits eingebaut und @emph{keine} derartige Konfiguration ist nötig."
  2930. #. type: lisp
  2931. #: guix-git/doc/guix-cookbook.texi:1871
  2932. #, no-wrap
  2933. msgid ""
  2934. "(use-modules (gnu))\n"
  2935. "(use-service-modules desktop)\n"
  2936. "(use-package-modules vpn)\n"
  2937. "\n"
  2938. msgstr ""
  2939. "(use-modules (gnu))\n"
  2940. "(use-service-modules desktop)\n"
  2941. "(use-package-modules vpn)\n"
  2942. "\n"
  2943. #. type: lisp
  2944. #: guix-git/doc/guix-cookbook.texi:1880
  2945. #, no-wrap
  2946. msgid ""
  2947. "(operating-system\n"
  2948. " ;; …\n"
  2949. " (services (cons (simple-service 'wireguard-module\n"
  2950. " kernel-module-loader-service-type\n"
  2951. " '(\"wireguard\"))\n"
  2952. " %desktop-services))\n"
  2953. " (packages (cons wireguard-tools %base-packages))\n"
  2954. " (kernel-loadable-modules (list wireguard-linux-compat)))\n"
  2955. msgstr ""
  2956. "(operating-system\n"
  2957. " ;; …\n"
  2958. " (services (cons (simple-service 'wireguard-module\n"
  2959. " kernel-module-loader-service-type\n"
  2960. " '(\"wireguard\"))\n"
  2961. " %desktop-services))\n"
  2962. " (packages (cons wireguard-tools %base-packages))\n"
  2963. " (kernel-loadable-modules (list wireguard-linux-compat)))\n"
  2964. #. type: Plain text
  2965. #: guix-git/doc/guix-cookbook.texi:1884
  2966. msgid "After reconfiguring and restarting your system you can either use Wireguard tools or NetworkManager to connect to a VPN server."
  2967. msgstr "Nachdem Sie Ihr System rekonfiguriert haben, können Sie dann entweder die Wireguard-Werkzeuge („Wireguard Tools“) oder NetworkManager benutzen, um sich mit einem VPN-Server zu verbinden."
  2968. #. type: subsection
  2969. #: guix-git/doc/guix-cookbook.texi:1885
  2970. #, no-wrap
  2971. msgid "Using Wireguard tools"
  2972. msgstr "Die Wireguard Tools benutzen"
  2973. #. type: Plain text
  2974. #: guix-git/doc/guix-cookbook.texi:1891
  2975. msgid "To test your Wireguard setup it is convenient to use @command{wg-quick}. Just give it a configuration file @command{wg-quick up ./wg0.conf}; or put that file in @file{/etc/wireguard} and run @command{wg-quick up wg0} instead."
  2976. msgstr "Um Ihre Wireguard-Konfiguration zu testen, bietet es sich an, @command{wg-quick} zu benutzen. Übergeben Sie einfach eine Konfigurationsdatei @command{wg-quick up ./wg0.conf}. Sie können auch die Konfigurationsdatei in @file{/etc/wireguard} platzieren und dann stattdessen @command{wg-quick up wg0} ausführen."
  2977. #. type: quotation
  2978. #: guix-git/doc/guix-cookbook.texi:1895
  2979. msgid "Be warned that the author described this command as a: “[…] very quick and dirty bash script […]”."
  2980. msgstr "Seien Sie gewarnt, dass sein Autor diesen Befehl als ein schnell und unsauber geschriebenes Bash-Skript bezeichnet hat."
  2981. #. type: subsection
  2982. #: guix-git/doc/guix-cookbook.texi:1897
  2983. #, no-wrap
  2984. msgid "Using NetworkManager"
  2985. msgstr "NetworkManager benutzen"
  2986. #. type: Plain text
  2987. #: guix-git/doc/guix-cookbook.texi:1905
  2988. msgid "Thanks to NetworkManager support for Wireguard we can connect to our VPN using @command{nmcli} command. Up to this point this guide assumes that you're using Network Manager service provided by @code{%desktop-services}. Ortherwise you need to adjust your services list to load @code{network-manager-service-type} and reconfigure your Guix system."
  2989. msgstr "Dank der Unterstützung für Wireguard durch den NetworkManager können wir über den Befehl @command{nmcli} eine Verbindung mit unserem VPN herstellen. Bislang treffen wir in dieser Anleitung die Annahme, dass Sie den Network-Manager-Dienst aus den @code{%desktop-services} benutzen. Wenn Sie eine abweichende Konfiguration verwenden, müssen Sie unter Umständen Ihre @code{services}-Liste abändern, damit ein @code{network-manager-service-type} geladen wird, und Ihr Guix-System rekonfigurieren."
  2990. #. type: Plain text
  2991. #: guix-git/doc/guix-cookbook.texi:1907
  2992. msgid "To import your VPN configuration execute nmcli import command:"
  2993. msgstr "Benutzen Sie den nmcli-Import-Befehl, um Ihre VPN-Konfiguration zu importieren."
  2994. #. type: example
  2995. #: guix-git/doc/guix-cookbook.texi:1911
  2996. #, no-wrap
  2997. msgid ""
  2998. "# nmcli connection import type wireguard file wg0.conf\n"
  2999. "Connection 'wg0' (edbee261-aa5a-42db-b032-6c7757c60fde) successfully added\n"
  3000. msgstr ""
  3001. "# nmcli connection import type wireguard file wg0.conf\n"
  3002. "Verbindung »wg0« (edbee261-aa5a-42db-b032-6c7757c60fde) erfolgreich hinzugefügt.\n"
  3003. #. type: Plain text
  3004. #: guix-git/doc/guix-cookbook.texi:1916
  3005. msgid "This will create a configuration file in @file{/etc/NetworkManager/wg0.nmconnection}. Next connect to the Wireguard server:"
  3006. msgstr "Dadurch wird eine Konfigurationsdatei in @file{/etc/NetworkManager/wg0.nmconnection} angelegt. Anschließend können Sie sich mit dem Wireguard-Server verbinden:"
  3007. #. type: example
  3008. #: guix-git/doc/guix-cookbook.texi:1920
  3009. #, no-wrap
  3010. msgid ""
  3011. "$ nmcli connection up wg0\n"
  3012. "Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/6)\n"
  3013. msgstr ""
  3014. "$ nmcli connection up wg0\n"
  3015. "Verbindung wurde erfolgreich aktiviert (aktiver D-Bus-Pfad: /org/freedesktop/NetworkManager/ActiveConnection/6)\n"
  3016. #. type: Plain text
  3017. #: guix-git/doc/guix-cookbook.texi:1924
  3018. msgid "By default NetworkManager will connect automatically on system boot. To change that behaviour you need to edit your config:"
  3019. msgstr "Nach Voreinstellung wird sich NetworkManager automatisch beim Systemstart verbinden. Um dieses Verhalten zu ändern, müssen Sie Ihre Konfiguration bearbeiten:"
  3020. #. type: example
  3021. #: guix-git/doc/guix-cookbook.texi:1927
  3022. #, no-wrap
  3023. msgid "# nmcli connection modify wg0 connection.autoconnect no\n"
  3024. msgstr "# nmcli connection modify wg0 connection.autoconnect no\n"
  3025. #. type: Plain text
  3026. #: guix-git/doc/guix-cookbook.texi:1932
  3027. msgid "For more specific information about NetworkManager and wireguard @uref{https://blogs.gnome.org/thaller/2019/03/15/wireguard-in-networkmanager/,see this post by thaller}."
  3028. msgstr "Für Informationen speziell zu NetworkManager und Wireguard @uref{https://blogs.gnome.org/thaller/2019/03/15/wireguard-in-networkmanager/,siehe diesen Blogeintrag von thaller}."
  3029. #. type: cindex
  3030. #: guix-git/doc/guix-cookbook.texi:1935
  3031. #, no-wrap
  3032. msgid "wm"
  3033. msgstr "Fensterverwaltung (Window Manager, WM)"
  3034. #. type: subsection
  3035. #: guix-git/doc/guix-cookbook.texi:1937 guix-git/doc/guix-cookbook.texi:1938
  3036. #, no-wrap
  3037. msgid "StumpWM"
  3038. msgstr "StumpWM"
  3039. #. type: cindex
  3040. #: guix-git/doc/guix-cookbook.texi:1939
  3041. #, no-wrap
  3042. msgid "stumpwm"
  3043. msgstr "stumpwm"
  3044. #. type: Plain text
  3045. #: guix-git/doc/guix-cookbook.texi:1944
  3046. msgid "You could install StumpWM with a Guix system by adding @code{stumpwm} and optionally @code{`(,stumpwm \"lib\")} packages to a system configuration file, e.g.@: @file{/etc/config.scm}."
  3047. msgstr "Sie können StumpWM mit einem Guix-System installieren, indem Sie die Pakete @code{stumpwm} und optional auch @code{`(,stumpwm \"lib\")} in eine Systemkonfigurationsdatei, z.B.@: @file{/etc/config.scm}, eintragen."
  3048. #. type: Plain text
  3049. #: guix-git/doc/guix-cookbook.texi:1946
  3050. msgid "An example configuration can look like this:"
  3051. msgstr "Eine Beispielkonfiguration kann so aussehen:"
  3052. #. type: lisp
  3053. #: guix-git/doc/guix-cookbook.texi:1950
  3054. #, no-wrap
  3055. msgid ""
  3056. "(use-modules (gnu))\n"
  3057. "(use-package-modules wm)\n"
  3058. "\n"
  3059. msgstr ""
  3060. "(use-modules (gnu))\n"
  3061. "(use-package-modules wm)\n"
  3062. "\n"
  3063. #. type: lisp
  3064. #: guix-git/doc/guix-cookbook.texi:1955
  3065. #, no-wrap
  3066. msgid ""
  3067. "(operating-system\n"
  3068. " ;; …\n"
  3069. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3070. " %base-packages)))\n"
  3071. msgstr ""
  3072. "(operating-system\n"
  3073. " ;; …\n"
  3074. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3075. " %base-packages)))\n"
  3076. #. type: cindex
  3077. #: guix-git/doc/guix-cookbook.texi:1957
  3078. #, no-wrap
  3079. msgid "stumpwm fonts"
  3080. msgstr "StumpWM-Schriftarten"
  3081. #. type: Plain text
  3082. #: guix-git/doc/guix-cookbook.texi:1961
  3083. msgid "By default StumpWM uses X11 fonts, which could be small or pixelated on your system. You could fix this by installing StumpWM contrib Lisp module @code{sbcl-ttf-fonts}, adding it to Guix system packages:"
  3084. msgstr "Nach Voreinstellung benutzt StumpWM die Schriftarten von X11, die auf Ihrem System klein oder verpixelt erscheinen mögen. Sie können das Problem beheben, indem Sie das Lisp-Modul @code{sbcl-ttf-fonts} aus den Beiträgen zu StumpWM („StumpWM Contrib“) als Systempaket installieren:"
  3085. #. type: lisp
  3086. #: guix-git/doc/guix-cookbook.texi:1965
  3087. #, no-wrap
  3088. msgid ""
  3089. "(use-modules (gnu))\n"
  3090. "(use-package-modules fonts wm)\n"
  3091. "\n"
  3092. msgstr ""
  3093. "(use-modules (gnu))\n"
  3094. "(use-package-modules fonts wm)\n"
  3095. "\n"
  3096. #. type: lisp
  3097. #: guix-git/doc/guix-cookbook.texi:1970
  3098. #, no-wrap
  3099. msgid ""
  3100. "(operating-system\n"
  3101. " ;; …\n"
  3102. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3103. " sbcl-ttf-fonts font-dejavu %base-packages)))\n"
  3104. msgstr ""
  3105. "(operating-system\n"
  3106. " ;; …\n"
  3107. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3108. " sbcl-ttf-fonts font-dejavu %base-packages)))\n"
  3109. #. type: Plain text
  3110. #: guix-git/doc/guix-cookbook.texi:1974
  3111. msgid "Then you need to add the following code to a StumpWM configuration file @file{~/.stumpwm.d/init.lisp}:"
  3112. msgstr "Den folgenden Code fügen Sie in die Konfigurationsdatei von StumpWM @file{~/.stumpwm.d/init.lisp} ein:"
  3113. #. type: lisp
  3114. #: guix-git/doc/guix-cookbook.texi:1981
  3115. #, no-wrap
  3116. msgid ""
  3117. "(require :ttf-fonts)\n"
  3118. "(setf xft:*font-dirs* '(\"/run/current-system/profile/share/fonts/\"))\n"
  3119. "(setf clx-truetype:+font-cache-filename+ (concat (getenv \"HOME\") \"/.fonts/font-cache.sexp\"))\n"
  3120. "(xft:cache-fonts)\n"
  3121. "(set-font (make-instance 'xft:font :family \"DejaVu Sans Mono\" :subfamily \"Book\" :size 11))\n"
  3122. msgstr ""
  3123. "(require :ttf-fonts)\n"
  3124. "(setf xft:*font-dirs* '(\"/run/current-system/profile/share/fonts/\"))\n"
  3125. "(setf clx-truetype:+font-cache-filename+ (concat (getenv \"HOME\") \"/.fonts/font-cache.sexp\"))\n"
  3126. "(xft:cache-fonts)\n"
  3127. "(set-font (make-instance 'xft:font :family \"DejaVu Sans Mono\" :subfamily \"Book\" :size 11))\n"
  3128. #. type: subsection
  3129. #: guix-git/doc/guix-cookbook.texi:1983 guix-git/doc/guix-cookbook.texi:1984
  3130. #, no-wrap
  3131. msgid "Session lock"
  3132. msgstr "Sitzungen sperren"
  3133. #. type: cindex
  3134. #: guix-git/doc/guix-cookbook.texi:1985
  3135. #, no-wrap
  3136. msgid "sessionlock"
  3137. msgstr "Sitzungssperre"
  3138. #. type: Plain text
  3139. #: guix-git/doc/guix-cookbook.texi:1991
  3140. msgid "Depending on your environment, locking the screen of your session might come built in or it might be something you have to set up yourself. If you use a desktop environment like GNOME or KDE, it's usually built in. If you use a plain window manager like StumpWM or EXWM, you might have to set it up yourself."
  3141. msgstr "Abhängig von Ihrer Arbeitsumgebung ist das Sperren Ihres Bildschirms vielleicht bereits eingebaut. Wenn nicht, müssen Sie es selbst einrichten. Wenn Sie eine Arbeitsumgebung wie GNOME oder KDE benutzen, ist Sperren normalerweise bereits möglich. Wenn Sie einen einfachen Fensterverwalter („Window Manager“) wie StumpWM oder EXWM benutzen, müssen Sie es vielleicht selbst einrichten."
  3142. #. type: subsubsection
  3143. #: guix-git/doc/guix-cookbook.texi:1992 guix-git/doc/guix-cookbook.texi:1993
  3144. #, no-wrap
  3145. msgid "Xorg"
  3146. msgstr "Xorg"
  3147. #. type: Plain text
  3148. #: guix-git/doc/guix-cookbook.texi:1999
  3149. msgid "If you use Xorg, you can use the utility @uref{https://www.mankier.com/1/xss-lock, xss-lock} to lock the screen of your session. xss-lock is triggered by DPMS which since Xorg 1.8 is auto-detected and enabled if ACPI is also enabled at kernel runtime."
  3150. msgstr "Sofern Sie Xorg benutzen, können Sie mit dem Programm @uref{https://www.mankier.com/1/xss-lock, xss-lock} den Bildschirm für Ihre Sitzung sperren. xss-lock wird durch DPMS ausgelöst, was seit Xorg 1.8 automatisch aktiv ist, wenn zur Laufzeit des Kernels ACPI verfügbar ist."
  3151. #. type: Plain text
  3152. #: guix-git/doc/guix-cookbook.texi:2002
  3153. msgid "To use xss-lock, you can simple execute it and put it into the background before you start your window manager from e.g. your @file{~/.xsession}:"
  3154. msgstr "Um xss-lock zu benutzen, können Sie es einfach ausführen und in den Hintergrund versetzen, bevor Sie Ihren Fensterverwalter z.B.@: aus Ihrer @file{~/.xsession} heraus starten:"
  3155. #. type: example
  3156. #: guix-git/doc/guix-cookbook.texi:2006
  3157. #, no-wrap
  3158. msgid ""
  3159. "xss-lock -- slock &\n"
  3160. "exec stumpwm\n"
  3161. msgstr ""
  3162. "xss-lock -- slock &\n"
  3163. "exec stumpwm\n"
  3164. #. type: Plain text
  3165. #: guix-git/doc/guix-cookbook.texi:2010
  3166. msgid "In this example, xss-lock uses @code{slock} to do the actual locking of the screen when it determines it's appropriate, like when you suspend your device."
  3167. msgstr "In diesem Beispiel benutzt xss-lock das Programm @code{slock}, um die eigentliche Sperrung des Bildschirms durchzuführen, wenn es den Zeitpunkt dafür gekommen sieht, weil Sie z.B.@: Ihr Gerät in den Energiesparmodus versetzen."
  3168. #. type: Plain text
  3169. #: guix-git/doc/guix-cookbook.texi:2014
  3170. msgid "For slock to be allowed to be a screen locker for the graphical session, it needs to be made setuid-root so it can authenticate users, and it needs a PAM service. This can be achieved by adding the following service to your @file{config.scm}:"
  3171. msgstr "Damit slock aber überhaupt die Berechtigung dafür erteilt bekommt, Bildschirme grafischer Sitzungen zu sperren, muss es als setuid-root eingestellt sein, wodurch es Benutzer authentifizieren kann, außerdem braucht es Einstellungen im PAM-Dienst. Um das bereitzustellen, tragen Sie den folgenden Dienst in Ihre @file{config.scm} ein:"
  3172. #. type: lisp
  3173. #: guix-git/doc/guix-cookbook.texi:2017
  3174. #, no-wrap
  3175. msgid "(screen-locker-service slock)\n"
  3176. msgstr "(screen-locker-service slock)\n"
  3177. #. type: Plain text
  3178. #: guix-git/doc/guix-cookbook.texi:2023
  3179. msgid "If you manually lock your screen, e.g. by directly calling slock when you want to lock your screen but not suspend it, it's a good idea to notify xss-lock about this so no confusion occurs. This can be done by executing @code{xset s activate} immediately before you execute slock."
  3180. msgstr "Wenn Sie Ihren Bildschirm manuell sperren, z.B.@: indem Sie slock direkt aufrufen, wenn Sie Ihren Bildschirm sperren wollen, ohne in den Energiesparmodus zu wechseln, dann ist es eine gute Idee, das auch xss-lock mitzuteilen, indem Sie @code{xset s activate} direkt vor slock ausführen."
  3181. #. type: cindex
  3182. #: guix-git/doc/guix-cookbook.texi:2026
  3183. #, no-wrap
  3184. msgid "linode, Linode"
  3185. msgstr "linode, Linode"
  3186. #. type: Plain text
  3187. #: guix-git/doc/guix-cookbook.texi:2031
  3188. msgid "To run Guix on a server hosted by @uref{https://www.linode.com, Linode}, start with a recommended Debian server. We recommend using the default distro as a way to bootstrap Guix. Create your SSH keys."
  3189. msgstr "Um Guix auf einem durch @uref{https://www.linode.com, Linode} bereitgestellten, „gehosteten“ Server zu benutzen, richten Sie zunächst einen dort empfohlenen Debian-Server ein. Unsere Empfehlung ist, zum Wechsel auf Guix mit der voreingestellten Distribution anzufangen. Erzeugen Sie Ihre SSH-Schlüssel."
  3190. #. type: example
  3191. #: guix-git/doc/guix-cookbook.texi:2034
  3192. #, no-wrap
  3193. msgid "ssh-keygen\n"
  3194. msgstr "ssh-keygen\n"
  3195. #. type: Plain text
  3196. #: guix-git/doc/guix-cookbook.texi:2040
  3197. msgid "Be sure to add your SSH key for easy login to the remote server. This is trivially done via Linode's graphical interface for adding SSH keys. Go to your profile and click add SSH Key. Copy into it the output of:"
  3198. msgstr "Stellen Sie sicher, dass Ihr SSH-Schlüssel zur leichten Anmeldung auf dem entfernten Server eingerichtet ist. Das können Sie leicht mit Linodes grafischer Oberfläche zum Hinzufügen von SSH-Schlüsseln bewerkstelligen. Gehen Sie dazu in Ihr Profil und klicken Sie auf die Funktion zum Hinzufügen eines SSH-Schlüssels. Kopieren Sie dort hinein die Ausgabe von:"
  3199. #. type: example
  3200. #: guix-git/doc/guix-cookbook.texi:2043
  3201. #, no-wrap
  3202. msgid "cat ~/.ssh/<username>_rsa.pub\n"
  3203. msgstr "cat ~/.ssh/<benutzername>_rsa.pub\n"
  3204. #. type: Plain text
  3205. #: guix-git/doc/guix-cookbook.texi:2046
  3206. msgid "Power the Linode down."
  3207. msgstr "Fahren Sie den Linode-Knoten herunter."
  3208. #. type: Plain text
  3209. #: guix-git/doc/guix-cookbook.texi:2050
  3210. msgid "In the Linode's Storage tab, resize the Debian disk to be smaller. 30 GB free space is recommended. Then click \"Add a disk\", and fill out the form with the following:"
  3211. msgstr "Im Karteireiter für „Storage“ bei Linode verkleinern Sie das Laufwerk für Debian. Empfohlen werden 30@tie{}GB freier Speicher. Klicken Sie anschließend auf „Add a disk“ und tragen Sie Folgendes in das Formular ein:"
  3212. #. type: itemize
  3213. #: guix-git/doc/guix-cookbook.texi:2054
  3214. msgid "Label: \"Guix\""
  3215. msgstr "Label: \"Guix\""
  3216. #. type: itemize
  3217. #: guix-git/doc/guix-cookbook.texi:2057
  3218. msgid "Filesystem: ext4"
  3219. msgstr "Filesystem: ext4"
  3220. #. type: itemize
  3221. #: guix-git/doc/guix-cookbook.texi:2060
  3222. msgid "Set it to the remaining size"
  3223. msgstr "Wählen Sie als Größe den übrigen Speicherplatz."
  3224. #. type: Plain text
  3225. #: guix-git/doc/guix-cookbook.texi:2065
  3226. msgid "In the Configurations tab, press \"Edit\" on the default Debian profile. Under \"Block Device Assignment\" click \"Add a Device\". It should be @file{/dev/sdc} and you can select the \"Guix\" disk. Save Changes."
  3227. msgstr "Drücken Sie im Karteireiter „Configurations“ auf „Edit“. Unter „Block Device Assignment“ klicken Sie auf „Add a Device“. Dort müsste @file{/dev/sdc} stehen; wählen Sie das Laufwerk „Guix“. Speichern Sie die Änderungen."
  3228. #. type: Plain text
  3229. #: guix-git/doc/guix-cookbook.texi:2067
  3230. msgid "Now \"Add a Configuration\", with the following:"
  3231. msgstr "Fügen Sie eine Konfiguration hinzu („Add a Configuration“) mit folgenden Eigenschaften:"
  3232. #. type: itemize
  3233. #: guix-git/doc/guix-cookbook.texi:2070
  3234. msgid "Label: Guix"
  3235. msgstr "Label: Guix"
  3236. #. type: itemize
  3237. #: guix-git/doc/guix-cookbook.texi:2073
  3238. msgid "Kernel:GRUB 2 (it's at the bottom! This step is @b{IMPORTANT!})"
  3239. msgstr "Kernel: GRUB 2 (Das steht ganz unten! Dieser Schritt ist @b{WICHTIG!})"
  3240. #. type: itemize
  3241. #: guix-git/doc/guix-cookbook.texi:2076
  3242. msgid "Block device assignment:"
  3243. msgstr "Block device assignment:"
  3244. #. type: itemize
  3245. #: guix-git/doc/guix-cookbook.texi:2079
  3246. msgid "@file{/dev/sda}: Guix"
  3247. msgstr "@file{/dev/sda}: Guix"
  3248. #. type: itemize
  3249. #: guix-git/doc/guix-cookbook.texi:2082
  3250. msgid "@file{/dev/sdb}: swap"
  3251. msgstr "@file{/dev/sdb}: swap"
  3252. #. type: itemize
  3253. #: guix-git/doc/guix-cookbook.texi:2085
  3254. msgid "Root device: @file{/dev/sda}"
  3255. msgstr "Root device: @file{/dev/sda}"
  3256. #. type: itemize
  3257. #: guix-git/doc/guix-cookbook.texi:2088
  3258. msgid "Turn off all the filesystem/boot helpers"
  3259. msgstr "Schalten Sie alle Dateisystem-/Boot-Helfer ab."
  3260. #. type: Plain text
  3261. #: guix-git/doc/guix-cookbook.texi:2095
  3262. msgid "Now power it back up, booting with the Debian configuration. Once it's running, ssh to your server via @code{ssh root@@@var{<your-server-IP-here>}}. (You can find your server IP address in your Linode Summary section.) Now you can run the \"install guix from @pxref{Binary Installation,,, guix, GNU Guix}\" steps:"
  3263. msgstr "Starten Sie den Knoten jetzt wieder mit der Debian-Konfiguration. Sobald er wieder läuft, verbinden Sie sich mittels SSH zu Ihrem Server über @code{ssh root@@@var{<IP-Adresse-Ihres-Servers>}}. (Die IP-Adresse Ihres Servers finden Sie in Linodes Übersichtsseite bei „Summary“.) Nun können Sie mit den Schritten aus dem @ref{Aus Binärdatei installieren,,, guix.de, Referenzhandbuch zu GNU Guix} weitermachen:"
  3264. #. type: example
  3265. #: guix-git/doc/guix-cookbook.texi:2103
  3266. #, no-wrap
  3267. msgid ""
  3268. "sudo apt-get install gpg\n"
  3269. "wget https://sv.gnu.org/people/viewgpg.php?user_id=15145 -qO - | gpg --import -\n"
  3270. "wget https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh\n"
  3271. "chmod +x guix-install.sh\n"
  3272. "./guix-install.sh\n"
  3273. "guix pull\n"
  3274. msgstr ""
  3275. "sudo apt-get install gpg\n"
  3276. "wget https://sv.gnu.org/people/viewgpg.php?user_id=15145 -qO - | gpg --import -\n"
  3277. "wget https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh\n"
  3278. "chmod +x guix-install.sh\n"
  3279. "./guix-install.sh\n"
  3280. "guix pull\n"
  3281. #. type: Plain text
  3282. #: guix-git/doc/guix-cookbook.texi:2107
  3283. msgid "Now it's time to write out a config for the server. The key information is below. Save the resulting file as @file{guix-config.scm}."
  3284. msgstr "Nun wird es Zeit, eine Konfiguration für den Server anzulegen. Die wichtigsten Informationen finden Sie hierunter. Speichern Sie die Konfiguration als @file{guix-config.scm}."
  3285. #. type: lisp
  3286. #: guix-git/doc/guix-cookbook.texi:2118
  3287. #, no-wrap
  3288. msgid ""
  3289. "(use-modules (gnu)\n"
  3290. " (guix modules))\n"
  3291. "(use-service-modules networking\n"
  3292. " ssh)\n"
  3293. "(use-package-modules admin\n"
  3294. " certs\n"
  3295. " package-management\n"
  3296. " ssh\n"
  3297. " tls)\n"
  3298. "\n"
  3299. msgstr ""
  3300. "(use-modules (gnu)\n"
  3301. " (guix modules))\n"
  3302. "(use-service-modules networking\n"
  3303. " ssh)\n"
  3304. "(use-package-modules admin\n"
  3305. " certs\n"
  3306. " package-management\n"
  3307. " ssh\n"
  3308. " tls)\n"
  3309. "\n"
  3310. #. type: lisp
  3311. #: guix-git/doc/guix-cookbook.texi:2135
  3312. #, no-wrap
  3313. msgid ""
  3314. "(operating-system\n"
  3315. " (host-name \"my-server\")\n"
  3316. " (timezone \"America/New_York\")\n"
  3317. " (locale \"en_US.UTF-8\")\n"
  3318. " ;; This goofy code will generate the grub.cfg\n"
  3319. " ;; without installing the grub bootloader on disk.\n"
  3320. " (bootloader (bootloader-configuration\n"
  3321. " (bootloader\n"
  3322. " (bootloader\n"
  3323. " (inherit grub-bootloader)\n"
  3324. " (installer #~(const #true))))))\n"
  3325. " (file-systems (cons (file-system\n"
  3326. " (device \"/dev/sda\")\n"
  3327. " (mount-point \"/\")\n"
  3328. " (type \"ext4\"))\n"
  3329. " %base-file-systems))\n"
  3330. "\n"
  3331. msgstr ""
  3332. "(operating-system\n"
  3333. " (host-name \"my-server\")\n"
  3334. " (timezone \"America/New_York\")\n"
  3335. " (locale \"en_US.UTF-8\")\n"
  3336. " ;; Dieser komisch aussehende Code wird eine grub.cfg\n"
  3337. " ;; anlegen ohne den GRUB-Bootloader auf die\n"
  3338. " ;; Platte zu installieren.\n"
  3339. " (bootloader (bootloader-configuration\n"
  3340. " (bootloader\n"
  3341. " (bootloader\n"
  3342. " (inherit grub-bootloader)\n"
  3343. " (installer #~(const #true))))))\n"
  3344. " (file-systems (cons (file-system\n"
  3345. " (device \"/dev/sda\")\n"
  3346. " (mount-point \"/\")\n"
  3347. " (type \"ext4\"))\n"
  3348. " %base-file-systems))\n"
  3349. "\n"
  3350. #. type: lisp
  3351. #: guix-git/doc/guix-cookbook.texi:2138
  3352. #, no-wrap
  3353. msgid ""
  3354. " (swap-devices (list \"/dev/sdb\"))\n"
  3355. "\n"
  3356. msgstr ""
  3357. " (swap-devices (list \"/dev/sdb\"))\n"
  3358. "\n"
  3359. #. type: lisp
  3360. #: guix-git/doc/guix-cookbook.texi:2142
  3361. #, no-wrap
  3362. msgid ""
  3363. " (initrd-modules (cons \"virtio_scsi\" ; Needed to find the disk\n"
  3364. " %base-initrd-modules))\n"
  3365. "\n"
  3366. msgstr ""
  3367. " (initrd-modules (cons \"virtio_scsi\" ; Um die Platte zu finden\n"
  3368. " %base-initrd-modules))\n"
  3369. "\n"
  3370. #. type: lisp
  3371. #: guix-git/doc/guix-cookbook.texi:2151
  3372. #, no-wrap
  3373. msgid ""
  3374. " (users (cons (user-account\n"
  3375. " (name \"janedoe\")\n"
  3376. " (group \"users\")\n"
  3377. " ;; Adding the account to the \"wheel\" group\n"
  3378. " ;; makes it a sudoer.\n"
  3379. " (supplementary-groups '(\"wheel\"))\n"
  3380. " (home-directory \"/home/janedoe\"))\n"
  3381. " %base-user-accounts))\n"
  3382. "\n"
  3383. msgstr ""
  3384. " (users (cons (user-account\n"
  3385. " (name \"janedoe\")\n"
  3386. " (group \"users\")\n"
  3387. " ;; Durch Hinzufügen zur \"wheel\"-Gruppe\n"
  3388. " ;; wird das Konto zum Sudoer.\n"
  3389. " (supplementary-groups '(\"wheel\"))\n"
  3390. " (home-directory \"/home/janedoe\"))\n"
  3391. " %base-user-accounts))\n"
  3392. "\n"
  3393. #. type: lisp
  3394. #: guix-git/doc/guix-cookbook.texi:2155
  3395. #, no-wrap
  3396. msgid ""
  3397. " (packages (cons* nss-certs ;for HTTPS access\n"
  3398. " openssh-sans-x\n"
  3399. " %base-packages))\n"
  3400. "\n"
  3401. msgstr ""
  3402. " (packages (cons* nss-certs ;für HTTPS-Zugriff\n"
  3403. " openssh-sans-x\n"
  3404. " %base-packages))\n"
  3405. "\n"
  3406. #. type: lisp
  3407. #: guix-git/doc/guix-cookbook.texi:2166
  3408. #, no-wrap
  3409. msgid ""
  3410. " (services (cons*\n"
  3411. " (service dhcp-client-service-type)\n"
  3412. " (service openssh-service-type\n"
  3413. " (openssh-configuration\n"
  3414. " (openssh openssh-sans-x)\n"
  3415. " (password-authentication? #false)\n"
  3416. " (authorized-keys\n"
  3417. " `((\"janedoe\" ,(local-file \"janedoe_rsa.pub\"))\n"
  3418. " (\"root\" ,(local-file \"janedoe_rsa.pub\"))))))\n"
  3419. " %base-services)))\n"
  3420. msgstr ""
  3421. " (services (cons*\n"
  3422. " (service dhcp-client-service-type)\n"
  3423. " (service openssh-service-type\n"
  3424. " (openssh-configuration\n"
  3425. " (openssh openssh-sans-x)\n"
  3426. " (password-authentication? #false)\n"
  3427. " (authorized-keys\n"
  3428. " `((\"janedoe\" ,(local-file \"janedoe_rsa.pub\"))\n"
  3429. " (\"root\" ,(local-file \"janedoe_rsa.pub\"))))))\n"
  3430. " %base-services)))\n"
  3431. #. type: Plain text
  3432. #: guix-git/doc/guix-cookbook.texi:2169
  3433. msgid "Replace the following fields in the above configuration:"
  3434. msgstr "Ersetzen Sie in der obigen Konfiguration aber folgende Felder:"
  3435. #. type: lisp
  3436. #: guix-git/doc/guix-cookbook.texi:2177
  3437. #, no-wrap
  3438. msgid ""
  3439. "(host-name \"my-server\") ; replace with your server name\n"
  3440. "; if you chose a linode server outside the U.S., then\n"
  3441. "; use tzselect to find a correct timezone string\n"
  3442. "(timezone \"America/New_York\") ; if needed replace timezone\n"
  3443. "(name \"janedoe\") ; replace with your username\n"
  3444. "(\"janedoe\" ,(local-file \"janedoe_rsa.pub\")) ; replace with your ssh key\n"
  3445. "(\"root\" ,(local-file \"janedoe_rsa.pub\")) ; replace with your ssh key\n"
  3446. msgstr ""
  3447. "(host-name \"my-server\") ; hier sollte Ihr Servername stehen\n"
  3448. "; Wenn Sie sich einen Linode-Server außerhalb der USA ausgesucht\n"
  3449. "; haben, finden Sie mit tzselect die richtige Zeitzonenangabe.\n"
  3450. "(timezone \"America/New_York\") ; Zeitzone ersetzen wenn nötig\n"
  3451. "(name \"janedoe\") ; Ersetzen durch Ihren Benutzernamen\n"
  3452. "(\"janedoe\" ,(local-file \"janedoe_rsa.pub\")) ; Ersetzen durch Ihren SSH-Schlüssel\n"
  3453. "(\"root\" ,(local-file \"janedoe_rsa.pub\")) ; Ersetzen durch Ihren SSH-Schlüssel\n"
  3454. #. type: Plain text
  3455. #: guix-git/doc/guix-cookbook.texi:2184
  3456. msgid "The last line in the above example lets you log into the server as root and set the initial root password (see the note at the end of this recipe about root login). After you have done this, you may delete that line from your configuration and reconfigure to prevent root login."
  3457. msgstr "Durch die letzte Zeile im obigen Beispiel können Sie sich als Administratornutzer root auf dem Server anmelden und das anfängliche Passwort für root festlegen (lesen Sie den Hinweis zur Anmeldung als root am Ende dieses Rezepts). Nachdem das erledigt ist, können Sie die Zeile aus Ihrer Konfiguration löschen und Ihr System rekonfigurieren, damit eine Anmeldung als root nicht mehr möglich ist."
  3458. #. type: Plain text
  3459. #: guix-git/doc/guix-cookbook.texi:2189
  3460. msgid "Copy your ssh public key (eg: @file{~/.ssh/id_rsa.pub}) as @file{@var{<your-username-here>}_rsa.pub} and put @file{guix-config.scm} in the same directory. In a new terminal run these commands."
  3461. msgstr "Kopieren Sie Ihren öffentlichen SSH-Schlüssel (z.B.@: @file{~/.ssh/id_rsa.pub}) in die Datei @file{@var{<Ihr-Benutzername>}_rsa.pub} und Ihre @file{guix-config.scm} ins selbe Verzeichnis. Führen Sie dann diese Befehle in einem neuen Terminal aus:"
  3462. #. type: example
  3463. #: guix-git/doc/guix-cookbook.texi:2194
  3464. #, no-wrap
  3465. msgid ""
  3466. "sftp root@@<remote server ip address>\n"
  3467. "put /path/to/files/<username>_rsa.pub .\n"
  3468. "put /path/to/files/guix-config.scm .\n"
  3469. msgstr ""
  3470. "sftp root@@<IP-Adresse-des-entfernten-Servers>\n"
  3471. "put /pfad/mit/dateien/<Benutzername>_rsa.pub .\n"
  3472. "put /pfad/mit/dateien/guix-config.scm .\n"
  3473. #. type: Plain text
  3474. #: guix-git/doc/guix-cookbook.texi:2197
  3475. msgid "In your first terminal, mount the guix drive:"
  3476. msgstr "Binden Sie mit Ihrem ersten Terminal das Guix-Laufwerk ein:"
  3477. #. type: example
  3478. #: guix-git/doc/guix-cookbook.texi:2201
  3479. #, no-wrap
  3480. msgid ""
  3481. "mkdir /mnt/guix\n"
  3482. "mount /dev/sdc /mnt/guix\n"
  3483. msgstr ""
  3484. "mkdir /mnt/guix\n"
  3485. "mount /dev/sdc /mnt/guix\n"
  3486. #. type: Plain text
  3487. #: guix-git/doc/guix-cookbook.texi:2206
  3488. msgid "Due to the way we set up the bootloader section of the guix-config.scm, only the grub configuration file will be installed. So, we need to copy over some of the other GRUB stuff already installed on the Debian system:"
  3489. msgstr "Aufgrund der Art und Weise, wie wir den Bootloader-Abschnitt von @file{guix-config.scm} oben festgelegt haben, installieren wir GRUB nicht vollständig. Stattdessen installieren wir nur unsere GRUB-Konfigurationsdatei. Daher müssen wir ein bisschen von den anderen GRUB-Einstellungen vom Debian-System kopieren:"
  3490. #. type: example
  3491. #: guix-git/doc/guix-cookbook.texi:2210
  3492. #, no-wrap
  3493. msgid ""
  3494. "mkdir -p /mnt/guix/boot/grub\n"
  3495. "cp -r /boot/grub/* /mnt/guix/boot/grub/\n"
  3496. msgstr ""
  3497. "mkdir -p /mnt/guix/boot/grub\n"
  3498. "cp -r /boot/grub/* /mnt/guix/boot/grub/\n"
  3499. #. type: Plain text
  3500. #: guix-git/doc/guix-cookbook.texi:2213
  3501. msgid "Now initialize the Guix installation:"
  3502. msgstr "Initialisieren Sie nun die Guix-Installation:"
  3503. #. type: example
  3504. #: guix-git/doc/guix-cookbook.texi:2216
  3505. #, no-wrap
  3506. msgid "guix system init guix-config.scm /mnt/guix\n"
  3507. msgstr "guix system init guix-config.scm /mnt/guix\n"
  3508. #. type: Plain text
  3509. #: guix-git/doc/guix-cookbook.texi:2220
  3510. msgid "Ok, power it down! Now from the Linode console, select boot and select \"Guix\"."
  3511. msgstr "OK, fahren Sie Ihn jetzt herunter! Von der Linode-Konsole wählen Sie Booten aus und wählen „Guix“."
  3512. #. type: Plain text
  3513. #: guix-git/doc/guix-cookbook.texi:2223
  3514. msgid "Once it boots, you should be able to log in via SSH! (The server config will have changed though.) You may encounter an error like:"
  3515. msgstr "Sobald es gestartet ist, sollten Sie sich über SSH anmelden können! (Allerdings wird sich die Serverkonfiguration geändert haben.) Ihnen könnte eine Fehlermeldung wie diese hier gezeigt werden:"
  3516. #. type: example
  3517. #: guix-git/doc/guix-cookbook.texi:2239
  3518. #, no-wrap
  3519. msgid ""
  3520. "$ ssh root@@<server ip address>\n"
  3521. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3522. "@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @\n"
  3523. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3524. "IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!\n"
  3525. "Someone could be eavesdropping on you right now (man-in-the-middle attack)!\n"
  3526. "It is also possible that a host key has just been changed.\n"
  3527. "The fingerprint for the ECDSA key sent by the remote host is\n"
  3528. "SHA256:0B+wp33w57AnKQuHCvQP0+ZdKaqYrI/kyU7CfVbS7R4.\n"
  3529. "Please contact your system administrator.\n"
  3530. "Add correct host key in /home/joshua/.ssh/known_hosts to get rid of this message.\n"
  3531. "Offending ECDSA key in /home/joshua/.ssh/known_hosts:3\n"
  3532. "ECDSA host key for 198.58.98.76 has changed and you have requested strict checking.\n"
  3533. "Host key verification failed.\n"
  3534. msgstr ""
  3535. "$ ssh root@@<server ip address>\n"
  3536. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3537. "@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @\n"
  3538. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3539. "IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!\n"
  3540. "Someone could be eavesdropping on you right now (man-in-the-middle attack)!\n"
  3541. "It is also possible that a host key has just been changed.\n"
  3542. "The fingerprint for the ECDSA key sent by the remote host is\n"
  3543. "SHA256:0B+wp33w57AnKQuHCvQP0+ZdKaqYrI/kyU7CfVbS7R4.\n"
  3544. "Please contact your system administrator.\n"
  3545. "Add correct host key in /home/joshua/.ssh/known_hosts to get rid of this message.\n"
  3546. "Offending ECDSA key in /home/joshua/.ssh/known_hosts:3\n"
  3547. "ECDSA host key for 198.58.98.76 has changed and you have requested strict checking.\n"
  3548. "Host key verification failed.\n"
  3549. #. type: Plain text
  3550. #: guix-git/doc/guix-cookbook.texi:2243
  3551. msgid "Either delete @file{~/.ssh/known_hosts} file, or delete the offending line starting with your server IP address."
  3552. msgstr "Löschen Sie entweder die ganze Datei @file{~/.ssh/known_hosts} oder nur die ungültig gewordene Zeile, die mit der IP-Adresse Ihres Servers beginnt."
  3553. #. type: Plain text
  3554. #: guix-git/doc/guix-cookbook.texi:2245
  3555. msgid "Be sure to set your password and root's password."
  3556. msgstr "Denken Sie daran, Ihr Passwort und das Passwort des Administratornutzers root festzulegen."
  3557. #. type: example
  3558. #: guix-git/doc/guix-cookbook.texi:2250
  3559. #, no-wrap
  3560. msgid ""
  3561. "ssh root@@<remote ip address>\n"
  3562. "passwd ; for the root password\n"
  3563. "passwd <username> ; for the user password\n"
  3564. msgstr ""
  3565. "ssh root@@<IP-Adresse-des-entfernten-Servers>\n"
  3566. "passwd ; für das root-Passswort\n"
  3567. "passwd <benutzername> ; für das Passwort des normalen Benutzers\n"
  3568. #. type: Plain text
  3569. #: guix-git/doc/guix-cookbook.texi:2257
  3570. msgid "You may not be able to run the above commands at this point. If you have issues remotely logging into your linode box via SSH, then you may still need to set your root and user password initially by clicking on the ``Launch Console'' option in your linode. Choose the ``Glish'' instead of ``Weblish''. Now you should be able to ssh into the machine."
  3571. msgstr "Es kann sein, dass die obigen Befehle noch nicht funktionieren. Wenn Sie Probleme haben, sich aus der Ferne über SSH bei Ihrer Linode-Kiste anzumelden, dann müssen Sie vielleicht Ihr anfängliches Passwort für root und das normale Benutzerkonto festlegen, indem Sie auf die „Launch Console“-Option in Ihrer Linode klicken. Wählen Sie „Glish“ statt „Weblish“. Jetzt sollten Sie über SSH in Ihre Maschine ’reinkommen."
  3572. #. type: Plain text
  3573. #: guix-git/doc/guix-cookbook.texi:2261
  3574. msgid "Hooray! At this point you can shut down the server, delete the Debian disk, and resize the Guix to the rest of the size. Congratulations!"
  3575. msgstr "Hurra! Nun können Sie den Server herunterfahren, die Debian-Platte löschen und Guix auf den gesamten verfügbaren Speicher erweitern. Herzlichen Glückwunsch!"
  3576. #. type: Plain text
  3577. #: guix-git/doc/guix-cookbook.texi:2266
  3578. msgid "By the way, if you save it as a disk image right at this point, you'll have an easy time spinning up new Guix images! You may need to down-size the Guix image to 6144MB, to save it as an image. Then you can resize it again to the max size."
  3579. msgstr "Übrigens, wenn Sie das Ergebnis jetzt als „Disk Image“ speichern, können Sie neue Guix-Abbilder von da an leicht einrichten! Vielleicht müssen Sie die Größe des Guix-Abbilds auf 6144MB verkleinern, um es als Abbild speichern zu können. Danach können Sie es wieder auf die Maximalgröße vergrößern."
  3580. #. type: Plain text
  3581. #: guix-git/doc/guix-cookbook.texi:2275
  3582. msgid "To bind mount a file system, one must first set up some definitions before the @code{operating-system} section of the system definition. In this example we will bind mount a folder from a spinning disk drive to @file{/tmp}, to save wear and tear on the primary SSD, without dedicating an entire partition to be mounted as @file{/tmp}."
  3583. msgstr "Um ein Dateisystem per „bind mount“ einzubinden, braucht man zunächst ein paar Definitionen. Fügen Sie diese noch vor dem @code{operating-system}-Abschnitt Ihrer Systemdefinition ein. In diesem Beispiel binden wir ein Verzeichnis auf einem Magnetfestplattenlaufwerk an @file{/tmp}, um die primäre SSD weniger abzunutzen, ohne dass wir extra eine ganze Partition für @file{/tmp} erzeugen müssen."
  3584. #. type: Plain text
  3585. #: guix-git/doc/guix-cookbook.texi:2278
  3586. msgid "First, the source drive that hosts the folder we wish to bind mount should be defined, so that the bind mount can depend on it."
  3587. msgstr "Als Erstes sollten wir das Quelllaufwerk definieren, wo wir das Verzeichnis für den Bind-Mount unterbringen. Dann kann der Bind-Mount es als Abhängigkeit benutzen."
  3588. #. type: lisp
  3589. #: guix-git/doc/guix-cookbook.texi:2285
  3590. #, no-wrap
  3591. msgid ""
  3592. "(define source-drive ;; \"source-drive\" can be named anything you want.\n"
  3593. " (file-system\n"
  3594. " (device (uuid \"UUID goes here\"))\n"
  3595. " (mount-point \"/path-to-spinning-disk-goes-here\")\n"
  3596. " (type \"ext4\"))) ;; Make sure to set this to the appropriate type for your drive.\n"
  3597. msgstr ""
  3598. "(define quelllaufwerk ;; \"quelllaufwerk\" kann man nennen, wie man will\n"
  3599. " (file-system\n"
  3600. " (device (uuid \"hier kommt die UUID hin\"))\n"
  3601. " (mount-point \"/hier-der-pfad-zur-magnetfestplatte\")\n"
  3602. " (type \"ext4\"))) ;; Legen Sie den dazu passenden Typ fest.\n"
  3603. #. type: Plain text
  3604. #: guix-git/doc/guix-cookbook.texi:2289
  3605. msgid "The source folder must also be defined, so that guix will know it's not a regular block device, but a folder."
  3606. msgstr "Auch das Quellverzeichnis muss so definiert werden, dass Guix es nicht für ein reguläres blockorientiertes Gerät hält, sondern es als Verzeichnis erkennt."
  3607. #. type: lisp
  3608. #: guix-git/doc/guix-cookbook.texi:2291
  3609. #, no-wrap
  3610. msgid "(define (%source-directory) \"/path-to-spinning-disk-goes-here/tmp\") ;; \"source-directory\" can be named any valid variable name.\n"
  3611. msgstr "(define (%quellverzeichnis) \"/hier-der-pfad-zur-magnetfestplatte/tmp\") ;; Dem \"quellverzeichnis\" kann man einen beliebigen gültigen Variablennamen geben.\n"
  3612. #. type: Plain text
  3613. #: guix-git/doc/guix-cookbook.texi:2295
  3614. msgid "Finally, inside the @code{file-systems} definition, we must add the mount itself."
  3615. msgstr "In der Definition des @code{file-systems}-Felds müssen wir die Einbindung einfügen."
  3616. #. type: lisp
  3617. #: guix-git/doc/guix-cookbook.texi:2298
  3618. #, no-wrap
  3619. msgid ""
  3620. "(file-systems (cons*\n"
  3621. "\n"
  3622. msgstr ""
  3623. "(file-systems (cons*\n"
  3624. "\n"
  3625. #. type: lisp
  3626. #: guix-git/doc/guix-cookbook.texi:2300
  3627. #, no-wrap
  3628. msgid ""
  3629. " ...<other drives omitted for clarity>...\n"
  3630. "\n"
  3631. msgstr ""
  3632. " …<hier würden andere Laufwerke stehen>…\n"
  3633. "\n"
  3634. #. type: lisp
  3635. #: guix-git/doc/guix-cookbook.texi:2302
  3636. #, no-wrap
  3637. msgid ""
  3638. " source-drive ;; Must match the name you gave the source drive in the earlier definition.\n"
  3639. "\n"
  3640. msgstr ""
  3641. " quelllaufwerk ;; Muss dem Namen entsprechen, den Sie vorher ans Quelllaufwerk vergeben haben.\n"
  3642. "\n"
  3643. #. type: lisp
  3644. #: guix-git/doc/guix-cookbook.texi:2310
  3645. #, no-wrap
  3646. msgid ""
  3647. " (file-system\n"
  3648. " (device (%source-directory)) ;; Make sure \"source-directory\" matches your earlier definition.\n"
  3649. " (mount-point \"/tmp\")\n"
  3650. " (type \"none\") ;; We are mounting a folder, not a partition, so this type needs to be \"none\"\n"
  3651. " (flags '(bind-mount))\n"
  3652. " (dependencies (list source-drive)) ;; Ensure \"source-drive\" matches what you've named the variable for the drive.\n"
  3653. " )\n"
  3654. "\n"
  3655. msgstr ""
  3656. " (file-system\n"
  3657. " (device (%quellverzeichnis)) ;; Geben Sie Acht, dass das \"quellverzeichnis\" so heißt wie in der Definition vorher.\n"
  3658. " (mount-point \"/tmp\")\n"
  3659. " (type \"none\") ;; Wir binden ein Verzeichnis und keine Partition ein, daher muss dieser Typ \"none\" sein.\n"
  3660. " (flags '(bind-mount))\n"
  3661. " (dependencies (list quelllaufwerk)) ;; Geben Sie Acht, dass \"quelllaufwerk\" dem Namen entspricht, den Sie der Variablen für das Laufwerk gegeben haben.\n"
  3662. " )\n"
  3663. "\n"
  3664. #. type: lisp
  3665. #: guix-git/doc/guix-cookbook.texi:2312
  3666. #, no-wrap
  3667. msgid ""
  3668. " ...<other drives omitted for clarity>...\n"
  3669. "\n"
  3670. msgstr ""
  3671. " …<hier würden andere Laufwerke stehen>…\n"
  3672. "\n"
  3673. #. type: lisp
  3674. #: guix-git/doc/guix-cookbook.texi:2314
  3675. #, no-wrap
  3676. msgid " ))\n"
  3677. msgstr " ))\n"
  3678. #. type: Plain text
  3679. #: guix-git/doc/guix-cookbook.texi:2321
  3680. msgid "Guix daemon can use a HTTP proxy to get substitutes, here we are configuring it to get them via Tor."
  3681. msgstr "Der Guix-Daemon kann einen HTTP-Proxy benutzen, wenn er Substitute herunterlädt. Wir wollen ihn hier so konfigurieren, dass Substitute über Tor bezogen werden."
  3682. #. type: quotation
  3683. #: guix-git/doc/guix-cookbook.texi:2322
  3684. #, no-wrap
  3685. msgid "Warning"
  3686. msgstr "Warnung"
  3687. #. type: quotation
  3688. #: guix-git/doc/guix-cookbook.texi:2328
  3689. msgid "@emph{Not all} Guix daemon's traffic will go through Tor! Only HTTP/HTTPS will get proxied; FTP, Git protocol, SSH, etc connections will still go through the clearnet. Again, this configuration isn't foolproof some of your traffic won't get routed by Tor at all. Use it at your own risk."
  3690. msgstr "@emph{Nicht aller} Datenverkehr des Guix-Daemons wird dadurch über Tor laufen! Nur HTTP und HTTPS durchläuft den Proxy, @emph{nicht} so ist es bei FTP, dem Git-Protokokl, SSH etc.@:, diese laufen weiterhin durch’s „Clearnet“. Die Konfiguration ist also @emph{nicht} narrensicher; ein Teil Ihres Datenverkehrs wird gar nicht über Tor geleitet. Verwenden Sie sie nur auf Ihr eigenes Risiko!"
  3691. #. type: quotation
  3692. #: guix-git/doc/guix-cookbook.texi:2334
  3693. msgid "Also note that the procedure described here applies only to package substitution. When you update your guix distribution with @command{guix pull}, you still need to use @command{torsocks} if you want to route the connection to guix's git repository servers through Tor."
  3694. msgstr "Beachten Sie außerdem, dass sich die hier beschriebene Prozedur nur auf Paketsubstitute bezieht. Wenn Sie Ihre Guix-Distribution mit @command{guix pull} aktualisieren, müssen Sie noch immer @command{torsocks} benutzen, wenn Sie die Verbindung zu Guix’ Git-Repository über Tor leiten wollen."
  3695. #. type: Plain text
  3696. #: guix-git/doc/guix-cookbook.texi:2339
  3697. msgid "Guix's substitute server is available as a Onion service, if you want to use it to get your substitutes through Tor configure your system as follow:"
  3698. msgstr "Der Substitutserver von Guix ist als Onion-Dienst verfügbar, wenn Sie ihn benutzen möchten, um Ihre Substitute über Tor zu laden, dann konfigurieren Sie Ihr System wie folgt:"
  3699. #. type: lisp
  3700. #: guix-git/doc/guix-cookbook.texi:2343
  3701. #, no-wrap
  3702. msgid ""
  3703. "(use-modules (gnu))\n"
  3704. "(use-service-module base networking)\n"
  3705. "\n"
  3706. msgstr ""
  3707. "(use-modules (gnu))\n"
  3708. "(use-service-module base networking)\n"
  3709. "\n"
  3710. #. type: lisp
  3711. #: guix-git/doc/guix-cookbook.texi:2359
  3712. #, no-wrap
  3713. msgid ""
  3714. "(operating-system\n"
  3715. " …\n"
  3716. " (services\n"
  3717. " (cons\n"
  3718. " (service tor-service-type\n"
  3719. " (tor-configuration\n"
  3720. " (config-file (plain-file \"tor-config\"\n"
  3721. " \"HTTPTunnelPort 127.0.0.1:9250\"))))\n"
  3722. " (modify-services %base-services\n"
  3723. " (guix-service-type\n"
  3724. " config => (guix-configuration\n"
  3725. " (inherit config)\n"
  3726. " ;; ci.guix.gnu.org's Onion service\n"
  3727. " (substitute-urls \"https://bp7o7ckwlewr4slm.onion\")\n"
  3728. " (http-proxy \"http://localhost:9250\")))))))\n"
  3729. msgstr ""
  3730. "(operating-system\n"
  3731. " …\n"
  3732. " (services\n"
  3733. " (cons\n"
  3734. " (service tor-service-type\n"
  3735. " (tor-configuration\n"
  3736. " (config-file (plain-file \"tor-config\"\n"
  3737. " \"HTTPTunnelPort 127.0.0.1:9250\"))))\n"
  3738. " (modify-services %base-services\n"
  3739. " (guix-service-type\n"
  3740. " config => (guix-configuration\n"
  3741. " (inherit config)\n"
  3742. " ;; Onion-Dienst von ci.guix.gnu.org\n"
  3743. " (substitute-urls \"https://bp7o7ckwlewr4slm.onion\")\n"
  3744. " (http-proxy \"http://localhost:9250\")))))))\n"
  3745. #. type: Plain text
  3746. #: guix-git/doc/guix-cookbook.texi:2368
  3747. msgid "This will keep a tor process running that provides a HTTP CONNECT tunnel which will be used by @command{guix-daemon}. The daemon can use other protocols than HTTP(S) to get remote resources, request using those protocols won't go through Tor since we are only setting a HTTP tunnel here. Note that @code{substitutes-urls} is using HTTPS and not HTTP or it won't work, that's a limitation of Tor's tunnel; you may want to use @command{privoxy} instead to avoid such limitations."
  3748. msgstr "Dadurch wird ständig ein Tor-Prozess laufen, der einen HTTP-CONNECT-Tunnel für die Nutzung durch den @command{guix-daemon} bereitstellt. Der Daemon kann andere Protokolle als HTTP(S) benutzen, um entfernte Ressourcen abzurufen, und Anfragen über solche Protokolle werden Tor @emph{nicht} durchlaufen, weil wir hier nur einen HTTP-Tunnel festlegen. Beachten Sie, dass wir für @code{substitutes-urls} HTTPS statt HTTP benutzen, sonst würde es nicht funktionieren. Dabei handelt es sich um eine Einschränkung von Tors Tunnel; vielleicht möchten Sie stattdessen @command{privoxy} benutzen, um dieser Einschränkung nicht zu unterliegen."
  3749. #. type: Plain text
  3750. #: guix-git/doc/guix-cookbook.texi:2372
  3751. msgid "If you don't want to always get substitutes through Tor but using it just some of the times, then skip the @code{guix-configuration}. When you want to get a substitute from the Tor tunnel run:"
  3752. msgstr "Wenn Sie Substitute nicht immer, sondern nur manchmal über Tor beziehen wollen, dann überspringen Sie das mit der @code{guix-configuration}. Führen Sie einfach das hier aus, wenn Sie ein Substitut über den Tor-Tunnel laden möchten:"
  3753. #. type: example
  3754. #: guix-git/doc/guix-cookbook.texi:2376
  3755. #, no-wrap
  3756. msgid ""
  3757. "sudo herd set-http-proxy guix-daemon http://localhost:9250\n"
  3758. "guix build --substitute-urls=https://bp7o7ckwlewr4slm.onion …\n"
  3759. msgstr ""
  3760. "sudo herd set-http-proxy guix-daemon http://localhost:9250\n"
  3761. "guix build --substitute-urls=https://bp7o7ckwlewr4slm.onion …\n"
  3762. #. type: cindex
  3763. #: guix-git/doc/guix-cookbook.texi:2380
  3764. #, no-wrap
  3765. msgid "nginx, lua, openresty, resty"
  3766. msgstr "nginx, lua, openresty, resty"
  3767. #. type: Plain text
  3768. #: guix-git/doc/guix-cookbook.texi:2383
  3769. msgid "NGINX could be extended with Lua scripts."
  3770. msgstr "NGINX lässt sich mit Lua-Skripts erweitern."
  3771. #. type: Plain text
  3772. #: guix-git/doc/guix-cookbook.texi:2386
  3773. msgid "Guix provides NGINX service with ability to load Lua module and specific Lua packages, and reply to requests by evaluating Lua scripts."
  3774. msgstr "Guix stellt einen NGINX-Dienst bereit, mit dem das Lua-Modul und bestimmte Lua-Pakete geladen werden können, so dass Anfragen beantwortet werden, indem Lua-Skripte ausgewertet werden."
  3775. #. type: Plain text
  3776. #: guix-git/doc/guix-cookbook.texi:2390
  3777. msgid "The following example demonstrates system definition with configuration to evaluate @file{index.lua} Lua script on HTTP request to @uref{http://localhost/hello} endpoint:"
  3778. msgstr "Folgendes Beispiel zeigt eine Systemdefinition mit Einstellungen, um das Lua-Skript @file{index.lua} bei HTTP-Anfragen an den Endpunkt @uref{http://localhost/hello} auszuwerten:"
  3779. #. type: example
  3780. #: guix-git/doc/guix-cookbook.texi:2393
  3781. #, no-wrap
  3782. msgid ""
  3783. "local shell = require \"resty.shell\"\n"
  3784. "\n"
  3785. msgstr ""
  3786. "local shell = require \"resty.shell\"\n"
  3787. "\n"
  3788. #. type: example
  3789. #: guix-git/doc/guix-cookbook.texi:2397
  3790. #, no-wrap
  3791. msgid ""
  3792. "local stdin = \"\"\n"
  3793. "local timeout = 1000 -- ms\n"
  3794. "local max_size = 4096 -- byte\n"
  3795. "\n"
  3796. msgstr ""
  3797. "local stdin = \"\"\n"
  3798. "local timeout = 1000 -- ms\n"
  3799. "local max_size = 4096 -- byte\n"
  3800. "\n"
  3801. #. type: example
  3802. #: guix-git/doc/guix-cookbook.texi:2400
  3803. #, no-wrap
  3804. msgid ""
  3805. "local ok, stdout, stderr, reason, status =\n"
  3806. " shell.run([[/run/current-system/profile/bin/ls /tmp]], stdin, timeout, max_size)\n"
  3807. "\n"
  3808. msgstr ""
  3809. "local ok, stdout, stderr, reason, status =\n"
  3810. " shell.run([[/run/current-system/profile/bin/ls /tmp]], stdin, timeout, max_size)\n"
  3811. "\n"
  3812. #. type: example
  3813. #: guix-git/doc/guix-cookbook.texi:2402
  3814. #, no-wrap
  3815. msgid "ngx.say(stdout)\n"
  3816. msgstr "ngx.say(stdout)\n"
  3817. #. type: lisp
  3818. #: guix-git/doc/guix-cookbook.texi:2433
  3819. #, no-wrap
  3820. msgid ""
  3821. "(use-modules (gnu))\n"
  3822. "(use-service-modules #;… web)\n"
  3823. "(use-package-modules #;… lua)\n"
  3824. "(operating-system\n"
  3825. " ;; …\n"
  3826. " (services\n"
  3827. " ;; …\n"
  3828. " (service nginx-service-type\n"
  3829. " (nginx-configuration\n"
  3830. " (modules\n"
  3831. " (list\n"
  3832. " (file-append nginx-lua-module \"/etc/nginx/modules/ngx_http_lua_module.so\")))\n"
  3833. " (lua-package-path (list lua-resty-core\n"
  3834. " lua-resty-lrucache\n"
  3835. " lua-resty-signal\n"
  3836. " lua-tablepool\n"
  3837. " lua-resty-shell))\n"
  3838. " (lua-package-cpath (list lua-resty-signal))\n"
  3839. " (server-blocks\n"
  3840. " (list (nginx-server-configuration\n"
  3841. " (server-name '(\"localhost\"))\n"
  3842. " (listen '(\"80\"))\n"
  3843. " (root \"/etc\")\n"
  3844. " (locations (list\n"
  3845. " (nginx-location-configuration\n"
  3846. " (uri \"/hello\")\n"
  3847. " (body (list #~(format #f \"content_by_lua_file ~s;\"\n"
  3848. " #$(local-file \"index.lua\"))))))))))))))\n"
  3849. msgstr ""
  3850. "(use-modules (gnu))\n"
  3851. "(use-service-modules #;… web)\n"
  3852. "(use-package-modules #;… lua)\n"
  3853. "(operating-system\n"
  3854. " ;; …\n"
  3855. " (services\n"
  3856. " ;; …\n"
  3857. " (service nginx-service-type\n"
  3858. " (nginx-configuration\n"
  3859. " (modules\n"
  3860. " (list\n"
  3861. " (file-append nginx-lua-module \"/etc/nginx/modules/ngx_http_lua_module.so\")))\n"
  3862. " (lua-package-path (list lua-resty-core\n"
  3863. " lua-resty-lrucache\n"
  3864. " lua-resty-signal\n"
  3865. " lua-tablepool\n"
  3866. " lua-resty-shell))\n"
  3867. " (lua-package-cpath (list lua-resty-signal))\n"
  3868. " (server-blocks\n"
  3869. " (list (nginx-server-configuration\n"
  3870. " (server-name '(\"localhost\"))\n"
  3871. " (listen '(\"80\"))\n"
  3872. " (root \"/etc\")\n"
  3873. " (locations (list\n"
  3874. " (nginx-location-configuration\n"
  3875. " (uri \"/hello\")\n"
  3876. " (body (list #~(format #f \"content_by_lua_file ~s;\"\n"
  3877. " #$(local-file \"index.lua\"))))))))))))))\n"
  3878. #. type: Plain text
  3879. #: guix-git/doc/guix-cookbook.texi:2444
  3880. msgid "Guix is a functional package manager that offers many features beyond what more traditional package managers can do. To the uninitiated, those features might not have obvious use cases at first. The purpose of this chapter is to demonstrate some advanced package management concepts."
  3881. msgstr "Guix ist ein funktionales Paketverwaltungsprogramm, das weit mehr Funktionalitäten als traditionelle Paketverwalter anbietet. Für nicht Eingeweihte sind deren Anwendungsfälle nicht sofort ersichtlich. Dieses Kapitel ist dazu da, manche fortgeschrittenen Paketverwaltungskonzepte zu demonstrieren."
  3882. #. type: Plain text
  3883. #: guix-git/doc/guix-cookbook.texi:2447
  3884. msgid "@pxref{Package Management,,, guix, GNU Guix Reference Manual} for a complete reference."
  3885. msgstr "Siehe @ref{Paketverwaltung,,, guix.de, Referenzhandbuch zu GNU Guix} für eine vollständige Referenz."
  3886. #. type: section
  3887. #: guix-git/doc/guix-cookbook.texi:2450 guix-git/doc/guix-cookbook.texi:2452
  3888. #: guix-git/doc/guix-cookbook.texi:2453
  3889. #, no-wrap
  3890. msgid "Guix Profiles in Practice"
  3891. msgstr "Guix-Profile in der Praxis"
  3892. #. type: menuentry
  3893. #: guix-git/doc/guix-cookbook.texi:2450
  3894. msgid "Strategies for multiple profiles and manifests."
  3895. msgstr "Strategien für mehrere Profile und Manifeste."
  3896. #. type: Plain text
  3897. #: guix-git/doc/guix-cookbook.texi:2458
  3898. msgid "Guix provides a very useful feature that may be quite foreign to newcomers: @emph{profiles}. They are a way to group package installations together and all users on the same system are free to use as many profiles as they want."
  3899. msgstr "Guix gibt uns eine sehr nützliche Funktionalität, die Neuankömmlingen sehr fremd sein dürfte: @emph{Profile}. Mit ihnen kann man Paketinstallationen zusammenfassen und jeder Benutzer desselben Systems kann so viele davon anlegen, wie sie oder er möchte."
  3900. #. type: Plain text
  3901. #: guix-git/doc/guix-cookbook.texi:2463
  3902. msgid "Whether you're a developer or not, you may find that multiple profiles bring you great power and flexibility. While they shift the paradigm somewhat compared to @emph{traditional package managers}, they are very convenient to use once you've understood how to set them up."
  3903. msgstr "Ob Sie ein Entwickler sind oder nicht, Sie dürften feststellen, dass mehrere Profile ein mächtiges Werkzeug sind, das Sie flexibler macht. Zwar ist es ein gewisser Paradigmenwechsel verglichen mit @emph{traditioneller Paketverwaltung}, doch sind sie sehr praktisch, sobald man im Umgang mit ihnen den Dreh ’raushat."
  3904. #. type: Plain text
  3905. #: guix-git/doc/guix-cookbook.texi:2469
  3906. msgid "If you are familiar with Python's @samp{virtualenv}, you can think of a profile as a kind of universal @samp{virtualenv} that can hold any kind of software whatsoever, not just Python software. Furthermore, profiles are self-sufficient: they capture all the runtime dependencies which guarantees that all programs within a profile will always work at any point in time."
  3907. msgstr "Wenn Ihnen Pythons @samp{virtualenv} vertraut ist, können Sie sich ein Profil als eine Art universelles @samp{virtualenv} vorstellen, das jede Art von Software enthalten kann und nicht nur Python-Software. Desweiteren sind Profile selbstversorgend: Sie schließen alle Laufzeitabhängigkeiten ein und garantieren somit, dass alle Programme innerhalb eines Profils stets zu jeder Zeit funktionieren werden."
  3908. #. type: Plain text
  3909. #: guix-git/doc/guix-cookbook.texi:2471
  3910. msgid "Multiple profiles have many benefits:"
  3911. msgstr "Mehrere Profile bieten viele Vorteile:"
  3912. #. type: itemize
  3913. #: guix-git/doc/guix-cookbook.texi:2475
  3914. msgid "Clean semantic separation of the various packages a user needs for different contexts."
  3915. msgstr "Klare semantische Trennung der verschiedenen Pakete, die ein Nutzer für verschiedene Kontexte braucht."
  3916. #. type: itemize
  3917. #: guix-git/doc/guix-cookbook.texi:2479
  3918. msgid "Multiple profiles can be made available into the environment either on login or within a dedicated shell."
  3919. msgstr "Mehrere Profile können in der Umgebung verfügbar gemacht werden, entweder beim Anmelden oder in einer eigenen Shell."
  3920. #. type: itemize
  3921. #: guix-git/doc/guix-cookbook.texi:2483
  3922. msgid "Profiles can be loaded on demand. For instance, the user can use multiple shells, each of them running different profiles."
  3923. msgstr "Profile können bei Bedarf geladen werden. Zum Beispiel kann der Nutzer mehrere Unter-Shells benutzen, von denen jede ein anderes Profil ausführt."
  3924. #. type: itemize
  3925. #: guix-git/doc/guix-cookbook.texi:2488
  3926. msgid "Isolation: Programs from one profile will not use programs from the other, and the user can even install different versions of the same programs to the two profiles without conflict."
  3927. msgstr "Isolierung: Programme aus dem einen Profil werden keine Programme aus dem anderen benutzen, und der Nutzer kann sogar verschiedene Versionen desselben Programms in die zwei Profile installieren, ohne dass es zu Konflikten kommt."
  3928. #. type: itemize
  3929. #: guix-git/doc/guix-cookbook.texi:2492
  3930. msgid "Deduplication: Profiles share dependencies that happens to be the exact same. This makes multiple profiles storage-efficient."
  3931. msgstr "Deduplizierung: Profile teilen sich Abhängigkeiten, wenn sie genau gleich sind. Dadurch sind mehrere Profile speichereffizient."
  3932. #. type: itemize
  3933. #: guix-git/doc/guix-cookbook.texi:2500
  3934. msgid "Reproducible: when used with declarative manifests, a profile can be fully specified by the Guix commit that was active when it was set up. This means that the exact same profile can be @uref{https://guix.gnu.org/blog/2018/multi-dimensional-transactions-and-rollbacks-oh-my/, set up anywhere and anytime}, with just the commit information. See the section on @ref{Reproducible profiles}."
  3935. msgstr "Reproduzierbar: Wenn man dafür deklarative Manifeste benutzt, kann ein Profil allein durch den bei dessen Einrichtung aktiven Guix-Commit eindeutig spezifiziert werden. Das bedeutet, dass man genau dasselbe Profil @uref{https://guix.gnu.org/blog/2018/multi-dimensional-transactions-and-rollbacks-oh-my/, jederzeit und überall einrichten kann} und man dafür nur die Commit-Informationen braucht. Siehe den Abschnitt über @ref{Reproduzierbare Profile}."
  3936. #. type: itemize
  3937. #: guix-git/doc/guix-cookbook.texi:2504
  3938. msgid "Easier upgrades and maintenance: Multiple profiles make it easy to keep package listings at hand and make upgrades completely frictionless."
  3939. msgstr "Leichtere Aktualisierung und Wartung: Mit mehreren Profilen ist es ein Leichtes, eine Liste von Paketen zur Hand zu haben und Aktualisierungen völlig reibungslos ablaufen zu lassen."
  3940. #. type: Plain text
  3941. #: guix-git/doc/guix-cookbook.texi:2507
  3942. msgid "Concretely, here follows some typical profiles:"
  3943. msgstr "Konkret wären diese hier typische Profile:"
  3944. #. type: itemize
  3945. #: guix-git/doc/guix-cookbook.texi:2511
  3946. msgid "The dependencies of a project you are working on."
  3947. msgstr "Die Abhängigkeiten des Projekts, an dem Sie arbeiten."
  3948. #. type: itemize
  3949. #: guix-git/doc/guix-cookbook.texi:2514
  3950. msgid "Your favourite programming language libraries."
  3951. msgstr "Die Bibliotheken Ihrer Lieblingsprogrammiersprache."
  3952. #. type: itemize
  3953. #: guix-git/doc/guix-cookbook.texi:2517
  3954. msgid "Laptop-specific programs (like @samp{powertop}) that you don't need on a desktop."
  3955. msgstr "Programme nur für Laptops (wie @samp{powertop}), für die Sie auf einem „Desktop“-Rechner keine Verwendung haben."
  3956. #. type: itemize
  3957. #: guix-git/doc/guix-cookbook.texi:2521
  3958. msgid "@TeX{}live (this one can be really useful when you need to install just one package for this one document you've just received over email)."
  3959. msgstr "@TeX{}live (das kann wirklich praktisch sein, wenn Sie nur ein einziges Paket für dieses eine Dokument installieren müssen, das Ihnen jemand in einer E-Mail geschickt hat)."
  3960. #. type: itemize
  3961. #: guix-git/doc/guix-cookbook.texi:2524
  3962. msgid "Games."
  3963. msgstr "Spiele."
  3964. #. type: Plain text
  3965. #: guix-git/doc/guix-cookbook.texi:2527
  3966. msgid "Let's dive in the set up!"
  3967. msgstr "Tauchen wir ein in deren Einrichtung!"
  3968. #. type: subsection
  3969. #: guix-git/doc/guix-cookbook.texi:2528 guix-git/doc/guix-cookbook.texi:2529
  3970. #, no-wrap
  3971. msgid "Basic setup with manifests"
  3972. msgstr "Grundlegende Einrichtung über Manifeste"
  3973. #. type: Plain text
  3974. #: guix-git/doc/guix-cookbook.texi:2533
  3975. msgid "A Guix profile can be set up @emph{via} a so-called @emph{manifest specification} that looks like this:"
  3976. msgstr "Ein Guix-Profil kann über eine sogenannte @emph{Manifest-Spezifikation} eingerichtet werden. Das sieht etwa so aus:"
  3977. #. type: lisp
  3978. #: guix-git/doc/guix-cookbook.texi:2543
  3979. #, no-wrap
  3980. msgid ""
  3981. "(specifications->manifest\n"
  3982. " '(\"package-1\"\n"
  3983. " ;; Version 1.3 of package-2.\n"
  3984. " \"package-2@@1.3\"\n"
  3985. " ;; The \"lib\" output of package-3.\n"
  3986. " \"package-3:lib\"\n"
  3987. " ; ...\n"
  3988. " \"package-N\"))\n"
  3989. msgstr ""
  3990. "(specifications->manifest\n"
  3991. " '(\"paket-1\"\n"
  3992. " ;; Version 1.3 von paket-2.\n"
  3993. " \"paket-2@@1.3\"\n"
  3994. " ;; Die \"lib\"-Ausgabe von paket-3.\n"
  3995. " \"paket-3:lib\"\n"
  3996. " ; …\n"
  3997. " \"paket-N\"))\n"
  3998. #. type: Plain text
  3999. #: guix-git/doc/guix-cookbook.texi:2547
  4000. msgid "@pxref{Invoking guix package,,, guix, GNU Guix Reference Manual}, for the syntax details."
  4001. msgstr "Siehe @ref{Aufruf von guix package,,, guix.de, Referenzhandbuch zu GNU Guix}, für Details zur Syntax."
  4002. #. type: Plain text
  4003. #: guix-git/doc/guix-cookbook.texi:2549
  4004. msgid "We can create a manifest specification per profile and install them this way:"
  4005. msgstr "Wir können eine Manifestspezifikation für jedes Profil schreiben und es auf diese Weise installieren:"
  4006. #. type: example
  4007. #: guix-git/doc/guix-cookbook.texi:2554
  4008. #, no-wrap
  4009. msgid ""
  4010. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4011. "mkdir -p \"$GUIX_EXTRA_PROFILES\"/my-project # if it does not exist yet\n"
  4012. "guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4013. msgstr ""
  4014. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4015. "mkdir -p \"$GUIX_EXTRA_PROFILES\"/my-project # wenn es noch nicht existiert\n"
  4016. "guix package --manifest=/pfad/zu/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4017. #. type: Plain text
  4018. #: guix-git/doc/guix-cookbook.texi:2558
  4019. msgid "Here we set an arbitrary variable @samp{GUIX_EXTRA_PROFILES} to point to the directory where we will store our profiles in the rest of this article."
  4020. msgstr "Hierbei haben wir eine beliebig benannte Variable @samp{GUIX_EXTRA_PROFILES} eingerichtet, die auf das Verzeichnis verweist, wo wir unsere Profile für den Rest dieses Artikels speichern wollen."
  4021. #. type: Plain text
  4022. #: guix-git/doc/guix-cookbook.texi:2564
  4023. msgid "Placing all your profiles in a single directory, with each profile getting its own sub-directory, is somewhat cleaner. This way, each sub-directory will contain all the symlinks for precisely one profile. Besides, ``looping over profiles'' becomes obvious from any programming language (e.g.@: a shell script) by simply looping over the sub-directories of @samp{$GUIX_EXTRA_PROFILES}."
  4024. msgstr "Wenn Sie all Ihre Profile in ein einzelnes Verzeichnis legen und jedes Profil ein Unterverzeichnis darin bekommt, ist die Organisation etwas verständlicher. Dadurch wird jedes Unterverzeichnis all die symbolischen Verknüpfungen für genau ein Profil enthalten. Außerdem wird es von jeder Programmiersprache aus einfach, eine „Schleife über die Profile“ zu schreiben (z.B.@: in einem Shell-Skript), indem Sie es einfach die Unterverzeichnisse von @samp{$GUIX_EXTRA_PROFILES} in einer Schleife durchlaufen lassen."
  4025. #. type: Plain text
  4026. #: guix-git/doc/guix-cookbook.texi:2566
  4027. msgid "Note that it's also possible to loop over the output of"
  4028. msgstr "Beachten Sie, dass man auch eine Schleife über die Ausgabe von"
  4029. #. type: example
  4030. #: guix-git/doc/guix-cookbook.texi:2569
  4031. #, no-wrap
  4032. msgid "guix package --list-profiles\n"
  4033. msgstr "guix package --list-profiles\n"
  4034. #. type: Plain text
  4035. #: guix-git/doc/guix-cookbook.texi:2572
  4036. msgid "although you'll probably have to filter out @file{~/.config/guix/current}."
  4037. msgstr "schreiben kann, obwohl Sie dabei wahrscheinlich @file{~/.config/guix/current} herausfiltern wollen würden."
  4038. #. type: Plain text
  4039. #: guix-git/doc/guix-cookbook.texi:2574
  4040. msgid "To enable all profiles on login, add this to your @file{~/.bash_profile} (or similar):"
  4041. msgstr "Um bei der Anmeldung alle Profile zu aktivieren, fügen Sie dies in Ihre @file{~/.bash_profile} ein (oder etwas Entsprechendes):"
  4042. #. type: example
  4043. #: guix-git/doc/guix-cookbook.texi:2584
  4044. #, no-wrap
  4045. msgid ""
  4046. "for i in $GUIX_EXTRA_PROFILES/*; do\n"
  4047. " profile=$i/$(basename \"$i\")\n"
  4048. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4049. " GUIX_PROFILE=\"$profile\"\n"
  4050. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4051. " fi\n"
  4052. " unset profile\n"
  4053. "done\n"
  4054. msgstr ""
  4055. "for i in $GUIX_EXTRA_PROFILES/*; do\n"
  4056. " profile=$i/$(basename \"$i\")\n"
  4057. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4058. " GUIX_PROFILE=\"$profile\"\n"
  4059. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4060. " fi\n"
  4061. " unset profile\n"
  4062. "done\n"
  4063. #. type: Plain text
  4064. #: guix-git/doc/guix-cookbook.texi:2589
  4065. msgid "Note to Guix System users: the above reflects how your default profile @file{~/.guix-profile} is activated from @file{/etc/profile}, that latter being loaded by @file{~/.bashrc} by default."
  4066. msgstr "Eine Anmerkung für Nutzer von „Guix System“: Obiger Code entspricht dem, wie Ihr voreingestelltes Profil @file{~/.guix-profile} durch @file{/etc/profile} aktiviert wird, was nach Vorgabe durch @file{~/.bashrc} geladen wird."
  4067. #. type: Plain text
  4068. #: guix-git/doc/guix-cookbook.texi:2591
  4069. msgid "You can obviously choose to only enable a subset of them:"
  4070. msgstr "Selbstverständlich können Sie sich auch dafür entscheiden, nur eine Teilmenge zu aktivieren:"
  4071. #. type: example
  4072. #: guix-git/doc/guix-cookbook.texi:2601
  4073. #, no-wrap
  4074. msgid ""
  4075. "for i in \"$GUIX_EXTRA_PROFILES\"/my-project-1 \"$GUIX_EXTRA_PROFILES\"/my-project-2; do\n"
  4076. " profile=$i/$(basename \"$i\")\n"
  4077. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4078. " GUIX_PROFILE=\"$profile\"\n"
  4079. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4080. " fi\n"
  4081. " unset profile\n"
  4082. "done\n"
  4083. msgstr ""
  4084. "for i in \"$GUIX_EXTRA_PROFILES\"/my-project-1 \"$GUIX_EXTRA_PROFILES\"/my-project-2; do\n"
  4085. " profile=$i/$(basename \"$i\")\n"
  4086. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4087. " GUIX_PROFILE=\"$profile\"\n"
  4088. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4089. " fi\n"
  4090. " unset profile\n"
  4091. "done\n"
  4092. #. type: Plain text
  4093. #: guix-git/doc/guix-cookbook.texi:2605
  4094. msgid "When a profile is off, it's straightforward to enable it for an individual shell without \"polluting\" the rest of the user session:"
  4095. msgstr "Wenn ein Profil abgeschaltet ist, lässt es sich mit Leichtigkeit für eine bestimmte Shell aktivieren, ohne die restliche Benutzersitzung zu „verschmutzen“:"
  4096. #. type: example
  4097. #: guix-git/doc/guix-cookbook.texi:2608
  4098. #, no-wrap
  4099. msgid "GUIX_PROFILE=\"path/to/my-project\" ; . \"$GUIX_PROFILE\"/etc/profile\n"
  4100. msgstr "GUIX_PROFILE=\"pfad/zu/my-project\" ; . \"$GUIX_PROFILE\"/etc/profile\n"
  4101. #. type: Plain text
  4102. #: guix-git/doc/guix-cookbook.texi:2615
  4103. msgid "The key to enabling a profile is to @emph{source} its @samp{etc/profile} file. This file contains shell code that exports the right environment variables necessary to activate the software contained in the profile. It is built automatically by Guix and meant to be sourced. It contains the same variables you would get if you ran:"
  4104. msgstr "Der Schlüssel dazu, wie man ein Profil aktiviert, ist dessen @samp{etc/profile}-Datei mit @command{source} zu laden. Diese Datei enthält einige Shell-Befehle, um die für das Aktivieren der Software im Profil nötigen Umgebungsvariablen zu exportieren. Die Datei wird durch Guix automatisch erzeugt, um mit @command{source} eingelesen zu werden. Sie enthält dieselben Variablen, die Sie nach Ausführung dieses Befehls bekämen:"
  4105. #. type: example
  4106. #: guix-git/doc/guix-cookbook.texi:2618
  4107. #, no-wrap
  4108. msgid "guix package --search-paths=prefix --profile=$my_profile\"\n"
  4109. msgstr "guix package --search-paths=prefix --profile=$my_profile\"\n"
  4110. #. type: Plain text
  4111. #: guix-git/doc/guix-cookbook.texi:2622
  4112. msgid "Once again, see (@pxref{Invoking guix package,,, guix, GNU Guix Reference Manual}) for the command line options."
  4113. msgstr "Siehe auch hier das @ref{Aufruf von guix package,,, guix.de, Referenzhandbuch zu GNU Guix} für die Befehlszeilenoptionen."
  4114. #. type: Plain text
  4115. #: guix-git/doc/guix-cookbook.texi:2624
  4116. msgid "To upgrade a profile, simply install the manifest again:"
  4117. msgstr "Um ein Profil zu aktualisieren, installieren Sie das Manifest einfach nochmal:"
  4118. #. type: example
  4119. #: guix-git/doc/guix-cookbook.texi:2627
  4120. #, no-wrap
  4121. msgid "guix package -m /path/to/guix-my-project-manifest.scm -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4122. msgstr "guix package -m /pfad/zu/guix-my-project-manifest.scm -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4123. #. type: Plain text
  4124. #: guix-git/doc/guix-cookbook.texi:2633
  4125. msgid "To upgrade all profiles, it's easy enough to loop over them. For instance, assuming your manifest specifications are stored in @file{~/.guix-manifests/guix-$profile-manifest.scm}, with @samp{$profile} being the name of the profile (e.g.@: \"project1\"), you could do the following in Bourne shell:"
  4126. msgstr "Um alle Profile zu aktualisieren, genügt es, sie in einer Schleife durchlaufen zu lassen. Nehmen wir zum Beispiel an, Ihre Manifestspezifikationen befinden sich in @file{~/.guix-manifests/guix-$profile-manifest.scm}, wobei @samp{$profile} der Name des Profils ist (z.B.@: „projekt1“), dann könnten Sie in der Bourne-Shell Folgendes tun:"
  4127. #. type: example
  4128. #: guix-git/doc/guix-cookbook.texi:2638
  4129. #, no-wrap
  4130. msgid ""
  4131. "for profile in \"$GUIX_EXTRA_PROFILES\"/*; do\n"
  4132. " guix package --profile=\"$profile\" --manifest=\"$HOME/.guix-manifests/guix-$profile-manifest.scm\"\n"
  4133. "done\n"
  4134. msgstr ""
  4135. "for profile in \"$GUIX_EXTRA_PROFILES\"/*; do\n"
  4136. " guix package --profile=\"$profile\" --manifest=\"$HOME/.guix-manifests/guix-$profile-manifest.scm\"\n"
  4137. "done\n"
  4138. #. type: Plain text
  4139. #: guix-git/doc/guix-cookbook.texi:2641
  4140. msgid "Each profile has its own generations:"
  4141. msgstr "Jedes Profil verfügt über seine eigenen Generationen:"
  4142. #. type: example
  4143. #: guix-git/doc/guix-cookbook.texi:2644
  4144. #, no-wrap
  4145. msgid "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --list-generations\n"
  4146. msgstr "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --list-generations\n"
  4147. #. type: Plain text
  4148. #: guix-git/doc/guix-cookbook.texi:2647
  4149. msgid "You can roll-back to any generation of a given profile:"
  4150. msgstr "Sie können es auf jede Generation zurücksetzen:"
  4151. #. type: example
  4152. #: guix-git/doc/guix-cookbook.texi:2650
  4153. #, no-wrap
  4154. msgid "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --switch-generations=17\n"
  4155. msgstr "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --switch-generations=17\n"
  4156. #. type: Plain text
  4157. #: guix-git/doc/guix-cookbook.texi:2654
  4158. msgid "Finally, if you want to switch to a profile without inheriting from the current environment, you can activate it from an empty shell:"
  4159. msgstr "Zu guter Letzt ist es möglich, zu einem Profil zu wechseln ohne die aktuelle Umgebung zu erben, indem Sie es aus einer leeren Shell heraus aktivieren:"
  4160. #. type: example
  4161. #: guix-git/doc/guix-cookbook.texi:2658
  4162. #, no-wrap
  4163. msgid ""
  4164. "env -i $(which bash) --login --noprofile --norc\n"
  4165. ". my-project/etc/profile\n"
  4166. msgstr ""
  4167. "env -i $(which bash) --login --noprofile --norc\n"
  4168. ". my-project/etc/profile\n"
  4169. #. type: subsection
  4170. #: guix-git/doc/guix-cookbook.texi:2660 guix-git/doc/guix-cookbook.texi:2661
  4171. #, no-wrap
  4172. msgid "Required packages"
  4173. msgstr "Die nötigen Pakete"
  4174. #. type: Plain text
  4175. #: guix-git/doc/guix-cookbook.texi:2666
  4176. msgid "Activating a profile essentially boils down to exporting a bunch of environmental variables. This is the role of the @samp{etc/profile} within the profile."
  4177. msgstr "Das Aktivieren eines Profils bedeutet im Grunde, dass eine Menge Umgebungsvariabler exportiert wird. Diese Rolle fällt der @samp{etc/profile}-Datei innerhalb des Profils zu."
  4178. #. type: emph{#1}
  4179. #: guix-git/doc/guix-cookbook.texi:2669
  4180. msgid "Note: Only the environmental variables of the packages that consume them will be set."
  4181. msgstr "Anmerkung: Nur diejenigen Umgebungsvariablen der sie gebrauchenden Pakete werden gesetzt."
  4182. #. type: Plain text
  4183. #: guix-git/doc/guix-cookbook.texi:2673
  4184. msgid "For instance, @samp{MANPATH} won't be set if there is no consumer application for man pages within the profile. So if you need to transparently access man pages once the profile is loaded, you've got two options:"
  4185. msgstr "Zum Beispiel wird kein @samp{MANPATH} gesetzt sein, wenn keine Anwendung im Profil diese „Man-Pages“ (Handbuchseiten) gebraucht. Wenn Sie also transparenten Zugriff auf Handbuchseiten brauchen, nachdem das Profil geladen wurde, dann gibt es zwei Möglichkeiten:"
  4186. #. type: itemize
  4187. #: guix-git/doc/guix-cookbook.texi:2677
  4188. msgid "Either export the variable manually, e.g."
  4189. msgstr "Entweder Sie exportieren die Variablen von Hand, z.B."
  4190. #. type: example
  4191. #: guix-git/doc/guix-cookbook.texi:2679
  4192. #, no-wrap
  4193. msgid "export MANPATH=/path/to/profile$@{MANPATH:+:@}$MANPATH\n"
  4194. msgstr "export MANPATH=/path/to/profile$@{MANPATH:+:@}$MANPATH\n"
  4195. #. type: itemize
  4196. #: guix-git/doc/guix-cookbook.texi:2683
  4197. msgid "Or include @samp{man-db} to the profile manifest."
  4198. msgstr "Oder Sie schreiben @samp{man-db} in das Profilmanifest hinein."
  4199. #. type: Plain text
  4200. #: guix-git/doc/guix-cookbook.texi:2687
  4201. msgid "The same is true for @samp{INFOPATH} (you can install @samp{info-reader}), @samp{PKG_CONFIG_PATH} (install @samp{pkg-config}), etc."
  4202. msgstr "Das Gleiche gilt für @samp{INFOPATH} (Sie können @samp{info-reader} installieren), @samp{PKG_CONFIG_PATH} (installieren Sie @samp{pkg-config}), etc."
  4203. #. type: subsection
  4204. #: guix-git/doc/guix-cookbook.texi:2688 guix-git/doc/guix-cookbook.texi:2689
  4205. #, no-wrap
  4206. msgid "Default profile"
  4207. msgstr "Vorgabeprofil"
  4208. #. type: Plain text
  4209. #: guix-git/doc/guix-cookbook.texi:2692
  4210. msgid "What about the default profile that Guix keeps in @file{~/.guix-profile}?"
  4211. msgstr "Was ist mit dem Standardprofil, das Guix in @file{~/.guix-profile} aufbewahrt?"
  4212. #. type: Plain text
  4213. #: guix-git/doc/guix-cookbook.texi:2695
  4214. msgid "You can assign it the role you want. Typically you would install the manifest of the packages you want to use all the time."
  4215. msgstr "Sie können ihm die Rolle zuweisen, die Sie wollen. Normalerweise würden Sie das Manifest derjenigen Pakete installieren, die Sie ständig benutzen möchten."
  4216. #. type: Plain text
  4217. #: guix-git/doc/guix-cookbook.texi:2699
  4218. msgid "Alternatively, you could keep it ``manifest-less'' for throw-away packages that you would just use for a couple of days. This way makes it convenient to run"
  4219. msgstr "Alternativ können Sie es ohne Manifest für Wegwerfpakete benutzen, die Sie nur ein paar Tage lang benutzen wollen. Das macht es leicht,"
  4220. #. type: example
  4221. #: guix-git/doc/guix-cookbook.texi:2703
  4222. #, no-wrap
  4223. msgid ""
  4224. "guix install package-foo\n"
  4225. "guix upgrade package-bar\n"
  4226. msgstr ""
  4227. "guix install paket-foo\n"
  4228. "guix upgrade paket-bar\n"
  4229. #. type: Plain text
  4230. #: guix-git/doc/guix-cookbook.texi:2706
  4231. msgid "without having to specify the path to a profile."
  4232. msgstr "auszuführen ohne den Pfad zu einem Profil festzulegen."
  4233. #. type: subsection
  4234. #: guix-git/doc/guix-cookbook.texi:2707 guix-git/doc/guix-cookbook.texi:2708
  4235. #, no-wrap
  4236. msgid "The benefits of manifests"
  4237. msgstr "Der Vorteil von Manifesten"
  4238. #. type: Plain text
  4239. #: guix-git/doc/guix-cookbook.texi:2712
  4240. msgid "Manifests are a convenient way to keep your package lists around and, say, to synchronize them across multiple machines using a version control system."
  4241. msgstr "Manifeste sind eine bequeme Art, Ihre Paketlisten zur Hand zu haben und diese z.B.@: über mehrere Maschinen hinweg in einem Versionskontrollsystem zu synchronisieren."
  4242. #. type: Plain text
  4243. #: guix-git/doc/guix-cookbook.texi:2716
  4244. msgid "A common complaint about manifests is that they can be slow to install when they contain large number of packages. This is especially cumbersome when you just want get an upgrade for one package within a big manifest."
  4245. msgstr "Eine oft gehörte Beschwerde über Manifeste ist, dass es lange dauert, sie zu installieren, wenn sie viele Pakete enthalten. Das ist besonders hinderlich, wenn Sie nur ein einziges Paket in ein großes Manifest installieren möchten."
  4246. #. type: Plain text
  4247. #: guix-git/doc/guix-cookbook.texi:2721
  4248. msgid "This is one more reason to use multiple profiles, which happen to be just perfect to break down manifests into multiple sets of semantically connected packages. Using multiple, small profiles provides more flexibility and usability."
  4249. msgstr "Das ist ein weiteres Argument dafür, mehrere Profile zu benutzen, denn es stellt sich heraus, dass dieses Vorgehen perfekt für das Aufbrechen von Manifesten in mehrere Mengen semantisch verbundener Pakete geeignet ist. Mit mehreren, kleinen Profilen haben Sie mehr Flexibilität und Benutzerfreundlichkeit."
  4250. #. type: Plain text
  4251. #: guix-git/doc/guix-cookbook.texi:2723
  4252. msgid "Manifests come with multiple benefits. In particular, they ease maintenance:"
  4253. msgstr "Manifeste haben mehrere Vorteile. Insbesondere erleichtern sie die Wartung."
  4254. #. type: itemize
  4255. #: guix-git/doc/guix-cookbook.texi:2731
  4256. msgid "When a profile is set up from a manifest, the manifest itself is self-sufficient to keep a ``package listing'' around and reinstall the profile later or on a different system. For ad-hoc profiles, we would need to generate a manifest specification manually and maintain the package versions for the packages that don't use the default version."
  4257. msgstr "Wenn ein Profil aus einem Manifest heraus eingerichtet wird, ist das Manifest selbst genug, um eine Liste der Pakete zur Verfügung zu haben und das Profil später auf einem anderen System zu installieren. Bei @i{ad-hoc}-Profilen müssten wir hingegen eine Manifestspezifikation von Hand schreiben und uns um die Paketversionen derjenigen Pakete kümmern, die nicht die vorgegebene Version verwenden."
  4258. #. type: itemize
  4259. #: guix-git/doc/guix-cookbook.texi:2736
  4260. msgid "@code{guix package --upgrade} always tries to update the packages that have propagated inputs, even if there is nothing to do. Guix manifests remove this problem."
  4261. msgstr "Bei @code{guix package --upgrade} wird immer versucht, die Pakete zu aktualisieren, die propagierte Eingaben haben, selbst wenn es nichts zu tun gibt. Mit Guix-Manifesten fällt dieses Problem weg."
  4262. #. type: itemize
  4263. #: guix-git/doc/guix-cookbook.texi:2742
  4264. msgid "When partially upgrading a profile, conflicts may arise (due to diverging dependencies between the updated and the non-updated packages) and they can be annoying to resolve manually. Manifests remove this problem altogether since all packages are always upgraded at once."
  4265. msgstr "Wenn man nur Teile eines Profils aktualisiert, kann es zu Konflikten kommen (weil die Abhängigkeiten zwischen aktualisierten und nicht aktualisierten Paketen voneinander abweichen), und es kann mühsam sein, diese Konflikte von Hand aufzulösen. Manifeste haben kein solches Problem, weil alle Pakete immer gleichzeitig aktualisiert werden."
  4266. #. type: itemize
  4267. #: guix-git/doc/guix-cookbook.texi:2748
  4268. msgid "As mentioned above, manifests allow for reproducible profiles, while the imperative @code{guix install}, @code{guix upgrade}, etc. do not, since they produce different profiles every time even when they hold the same packages. See @uref{https://issues.guix.gnu.org/issue/33285, the related discussion on the matter}."
  4269. msgstr "Wie zuvor erwähnt, gewähren einem Manifeste reproduzierbare Profile, während die imperativen @code{guix install}, @code{guix upgrade}, etc.@: das nicht tun, weil sie jedes Mal ein anderes Profil ergeben, obwohl sie dieselben Pakete enthalten. Siehe die @uref{https://issues.guix.gnu.org/issue/33285, dieses Thema betreffende Diskussion}."
  4270. #. type: itemize
  4271. #: guix-git/doc/guix-cookbook.texi:2756
  4272. msgid "Manifest specifications are usable by other @samp{guix} commands. For example, you can run @code{guix weather -m manifest.scm} to see how many substitutes are available, which can help you decide whether you want to try upgrading today or wait a while. Another example: you can run @code{guix pack -m manifest.scm} to create a pack containing all the packages in the manifest (and their transitive references)."
  4273. msgstr "Manifestspezifikationen können von anderen @samp{guix}-Befehlen benutzt werden. Zum Beispiel können Sie @code{guix weather -m manifest.scm} ausführen, um zu sehen, wie viele Substitute verfügbar sind, was Ihnen bei der Entscheidung helfen kann, ob Sie heute schon eine Aktualisierung durchführen oder lieber noch eine Weile warten möchten. Ein anderes Beispiel: Sie können mit @code{guix pack -m manifest.scm} ein Bündel erzeugen, das alle Pakete im Manifest enthält (mitsamt derer transitiven Referenzen)."
  4274. #. type: itemize
  4275. #: guix-git/doc/guix-cookbook.texi:2760
  4276. msgid "Finally, manifests have a Scheme representation, the @samp{<manifest>} record type. They can be manipulated in Scheme and passed to the various Guix @uref{https://en.wikipedia.org/wiki/Api, APIs}."
  4277. msgstr "Zuletzt haben Manifeste auch eine Repräsentation in Scheme, nämlich den @samp{<manifest>}-Verbundstyp. Sie können in Scheme verarbeitet werden und an die verschiedenen @uref{https://de.wikipedia.org/wiki/Programmierschnittstelle, Guix-Programmierschnittstellen (APIs)} übergeben werden."
  4278. #. type: Plain text
  4279. #: guix-git/doc/guix-cookbook.texi:2768
  4280. msgid "It's important to understand that while manifests can be used to declare profiles, they are not strictly equivalent: profiles have the side effect that they ``pin'' packages in the store, which prevents them from being garbage-collected (@pxref{Invoking guix gc,,, guix, GNU Guix Reference Manual}) and ensures that they will still be available at any point in the future."
  4281. msgstr "Es ist wichtig, dass Sie verstehen, dass Manifeste zwar benutzt werden können, um Profile zu deklarieren, sie aber nicht ganz dasselbe wie Profile sind: Profile haben Nebenwirkungen. Sie setzen Pakete im Store fest, so dass sie nicht vom Müllsammler geholt werden (siehe @ref{Aufruf von guix gc,,, guix.de, Referenzhandbuch zu GNU Guix}) und stellen sicher, dass sie auch in Zukunft jederzeit verfügbar sein werden."
  4282. #. type: Plain text
  4283. #: guix-git/doc/guix-cookbook.texi:2770
  4284. msgid "Let's take an example:"
  4285. msgstr "Schauen wir uns ein Beispiel an:"
  4286. #. type: enumerate
  4287. #: guix-git/doc/guix-cookbook.texi:2776
  4288. msgid "We have an environment for hacking on a project for which there isn't a Guix package yet. We build the environment using a manifest, and then run @code{guix environment -m manifest.scm}. So far so good."
  4289. msgstr "Wir haben eine Umgebung, in der wir an einem Projekt hacken können, für das es noch kein Guix-Paket gibt. Wir richten die Umgebung mit einem Manifest ein und führen dann @code{guix environment -m manifest.scm} aus. So weit so gut."
  4290. #. type: enumerate
  4291. #: guix-git/doc/guix-cookbook.texi:2782
  4292. msgid "Many weeks pass and we have run a couple of @code{guix pull} in the mean time. Maybe a dependency from our manifest has been updated; or we may have run @code{guix gc} and some packages needed by our manifest have been garbage-collected."
  4293. msgstr "Nach vielen Wochen haben wir in der Zwischenzeit schon ein paarmal @code{guix pull} laufen lassen. Vielleicht wurde eine Abhängigkeit aus unserem Manifest aktualisiert oder wir könnten @code{guix gc} ausgeführt haben, so dass manche Pakete, die von unserem Manifest gebraucht würden, vom Müllsammler geholt worden sind."
  4294. #. type: enumerate
  4295. #: guix-git/doc/guix-cookbook.texi:2787
  4296. msgid "Eventually, we set to work on that project again, so we run @code{guix environment -m manifest.scm}. But now we have to wait for Guix to build and install stuff!"
  4297. msgstr "Schließlich fangen wir wieder an, an dem Projekt zu arbeiten, also fÜhren wir @code{guix environment -m manifest.scm} aus. Aber jetzt müssen wir warten, bis Guix lauter Dinge erstellt und installiert hat!"
  4298. #. type: Plain text
  4299. #: guix-git/doc/guix-cookbook.texi:2793
  4300. msgid "Ideally, we could spare the rebuild time. And indeed we can, all we need is to install the manifest to a profile and use @code{GUIX_PROFILE=/the/profile; . \"$GUIX_PROFILE\"/etc/profile} as explained above: this guarantees that our hacking environment will be available at all times."
  4301. msgstr "Ideal wäre es, wenn wir uns die Zeit für die Neuerstellung sparen könnten. Und das können wir auch: Alles, was wir brauchen, ist, das Manifest in ein Profil zu installieren und @code{GUIX_PROFILE=/das/profil; . \"$GUIX_PROFILE\"/etc/profile} aufzurufen, wie oben erklärt. Dadurch haben wir die Garantie, dass unsere Hacking-Umgebung jederzeit zur Verfügung steht."
  4302. #. type: Plain text
  4303. #: guix-git/doc/guix-cookbook.texi:2796
  4304. msgid "@emph{Security warning:} While keeping old profiles around can be convenient, keep in mind that outdated packages may not have received the latest security fixes."
  4305. msgstr "@emph{Sicherheitswarnung:} Obwohl es angenehm sein kann, alte Profile zu behalten, sollten Sie daran denken, dass veraltete Pakete @emph{nicht} über die neuesten Sicherheitsbehebungen verfügen."
  4306. #. type: subsection
  4307. #: guix-git/doc/guix-cookbook.texi:2797 guix-git/doc/guix-cookbook.texi:2798
  4308. #, no-wrap
  4309. msgid "Reproducible profiles"
  4310. msgstr "Reproduzierbare Profile"
  4311. #. type: Plain text
  4312. #: guix-git/doc/guix-cookbook.texi:2801
  4313. msgid "To reproduce a profile bit-for-bit, we need two pieces of information:"
  4314. msgstr "Um ein Profil Bit für Bit nachzubilden, brauchen wir zweierlei Informationen:"
  4315. #. type: itemize
  4316. #: guix-git/doc/guix-cookbook.texi:2805
  4317. msgid "a manifest,"
  4318. msgstr "ein Manifest und"
  4319. #. type: itemize
  4320. #: guix-git/doc/guix-cookbook.texi:2807
  4321. msgid "a Guix channel specification."
  4322. msgstr "eine Kanalspezifikation für Guix."
  4323. #. type: Plain text
  4324. #: guix-git/doc/guix-cookbook.texi:2811
  4325. msgid "Indeed, manifests alone might not be enough: different Guix versions (or different channels) can produce different outputs for a given manifest."
  4326. msgstr "Tatsächlich kann es vorkommen, dass ein Manifest allein nicht genug ist: Verschiedene Versionen von Guix (oder andere Kanäle) können beim selben Manifest zu verschiedenen Ausgaben führen."
  4327. #. type: Plain text
  4328. #: guix-git/doc/guix-cookbook.texi:2815
  4329. msgid "You can output the Guix channel specification with @samp{guix describe --format=channels}. Save this to a file, say @samp{channel-specs.scm}."
  4330. msgstr "Sie können sich die Guix-Kanalspezifikationen mit @samp{guix describe --format=channels} ausgeben lassen. Speichern Sie sie in eine Datei ab, sagen wir @samp{channel-specs.scm}."
  4331. #. type: Plain text
  4332. #: guix-git/doc/guix-cookbook.texi:2818
  4333. msgid "On another computer, you can use the channel specification file and the manifest to reproduce the exact same profile:"
  4334. msgstr "Auf einem anderen Rechner können Sie die Kanalspezifikationsdatei und das Manifest benutzen, um genau dasselbe Profil zu reproduzieren:"
  4335. #. type: example
  4336. #: guix-git/doc/guix-cookbook.texi:2822
  4337. #, no-wrap
  4338. msgid ""
  4339. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4340. "GUIX_EXTRA=$HOME/.guix-extra\n"
  4341. "\n"
  4342. msgstr ""
  4343. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4344. "GUIX_EXTRA=$HOME/.guix-extra\n"
  4345. "\n"
  4346. #. type: example
  4347. #: guix-git/doc/guix-cookbook.texi:2825
  4348. #, no-wrap
  4349. msgid ""
  4350. "mkdir \"$GUIX_EXTRA\"/my-project\n"
  4351. "guix pull --channels=channel-specs.scm --profile \"$GUIX_EXTRA/my-project/guix\"\n"
  4352. "\n"
  4353. msgstr ""
  4354. "mkdir \"$GUIX_EXTRA\"/my-project\n"
  4355. "guix pull --channels=channel-specs.scm --profile \"$GUIX_EXTRA/my-project/guix\"\n"
  4356. "\n"
  4357. #. type: example
  4358. #: guix-git/doc/guix-cookbook.texi:2828
  4359. #, no-wrap
  4360. msgid ""
  4361. "mkdir -p \"$GUIX_EXTRA_PROFILES/my-project\"\n"
  4362. "\"$GUIX_EXTRA\"/my-project/guix/bin/guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4363. msgstr ""
  4364. "mkdir -p \"$GUIX_EXTRA_PROFILES/my-project\"\n"
  4365. "\"$GUIX_EXTRA\"/my-project/guix/bin/guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4366. #. type: Plain text
  4367. #: guix-git/doc/guix-cookbook.texi:2832
  4368. msgid "It's safe to delete the Guix channel profile you've just installed with the channel specification, the project profile does not depend on it."
  4369. msgstr "Es kann nichts Schlimmes passieren, wenn Sie das Guix-Kanalprofil, das Sie eben aus der Kanalspezifikation erstellt haben, löschen, denn das Projektprofil hängt davon nicht ab."
  4370. #. type: Plain text
  4371. #: guix-git/doc/guix-cookbook.texi:2839
  4372. msgid "Guix provides multiple tools to manage environment. This chapter demonstrate such utilities."
  4373. msgstr "Guix liefert mehrere Werkzeuge mit, um die Umgebung zu verwalten. Dieses Kapitel zeigt solche Werkzeuge."
  4374. #. type: section
  4375. #: guix-git/doc/guix-cookbook.texi:2842 guix-git/doc/guix-cookbook.texi:2844
  4376. #: guix-git/doc/guix-cookbook.texi:2845
  4377. #, no-wrap
  4378. msgid "Guix environment via direnv"
  4379. msgstr "Guix-Umgebung mit direnv"
  4380. #. type: menuentry
  4381. #: guix-git/doc/guix-cookbook.texi:2842
  4382. msgid "Setup Guix environment with direnv"
  4383. msgstr "Mit direnv Guix-Umgebungen einrichten."
  4384. #. type: Plain text
  4385. #: guix-git/doc/guix-cookbook.texi:2850
  4386. msgid "Guix provides a @samp{direnv} package, which could extend shell after directory change. This tool could be used to prepare a pure Guix environment."
  4387. msgstr "Guix stellt ein @samp{direnv}-Paket zur Verfügung, mit der die Shell nach einem Verzeichniswechsel erweitert werden kann. Dieses Werkzeug kann benutzt werden, um eine reine, „pure“ Guix-Umgebung vorzubereiten."
  4388. #. type: Plain text
  4389. #: guix-git/doc/guix-cookbook.texi:2856
  4390. msgid "The following example provides a shell function for @file{~/.direnvrc} file, which could be used from Guix Git repository in @file{~/src/guix/.envrc} file to setup a build environment similar to described in @pxref{Building from Git,,, guix, GNU Guix Reference Manual}."
  4391. msgstr "Das folgende Beispiel zeigt eine Shell-Funktion für die @file{~/.direnvrc}-Datei, die in einer Datei @file{~/src/guix/.envrc} in Guix’ Git-Repository benutzt werden kann, um eine zur Beschreibung im @ref{Erstellung aus dem Git,,, guix.de, Referenzhandbuch zu GNU Guix} ähnliche Erstellungsumgebung herzustellen."
  4392. #. type: Plain text
  4393. #: guix-git/doc/guix-cookbook.texi:2858
  4394. msgid "Create a @file{~/.direnvrc} with a Bash code:"
  4395. msgstr "Erstellen Sie eine @file{~/.direnvrc} mit einem Bash-Code darin:"
  4396. #. type: example
  4397. #: guix-git/doc/guix-cookbook.texi:2876
  4398. #, no-wrap
  4399. msgid ""
  4400. "# Thanks <https://github.com/direnv/direnv/issues/73#issuecomment-152284914>\n"
  4401. "export_function()\n"
  4402. "@{\n"
  4403. " local name=$1\n"
  4404. " local alias_dir=$PWD/.direnv/aliases\n"
  4405. " mkdir -p \"$alias_dir\"\n"
  4406. " PATH_add \"$alias_dir\"\n"
  4407. " local target=\"$alias_dir/$name\"\n"
  4408. " if declare -f \"$name\" >/dev/null; then\n"
  4409. " echo \"#!$SHELL\" > \"$target\"\n"
  4410. " declare -f \"$name\" >> \"$target\" 2>/dev/null\n"
  4411. " # Notice that we add shell variables to the function trigger.\n"
  4412. " echo \"$name \\$*\" >> \"$target\"\n"
  4413. " chmod +x \"$target\"\n"
  4414. " fi\n"
  4415. "@}\n"
  4416. "\n"
  4417. msgstr ""
  4418. "# Dank an <https://github.com/direnv/direnv/issues/73#issuecomment-152284914>\n"
  4419. "export_function()\n"
  4420. "@{\n"
  4421. " local name=$1\n"
  4422. " local alias_dir=$PWD/.direnv/aliases\n"
  4423. " mkdir -p \"$alias_dir\"\n"
  4424. " PATH_add \"$alias_dir\"\n"
  4425. " local target=\"$alias_dir/$name\"\n"
  4426. " if declare -f \"$name\" >/dev/null; then\n"
  4427. " echo \"#!$SHELL\" > \"$target\"\n"
  4428. " declare -f \"$name\" >> \"$target\" 2>/dev/null\n"
  4429. " # Beachten Sie, wir fügen Shell-Variable in den Funktionsauslöser ein.\n"
  4430. " echo \"$name \\$*\" >> \"$target\"\n"
  4431. " chmod +x \"$target\"\n"
  4432. " fi\n"
  4433. "@}\n"
  4434. "\n"
  4435. #. type: example
  4436. #: guix-git/doc/guix-cookbook.texi:2881
  4437. #, no-wrap
  4438. msgid ""
  4439. "use_guix()\n"
  4440. "@{\n"
  4441. " # Set GitHub token.\n"
  4442. " export GUIX_GITHUB_TOKEN=\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n"
  4443. "\n"
  4444. msgstr ""
  4445. "use_guix()\n"
  4446. "@{\n"
  4447. " # GitHub-Token festlegen.\n"
  4448. " export GUIX_GITHUB_TOKEN=\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n"
  4449. "\n"
  4450. #. type: example
  4451. #: guix-git/doc/guix-cookbook.texi:2884
  4452. #, no-wrap
  4453. msgid ""
  4454. " # Unset 'GUIX_PACKAGE_PATH'.\n"
  4455. " export GUIX_PACKAGE_PATH=\"\"\n"
  4456. "\n"
  4457. msgstr ""
  4458. " # Deaktivieren von 'GUIX_PACKAGE_PATH'.\n"
  4459. " export GUIX_PACKAGE_PATH=\"\"\n"
  4460. "\n"
  4461. #. type: example
  4462. #: guix-git/doc/guix-cookbook.texi:2893
  4463. #, no-wrap
  4464. msgid ""
  4465. " # Recreate a garbage collector root.\n"
  4466. " gcroots=\"$HOME/.config/guix/gcroots\"\n"
  4467. " mkdir -p \"$gcroots\"\n"
  4468. " gcroot=\"$gcroots/guix\"\n"
  4469. " if [ -L \"$gcroot\" ]\n"
  4470. " then\n"
  4471. " rm -v \"$gcroot\"\n"
  4472. " fi\n"
  4473. "\n"
  4474. msgstr ""
  4475. " # Müllsammlerwurzel neu erzeugen.\n"
  4476. " gcroots=\"$HOME/.config/guix/gcroots\"\n"
  4477. " mkdir -p \"$gcroots\"\n"
  4478. " gcroot=\"$gcroots/guix\"\n"
  4479. " if [ -L \"$gcroot\" ]\n"
  4480. " then\n"
  4481. " rm -v \"$gcroot\"\n"
  4482. " fi\n"
  4483. "\n"
  4484. #. type: example
  4485. #: guix-git/doc/guix-cookbook.texi:2908
  4486. #, no-wrap
  4487. msgid ""
  4488. " # Miscellaneous packages.\n"
  4489. " PACKAGES_MAINTENANCE=(\n"
  4490. " direnv\n"
  4491. " git\n"
  4492. " git:send-email\n"
  4493. " git-cal\n"
  4494. " gnupg\n"
  4495. " guile-colorized\n"
  4496. " guile-readline\n"
  4497. " less\n"
  4498. " ncurses\n"
  4499. " openssh\n"
  4500. " xdot\n"
  4501. " )\n"
  4502. "\n"
  4503. msgstr ""
  4504. " # Verschiedene Pakete.\n"
  4505. " PACKAGES_MAINTENANCE=(\n"
  4506. " direnv\n"
  4507. " git\n"
  4508. " git:send-email\n"
  4509. " git-cal\n"
  4510. " gnupg\n"
  4511. " guile-colorized\n"
  4512. " guile-readline\n"
  4513. " less\n"
  4514. " ncurses\n"
  4515. " openssh\n"
  4516. " xdot\n"
  4517. " )\n"
  4518. "\n"
  4519. #. type: example
  4520. #: guix-git/doc/guix-cookbook.texi:2911
  4521. #, no-wrap
  4522. msgid ""
  4523. " # Environment packages.\n"
  4524. " PACKAGES=(help2man guile-sqlite3 guile-gcrypt)\n"
  4525. "\n"
  4526. msgstr ""
  4527. " # In die Umgebung aufzunehmende Pakete.\n"
  4528. " PACKAGES=(help2man guile-sqlite3 guile-gcrypt)\n"
  4529. "\n"
  4530. #. type: example
  4531. #: guix-git/doc/guix-cookbook.texi:2914
  4532. #, no-wrap
  4533. msgid ""
  4534. " # Thanks <https://lists.gnu.org/archive/html/guix-devel/2016-09/msg00859.html>\n"
  4535. " eval \"$(guix environment --search-paths --root=\"$gcroot\" --pure guix --ad-hoc $@{PACKAGES[@@]@} $@{PACKAGES_MAINTENANCE[@@]@} \"$@@\")\"\n"
  4536. "\n"
  4537. msgstr ""
  4538. " # Dank an <https://lists.gnu.org/archive/html/guix-devel/2016-09/msg00859.html>\n"
  4539. " eval \"$(guix environment --search-paths --root=\"$gcroot\" --pure guix --ad-hoc $@{PACKAGES[@@]@} $@{PACKAGES_MAINTENANCE[@@]@} \"$@@\")\"\n"
  4540. "\n"
  4541. #. type: example
  4542. #: guix-git/doc/guix-cookbook.texi:2921
  4543. #, no-wrap
  4544. msgid ""
  4545. " # Predefine configure flags.\n"
  4546. " configure()\n"
  4547. " @{\n"
  4548. " ./configure --localstatedir=/var --prefix=\n"
  4549. " @}\n"
  4550. " export_function configure\n"
  4551. "\n"
  4552. msgstr ""
  4553. " # configure-Optionen vordefinieren.\n"
  4554. " configure()\n"
  4555. " @{\n"
  4556. " ./configure --localstatedir=/var --prefix=\n"
  4557. " @}\n"
  4558. " export_function configure\n"
  4559. "\n"
  4560. #. type: example
  4561. #: guix-git/doc/guix-cookbook.texi:2932
  4562. #, no-wrap
  4563. msgid ""
  4564. " # Run make and optionally build something.\n"
  4565. " build()\n"
  4566. " @{\n"
  4567. " make -j 2\n"
  4568. " if [ $# -gt 0 ]\n"
  4569. " then\n"
  4570. " ./pre-inst-env guix build \"$@@\"\n"
  4571. " fi\n"
  4572. " @}\n"
  4573. " export_function build\n"
  4574. "\n"
  4575. msgstr ""
  4576. " # make ausführen und optional etwas erstellen.\n"
  4577. " build()\n"
  4578. " @{\n"
  4579. " make -j 2\n"
  4580. " if [ $# -gt 0 ]\n"
  4581. " then\n"
  4582. " ./pre-inst-env guix build \"$@@\"\n"
  4583. " fi\n"
  4584. " @}\n"
  4585. " export_function build\n"
  4586. "\n"
  4587. #. type: example
  4588. #: guix-git/doc/guix-cookbook.texi:2939
  4589. #, no-wrap
  4590. msgid ""
  4591. " # Predefine push Git command.\n"
  4592. " push()\n"
  4593. " @{\n"
  4594. " git push --set-upstream origin\n"
  4595. " @}\n"
  4596. " export_function push\n"
  4597. "\n"
  4598. msgstr ""
  4599. " # Git-Befehl zum Pushen vordefinieren.\n"
  4600. " push()\n"
  4601. " @{\n"
  4602. " git push --set-upstream origin\n"
  4603. " @}\n"
  4604. " export_function push\n"
  4605. "\n"
  4606. #. type: example
  4607. #: guix-git/doc/guix-cookbook.texi:2942
  4608. #, no-wrap
  4609. msgid ""
  4610. " clear # Clean up the screen.\n"
  4611. " git-cal --author='Your Name' # Show contributions calendar.\n"
  4612. "\n"
  4613. msgstr ""
  4614. " clear # Den Bildschirm löschen.\n"
  4615. " git-cal --author='Ihr Name' # Kalender bisheriger Beiträge zeigen.\n"
  4616. "\n"
  4617. #. type: example
  4618. #: guix-git/doc/guix-cookbook.texi:2950
  4619. #, no-wrap
  4620. msgid ""
  4621. " # Show commands help.\n"
  4622. " echo \"\n"
  4623. "build build a package or just a project if no argument provided\n"
  4624. "configure run ./configure with predefined parameters\n"
  4625. "push push to upstream Git repository\n"
  4626. "\"\n"
  4627. "@}\n"
  4628. msgstr ""
  4629. " # Befehlsübersicht anzeigen.\n"
  4630. " echo \"\n"
  4631. "build ein Paket oder, ohne Argumente, ein Projekt erstellen\n"
  4632. "configure ./configure mit vordefinierten Parametern\n"
  4633. "push ins Upstream-Git-Repository pushen\n"
  4634. "\"\n"
  4635. "@}\n"
  4636. #. type: Plain text
  4637. #: guix-git/doc/guix-cookbook.texi:2954
  4638. msgid "Every project containing @file{.envrc} with a string @code{use guix} will have predefined environment variables and procedures."
  4639. msgstr "Jedes Projekt, das eine @file{.envrc} mit einer Zeichenkette @code{use guix} enthält, wird vordefinierte Umgebungsvariable und Prozeduren verwenden."
  4640. #. type: Plain text
  4641. #: guix-git/doc/guix-cookbook.texi:2956
  4642. msgid "Run @command{direnv allow} to setup the environment for the first time."
  4643. msgstr "Führen Sie @command{direnv allow} aus, um die Umgebung bei der ersten Nutzung einzurichten."
  4644. #. type: Plain text
  4645. #: guix-git/doc/guix-cookbook.texi:2968
  4646. msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist."
  4647. msgstr "Guix baut auf dem @uref{https://nixos.org/nix/, Nix-Paketverwaltungsprogramm} auf, das von Eelco Dolstra entworfen und entwickelt wurde, mit Beiträgen von anderen Leuten (siehe die Datei @file{nix/AUTHORS} in Guix). Nix hat für die funktionale Paketverwaltung die Pionierarbeit geleistet und noch nie dagewesene Funktionalitäten vorangetrieben wie transaktionsbasierte Paketaktualisierungen und die Rücksetzbarkeit selbiger, eigene Paketprofile für jeden Nutzer und referenziell transparente Erstellungsprozesse. Ohne diese Arbeit gäbe es Guix nicht.<"
  4648. #. type: Plain text
  4649. #: guix-git/doc/guix-cookbook.texi:2971
  4650. msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix."
  4651. msgstr "Die Nix-basierten Software-Distributionen Nixpkgs und NixOS waren auch eine Inspiration für Guix."
  4652. #. type: Plain text
  4653. #: guix-git/doc/guix-cookbook.texi:2977
  4654. msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!"
  4655. msgstr "GNU@tie{}Guix ist selbst das Produkt kollektiver Arbeit mit Beiträgen durch eine Vielzahl von Leuten. Siehe die Datei @file{AUTHORS} in Guix für mehr Informationen, wer diese wunderbaren Menschen sind. In der Datei @file{THANKS} finden Sie eine Liste der Leute, die uns geholfen haben, indem Sie Fehler gemeldet, sich um unsere Infrastruktur gekümmert, künstlerische Arbeit und schön gestaltete Themen beigesteuert, Vorschläge gemacht und noch vieles mehr getan haben@tie{}— vielen Dank!"
  4656. #. type: Plain text
  4657. #: guix-git/doc/guix-cookbook.texi:2980
  4658. msgid "This document includes adapted sections from articles that have previously been published on the Guix blog at @uref{https://guix.gnu.org/blog}."
  4659. msgstr "Dieses Dokument enthält angepasste Abschnitte aus Einträgen, die zuvor auf dem Blog von Guix unter @uref{https://guix.gnu.org/blog} veröffentlicht wurden."
  4660. #. type: cindex
  4661. #: guix-git/doc/guix-cookbook.texi:2985
  4662. #, no-wrap
  4663. msgid "license, GNU Free Documentation License"
  4664. msgstr "Lizenz, GNU-Lizenz für freie Dokumentation"
  4665. #. type: include
  4666. #: guix-git/doc/guix-cookbook.texi:2986
  4667. #, no-wrap
  4668. msgid "fdl-1.3.texi"
  4669. msgstr "fdl-1.3.texi"
  4670. #~ msgid "First, a syntactic comment: See the quasi-quote / comma syntax?"
  4671. #~ msgstr "Zunächst ein syntaktischer Kommentar: Sehen Sie die Syntax mit @code{quasiquote} und Komma?"
  4672. #~ msgid ""
  4673. #~ " (native-inputs\n"
  4674. #~ " `((\"pkg-config\" ,pkg-config)))\n"
  4675. #~ msgstr ""
  4676. #~ " (native-inputs\n"
  4677. #~ " `((\"pkg-config\" ,pkg-config)))\n"
  4678. #~ msgid "is equivalent to"
  4679. #~ msgstr "ist das Gleiche wie"
  4680. #~ msgid ""
  4681. #~ " (native-inputs\n"
  4682. #~ " (list (list \"pkg-config\" pkg-config)))\n"
  4683. #~ msgstr ""
  4684. #~ " (native-inputs\n"
  4685. #~ " (list (list \"pkg-config\" pkg-config)))\n"
  4686. #~ msgid "You'll mostly see the former because it's shorter."
  4687. #~ msgstr "Sie werden hauptsächlich erstere Variante sehen, weil sie kürzer ist."
  4688. #~ msgid "Power the Linode down. In the Linode's Disks/Configurations tab, resize the Debian disk to be smaller. 30 GB is recommended."
  4689. #~ msgstr "Fahren Sie den Linode-Knoten herunter. Im Karteireiter für „Disks/Configurations“ bei Linode verkleinern Sie das Laufwerk für Debian. Empfohlen werden 30@tie{}GB."
  4690. #~ msgid "In the Linode settings, \"Add a disk\", with the following:"
  4691. #~ msgstr "In den Linode-Einstellungen fügen Sie ein Laufwerk mit folgenden Eigenschaften hinzu („Add a disk“):"
  4692. #~ msgid "On the \"configuration\" field that comes with the default image, press \"...\" and select \"Edit\", then on that menu add to @file{/dev/sdc} the \"Guix\" label."
  4693. #~ msgstr "Drücken Sie im „configuration“-Feld des voreingestellten Abbilds auf „...“ und wählen Sie „Edit“. Tragen Sie in diesem Menü anschließend bei @file{/dev/sdc} „Guix“ als Bezeichnung („Label“) ein."
  4694. #~ msgid "Creating and using a custom Linux kernel"
  4695. #~ msgstr "Einen eigenen Linux-Kernel benutzen"
  4696. #~ msgid "The keyword syntax is @code{#:}; it is used to create unique identifiers. @pxref{Keywords,,, guile, GNU Guile Reference Manual}."
  4697. #~ msgstr "Die Syntax für Schlüsselwörter ist @code{#:}. Wir benutzen sie, um eindeutige Bezeichnungen zu erzeugen. Siehe @ref{Keywords,,, guile, GNU Guile Reference Manual}."
  4698. #~ msgid "@code{(add-before PHASE NEW-PHASE PROCEDURE)}: Run @code{PROCEDURE} named @code{NEW-PHASE} before @code{PHASE}."
  4699. #~ msgstr "@code{(add-before PHASE NEUE-PHASE PROZEDUR)}: Die @code{PROZEDUR} namens @code{NEUE-PHASE} vor @code{PHASE} ausführen."
  4700. #~ msgid "@code{(add-after PHASE NEW-PHASE PROCEDURE)}: Same, but afterwards."
  4701. #~ msgstr "@code{(add-after PHASE NEUE-PHASE PROZEDUR)}: Genauso, aber danach."
  4702. #~ msgid "@code{(replace PHASE PROCEDURE)}."
  4703. #~ msgstr "@code{(replace PHASE PROZEDUR)}."
  4704. #~ msgid "Learn more about build systems in"
  4705. #~ msgstr "Sie erfahren mehr über Erstellungssysteme in"
  4706. #~ msgid "@uref{https://www.gnu.org/software/guix/manual/en/html_node/Build-Systems.html#Build-Systems, the manual, section 4.2 Build systems},"
  4707. #~ msgstr "@uref{https://guix.gnu.org/manual/de/html_node/Erstellungssysteme.html#Erstellungssysteme, dem Handbuch, Abschnitt 6.3 Erstellungssysteme},"