Difference between revisions of "C linux development"
From Teknologisk videncenter
m (→Debian based distro) |
m (→Debian based distro) |
||
| (19 intermediate revisions by the same user not shown) | |||
| 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 privileged shell session. | + | Copy and paste the text below into your privileged shell session. |
| + | |||
*'''(Read first and check security riscs)''' | *'''(Read first and check security riscs)''' | ||
| + | <source lang=bash> | ||
| + | cd ~; cat << 'EOF' > updatescript | ||
| + | #!/usr/bin/env bash | ||
| + | apt -y update | ||
| + | apt -y upgrade | ||
| + | |||
| + | LIST="man-db build-essential manpages-dev glibc-doc dpkg-dev linux-doc | ||
| + | user-mode-linux-doc libssl-dev docbook docbook-xml devscripts | ||
| + | docbook-xsl xsltproc libsystemd-dev libltdl-dev libcjson1 | ||
| + | libcjson-dev libltdl-dev gdb tmux" | ||
| + | LOGFILE="./apt-install.log" | ||
| + | echo "" > $LOGFILE | ||
| + | DIRTY=0 | ||
| + | |||
| + | for PACK in $LIST | ||
| + | do | ||
| + | printf "Installerer %s\n" $PACK | ||
| + | if apt -y install $PACK | ||
| + | then | ||
| + | printf "Package %s OK\n" $PACK >> $LOGFILE | ||
| + | else | ||
| + | printf "Package %s FAILED......................\n" $PACK >> $LOGFILE | ||
| + | let DIRTY=DIRTY+1 | ||
| + | fi | ||
| + | done | ||
| + | printf "\n\n**************************************************\n" | ||
| + | if test $DIRTY -eq 0 | ||
| + | then | ||
| + | printf "Seems all look good - all packages OK\n" | ||
| + | else | ||
| + | printf "ERROR: %d packages failed - see logfile: %s\n" $DIRTY $LOGFILE | ||
| + | fi | ||
| + | printf "**************************************************\n" | ||
| + | EOF | ||
| + | chmod +x updatescript | ||
| + | sudo ./updatescript | ||
| + | </source> | ||
| + | <!-------- FIRST SCRIPT | ||
<source lang=bash> | <source lang=bash> | ||
cd ~; cat << EOF > updatescript | cd ~; cat << EOF > updatescript | ||
| Line 27: | Line 66: | ||
</source> | </source> | ||
| − | + | -----> | |
[[Category:Linux]][[Category:C]][[Category:GNU]] | [[Category:Linux]][[Category:C]][[Category:GNU]] | ||
Latest revision as of 15:09, 4 March 2025
Debian based distro
Probably more packages than you need... Copy and paste the text below into your privileged shell session.
- (Read first and check security riscs)
cd ~; cat << 'EOF' > updatescript
#!/usr/bin/env bash
apt -y update
apt -y upgrade
LIST="man-db build-essential manpages-dev glibc-doc dpkg-dev linux-doc
user-mode-linux-doc libssl-dev docbook docbook-xml devscripts
docbook-xsl xsltproc libsystemd-dev libltdl-dev libcjson1
libcjson-dev libltdl-dev gdb tmux"
LOGFILE="./apt-install.log"
echo "" > $LOGFILE
DIRTY=0
for PACK in $LIST
do
printf "Installerer %s\n" $PACK
if apt -y install $PACK
then
printf "Package %s OK\n" $PACK >> $LOGFILE
else
printf "Package %s FAILED......................\n" $PACK >> $LOGFILE
let DIRTY=DIRTY+1
fi
done
printf "\n\n**************************************************\n"
if test $DIRTY -eq 0
then
printf "Seems all look good - all packages OK\n"
else
printf "ERROR: %d packages failed - see logfile: %s\n" $DIRTY $LOGFILE
fi
printf "**************************************************\n"
EOF
chmod +x updatescript
sudo ./updatescript