Skip to content

Instantly share code, notes, and snippets.

@kevineduardo
Created May 10, 2021 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevineduardo/c668dba7236d9ab1f550a2bf774f0140 to your computer and use it in GitHub Desktop.
Save kevineduardo/c668dba7236d9ab1f550a2bf774f0140 to your computer and use it in GitHub Desktop.
Instalador de CID-GTK no Linux Mint Debbie 4 (LMDE)
#!/bin/bash
# Script de instalação do CID no LMDE
if [ $(whoami) != root ]
then
echo "Necessário rodar como root."
exit
fi
wget https://ufpr.dl.sourceforge.net/project/c-i-d/cid-1.1.1.tar.gz
tar -xvf cid-1.1.1.tar.gz
apt-get install -y passwd sudo acl attr systemd x11-xserver-utils policykit-1 zenity lsb-release iproute2 iputils-ping keyutils krb5-user libnss-winbind libpam-winbind samba-common-bin samba-dsdb-modules samba-vfs-modules smbclient samba cifs-utils libpam-mount cups-daemon cups-client
./cid-1.1.1/INSTALL.sh
@kevineduardo
Copy link
Author

Script pra quem quer adicionar seu Linux num Active Directory da vida. (#paraleigover)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment