- Site Reliability Engineering: How Google Runs Production Systems
- Operating Systems
- Operating Systems: Three Easy Pieces
- How Linux Works, 2nd Edition
- Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation
- [Systems Performance: Enterprise and the Cloud](https://www.amazon.com/gp/product/0133390098?ie=UTF8&tag=deirdrestraug-20&linkCode=as2&camp=1789&creative=390957&creativ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#loading bar in shell script^^ | |
BARRA="[..................................................]" | |
passo="=" | |
for i in $(seq 1 50); do | |
BARRA=${BARRA/./$passo} | |
sleep 1 | |
clear | |
echo $BARRA $i"%" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#testar a virtual env no ubuntu | |
echo '----------------------' | |
echo ' conf virtual env ' | |
echo '----------------------' | |
#verificar a instalacao |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### BEGIN /etc/grub.d/30_os-prober ### | |
menuentry 'Windows Boot Manager (em /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-efi-42B4-2C42' { | |
insmod part_gpt | |
insmod fat | |
set root='hd0,gpt1' | |
if [ x$feature_platform_search_hint = xy ]; then | |
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 42B4-2C42 | |
else | |
search --no-floppy --fs-uuid --set=root 42B4-2C42 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Summary: GNU Hello | |
Name : hello | |
Version: 2.1.1 | |
Release: 1 | |
Source: https://ftp.gnu.org/gnu/hello/hello-2.1.1.tar.gz | |
URL: https://www.gnu.org/software/hello/hello.hmtl | |
License: GPL | |
Group: System Environment/Libraries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Edson Celio 2016 <[email protected]> | |
#script simples para limpeza e organização da pasta de downloads | |
# obs: pode ser modificado de acordo com as necessidades, e adicionado no crontab | |
function usage(){ | |
echo 'usage ./clear <opcao>' | |
echo 'opcoes:' | |
echo '1 - pdf' | |
echo '2 - jpg' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NB2HI4DTHIXS6ZDJONRW64TEFZTWOL3GJM3UKODHPE====== | |
Quer dica também? ah vá. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Script para backup de arquivos/dirs de conf importantes! | |
#/home/.profile | |
#/home/.bashrc | |
#/home/.vimrc | |
#/home/.ssh/ | |
#/home/.oh-my-zsh/ | |
BK_DIR=/tmp/$(hostname -s)_$(date +%d-%m-%y) | |
BK_OUT=/tmp/backup_$(date +%d-%m-%y).cpio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#funcionalidades: | |
#baixar todos os episodios (ok) | |
#baixar ovas (ok) | |
#criar pasta com nome do anime(ok) | |
#formato MP4(faltando) | |
#continuar download de episodios de uma pasta(faltando) | |
function usage(){ | |
clear |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://packaging.ubuntu.com/html/ -> Referências para criação de pacotes Ubuntu | |
https://wiki.archlinux.org/index.php/creating_packages -> Criação de Pacotes Arch Linux Base, mas bem explicativo | |
https://www.linux.com/news/make-your-own-packages-debian-based-systems -> Criação de pacotes Debian Base de duas formas | |
https://help.launchpad.net/Packaging/PPA/Uploading -> How to para upload de pacotes para o Launchpad do Ubuntu | |
https://help.launchpad.net/FrontPage -> Pagina de ajuda do Launchpad |
OlderNewer