Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save newbrunomartins/8a67519b7f387a992122fd7d5a8c6355 to your computer and use it in GitHub Desktop.
Save newbrunomartins/8a67519b7f387a992122fd7d5a8c6355 to your computer and use it in GitHub Desktop.
Configurações iniciais pós instalação do Debian
Pra facilitar, logado como SU no terminal, use as etapas a seguir:
1- nano /etc/apt/sources.list
/* COLE O CONTEÚDO ABAIXO E DEPOIS CTRL+O e CTRL+X */
deb http://ftp.br.debian.org/debian jessie main contrib non-free
deb-src http://ftp.br.debian.org/debian jessie main contrib non-free
deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free
deb http://ftp.br.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.br.debian.org/debian/ jessie-updates main contrib non-free
#Multimedia
deb http://www.deb-multimedia.org jessie main non-free
deb-src http://www.deb-multimedia.org jessie main non-free
#BackPorts
deb http://http.debian.net/debian/ jessie-backports main contrib non-free
/* ESTE PASSO ATUALIZA O SISTEMA */
apt-get update && apt-get install deb-multimedia-keyring && apt-get update && apt-get dist-upgrade
/* ESTE PASSO INSTALA NVIDIA DE FORMA SIMPLES E SEM COMPLICAÇÕES DAS FAMOSAS TELAS PRETAS */
3- Siga o procedimento abaixo:
apt-get remove --purge nvidia* xserver-xorg-video-nouveau
apt-get -y install build-essential linux-headers-$(uname -r)
nano /etc/modprobe.d/blacklist.conf /*COLE O CONTEÚDO ABAIXO*/
- blacklist nouveau
apt-get install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') nvidia-kernel-dkms nvidia-xconfig
nvidia-xconfig
update-initramfs -u
/* ESTE PASSO INSTALA FIRMWARE REALTEK */
apt-get install firmware-realtek
/*ESTE PASSO INSTALA VERSÕES 32BITS NO x64*/
dpkg --add-architecture -i386
/* ESTE PASSO INSTALA PROBRAMAS BÁSICOS NO DEBIAN */
apt-get install flashplugin-nonfree lightspark openjdk-8-jdk openjdk-8-jre ffmpeg mencoder smplayer vlc gxine gstreamer0.10-plugins-ugly libdvdcss2 libdvbpsi9 libdvdread4 libdvdnav4 lsdvd lame easytag soundconverter asunder libdca0 libmad0 mpg123 mpg321 twolame easymp3gain-data easymp3gain-gtk p7zip-rar p7zip-full unace unrar zip unzip lzip sharutils rar arj cabextract file-roller uudeview mpack ttf-mscorefonts-installer ttf-aenigma filezilla lzop ncompress rpm2cpio rzip unalz zoo konqueror-nsplugins ttf-xfree86-nonfree gnustep-base-doc frei0r-plugins obex-data-server samba-common gxineplugin libenchant-voikko libfftw3-bin libfftw3-dev libice-doc libid3-tools libmagickcore-6.q16-2-extra slv2-jack libsm-doc libxcb-doc xine-ui libxt-doc libdvdcss mplayer-doc jackd nas oss-compat oss4-base brasero eog tracker openjdk-8-demo openjdk-8-source visualvm openjdk-8-jre-jamvm fonts-ipafont-gothic fonts-ipafont-mincho ttf-wqy-microhei ttf-wqy-zenhei fonts-indic python-gnome2-doc python-gtk2-doc python-gst0.10-dev python-gst0.10-dbg xdeview git docky
/* ESTE PASSO RECONFIGURA O ÁUDIO PÓS ATUALIZAÇÃO DO XFCE */
modprobe -v snd-hda-intel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment