Difference between revisions of "C linux development"

From Teknologisk videncenter
Jump to: navigation, search
m
m
Line 2: Line 2:
 
=Debian based distro=
 
=Debian based distro=
 
Probably more packages than you need...  
 
Probably more packages than you need...  
Copy and paste the text below into your shell session.  
+
Copy and paste the text below into your privileged shell session. ('''sudu bash first''')
 
*'''(Read first and check security riscs)'''  
 
*'''(Read first and check security riscs)'''  
 
<source lang=bash>
 
<source lang=bash>

Revision as of 18:30, 20 December 2022

Debian based distro

Probably more packages than you need... Copy and paste the text below into your privileged shell session. (sudu bash first)

  • (Read first and check security riscs)
cd ~; cat << EOF > updatescript
#!/usr/bin/env bash
set -x
apt -y update
apt -y upgrade
apt -y install build-essential
apt -y install manpages-dev
apt -y install glibc-doc
apt -y install dpkg-dev
apt -y install linux-doc
apt -y install user-mode-linux-doc
apt -y install libssl-dev
apt -y install docbook docbook-xml docbook-xsl
apt -y install xsltproc
apt -y install libsystemd-dev
apt -y install libcjson1 libcjson-dev
EOF
chmod +x updatescript
sudo ./updatescript
rm updatescript