#netinstall debian
Explore tagged Tumblr posts
Text
Instalación por red “network install“ Linux
En mi experiencia, si desea instalar Linux a través de Internet, solo le recomendaría hacerlo con una distribución como Mageia. Porque: 🟡 El proceso de instalación siempre arranca 🟡 La instalación es sencilla 🟡 La instalación es mínima 🟡 La instalación nunca falla, aunque puede tener algún problema menor a la hora de instalar el Grub. Después, hay por ejemplo, un archivo pequeño mini, para instalar Debian:
amd64 👉 netboot 👉 mini.iso
, que la última vez, no me permitió dejar la cosas tal como las quería; sin nada adicional como el navegador o el Libre Office que me instala automáticamente -cosa que no hizo antes al seleccionar los paquetes-.

0 notes
Note
What distro of Linux do you use, and what would you recommend to someone who has been using Ubuntu for a decade because ae's scared to move away from aer familiar package manager? You know. Hypothetically.
i use Void, bc Arch was too mainstream slkdfjsdlk (okay no fr i use Void bc i kept seeing it on r/unixporn and i wanted a distro that had the "go nuts show nuts" curate-your-own-experience style Arch has but without systemd - no judgement if you like it, but it's not my vibe).
i used to use Mint and have done on-and-off since version 4 Daryna - Crunchbang was discontinued around that time and i wanted another Ubuntu-based distro to switch to.
so, if someone were looking to try something new (hypothetically, of course d: ) i would recommend considering the following first:
what's aer typical workload (and therefore what would be suitable) ?
how far would ae be willing to explore beyond aer comfort zone ?
how much time would ae have to learn new things ?
trying one or two distros out in a VM might be a good way for aem to familiarise aemself w/ any immediate quirks and pick a distro to install on bare metal (perhaps alongside aer existing distro ?)
for something more familiar i might recommend Debian Testing or LMDE (the version of Mint based directly on Debian) as they share much of the same internal architecture. i believe Debian offers a netinstall that's barebones like Arch/Void/Gentoo if trying new software (perhaps including a new DE/WM/Wayland compositor) without losing all familiarity would be of interest to this person.
for something more adventurous i would suggest Arch and perhaps picking a full DE to start with, then maybe trying an install that's more uh selective. personally, Void is no harder than Arch but the community is smaller and a person who hypothetically chose this as their new distro would not only have the barebones nature of that class of distro + an unfamiliar package manager to contend with, but additionally an unfamiliar init system (though runit is terrifyingly simple, i must say). there's also Artix, which is Arch but w/out systemd (i think they offer runit or openrc).
there are plenty of wacky distros (Bedrock, Fedora Silverblue, NixOS, Qubes, Gentoo) that would be fun to experiment with on a non-critical system/VM but they're very far removed from a decade of Ubuntu.
i appreciate this is a long answer, but you asked a lovely question and it's fun to indulge in uh um what's definitely totally a hypothetical d: if someone were to change distro i hope ae know ae can reach out to ask further questions :3
thanks for your ask ! <3 ^w^
42 notes
·
View notes
Text
Every system allows one to deinstall and install whatever one likes though. I never got this selling point about Arch. And say Debian, Ubuntu, Fedora, Suse andsoforth also offer a “minimal install” or “netinstall” option that by design only has the bare minimum of a working system installed at the start. What sets Arch apart is that it only offers a minimal install option, one which, it should be added, has far more installed than Debian's netinstall option. Also, Arch packages are just less granular than on most systems. Like on Debian for instance the OpenSSH package is split between openssh-server, and openssh-client. In many cases you just only want the client, not the server, Arch doesn't do this so even if you only use the client, you still get the server with it.
Arch Linux, the distro for the chronic customizer; a commentary on myself and other users
Arch Linux is notoriously the most difficult distro (barring Gentoo's entire existence) to use, since the base installation just gives a command line and almost no further explanation. The wiki is there, and enough guides will give you a mediocre to decent system, however when you customize it solely, it becomes the best. I say this because Arch is a perfectly customizable distro, allowing you to cherry-pick what you want on there (barring the base Linux and any libraries required by programs) and perfectly tailor the experience.
I have seen hundreds of Arch rices on r/unixp**n, but nothing looks better than what one makes for themselves, as the things you like depend on how you make them or even have them.
And to extend the stereotype: I use arch btw
5 notes
·
View notes
Photo

A la mierda... instalando desde 0 :/ no puedo creer que Debian traiga una GUI de instalación!! #socratesplanet #socrateselguitarrista #instagram #instasocrates #geek #instaconce #linux #instachile #instalinux #debian #harddisk #computer #netinstall #operativesystem #instacool https://www.instagram.com/p/CG0BufTJaNQ/?igshid=lhzoijha5n9
#socratesplanet#socrateselguitarrista#instagram#instasocrates#geek#instaconce#linux#instachile#instalinux#debian#harddisk#computer#netinstall#operativesystem#instacool
0 notes
Text
In our previous articles we walked you through the installation of XCP-ng Hypervisor and how to manage XCP-ng Hypervisor with XenCenter | XCP-ng Center. Once the hypervisor and management from XenCenter is configured, configuration of networking and storage repositories can be performed. In Xen virtualization Storage Repository is the place for your VM disks (VDI SR) and storage of ISO files. In this guide we look at how you can configure ISO Library Storage Repository in Xen and upload some ISO files to it. There are two types of ISO SR that can be configured in Xen: NFS ISO – This SR type handles CD images stored as files in ISO format available as an NFS share. Windows File Sharing (SMB/CIFS) – This SR type handles CD images stored as files in ISO format available as a Windows (SMB/CIFS) share. Configure new ISO Storage Repository in Xen We’ll be using XenCenter/XCP-ng Center in this setup but Xen Orchestra can also be used to achieve the same. NFS Server is needed for the storing ISO images. We’ll configure NFS share on a Linux server. Step 1: Install NFS Server Use the commands below to install NFS Server on Ubuntu / Debian system: # Debian / Ubuntu sudo apt update sudo apt install nfs-kernel-server -y Install NFS Server on CentOS / RHEL 8 / CentOS 7: sudo yum -y install nfs-utils Once NFS Server is installed use the commands below to enable the service: sudo systemctl enable --now rpcbind nfs-server Step 2: Configure NFS Share Create ISO Library directory in your NFS Server: sudo mkdir -p /mnt/isos Configure NFS Share by editing the file /etc/exports $ sudo vim /etc/exports # Examples /mnt/isos *(rw,no_root_squash,no_subtree_check) #Allow access from any IP /mnt/isos 192.168.20.0/24(rw,no_root_squash,no_subtree_check) #Allow access only from hosts in subnet 192.168.20.0/24 /mnt/isos 192.168.20.10/24(rw,no_root_squash,no_subtree_check) #Allow access only from single host IP 192.168.20.10 Export your shares $ sudo exportfs -rrv exporting 192.168.20.0/24:/mnt/isos On CentOS NFS Server If you have Firewalld running allow NFS service: sudo firewall-cmd --add-service=nfs --permanent sudo firewall-cmd --reload #If use NFSv3 allow the following sudo firewall-cmd --add-service=nfs3,mountd,rpc-bind --permanent sudo firewall-cmd --reload Step 3: Add ISO Storage Repository Open your XenCenter/XCP-ng Center console and click “Storage” > “New SR” on the toolbar. In the next screen choose “ISO library“ Give the storage repository a name. The default can be used without renaming. Enter NFS share path inside “Share Name” box. Example: 192.168.20.2:/mnt/isos Where: 192.168.20.2 is the IP Address of NFS server /mnt/isos is the path to ISO files directory as exported in NFS server. For Windows File Sharing SMB/CIFS the share name will have format like \server\sharename Confirm storage repository has been added and visible. Step 4: Add ISO files to NFS share Let’s download some ISO files to the NFS share. Switch to nfs share directory: sudo su - cd /mnt/isos Download ISO files to the directory. See below examples; # Ubuntu 22.04 ISO wget https://releases.ubuntu.com/jammy/ubuntu-22.04-live-server-amd64.iso # Rocky Linux 8 Minimal ISO wget https://download.rockylinux.org/pub/rocky/8/isos/x86_64/Rocky-8.6-x86_64-minimal.iso # Debian 11 netinstall ISO wget https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-11.3.0-amd64-netinst.iso Confirm if ISO files can be seen on the XCP-ng server end: In our next guide we’ll discuss installation of Linux and Windows virtual machines from the ISO files in the ISO Library.
0 notes
Text
hard drive is dead, I'm pretty sure the ram is dying, battery is absolutely dead
for the hard drive it's a PATA laptop drive so imma just replace it with a cf card, which I already ordered. in the meantime I tried to install debian on a USB drive which failed because I could only use the netinstall but the network card didn't work right, even with the nonfree version; I can't install arch cuz it's an x86 machine; I'm not going to bother with any other distro because I'm lazy; so I'm gonna try to install freedos on it in the meantime
I don't think I'll replace the ram until I get an os on the cf card once it ships
and I might replace the cells in the battery but idk. it says it might be able to use nimh batteries in it but I'm not sure. if it does tho I probably would use those instead of lithium because I'm a pussy
got myself a new laptop!!!
it's a Toshiba satellite m55



9 notes
·
View notes
Text
Tchiip
Et il y a ce moment, où l'intel Atom de 2008, le sata pérave a 5400 tr/min de ton pc met trois plombes à faire le LVM chiffré inclu dans l'installation de Debian (<3). À ce moment où il a terminé correctement son partitionnement, formatage, chiffrage, tu rentres ta fameuse clé que tu as obtenu sur un générateur aléatoire de clé/psswrd petit nerd linuxien que tu es. T'es content tu va pouvoir passer à l'installation des paquets du système. Et vu que t'as une bête de connexion, la netinstall ne sera pas ralentie.
En plus tu attends de pied ferme la fin de l'installation parce qu'il n'y a que sur ce poste que tu as un port SD standard, nécessaire pour flasher les sd des raspberry v1 que t'as récupéré au boulot en demandant gentiment à ton directeur de service.
C'était sans compter ton genou qui a buté contre l'interrupteur de la multiprise et éteint ton poste en cours d'installation.
Et vu que tu vis seul, le silence insolent te rira au nez toute la nuit.
Cette vie qui m'a été donnée est décidément pleine de péripéties.
3 notes
·
View notes
Text
Devuan 3.0 - Listo para su descarga
Devuan 3.0 - Listo para su descarga Para los que quieren libertad absoluta de software, y les encanta Debian. Ya está listo para su descarga Devuan 3.0, el Debian sin el administrador systemd init. Denominado "Beowulf", Devuan 3.0 es una rama estable basada en la última versión del sistema operativo Debian 10.4 Buster, pero sin usar el sistema systemd. Las nuevas características incluyen soporte para la arquitectura ppc64el (PowerPC 64-bit Little Endian), nuevos temas para la pantalla de inicio, nuevo administrador de pantalla y escritorio, así como eudev y elogind, que son demonios que cambian varios aspectos del sistema monolítico. Además, el nuevo Devuan nos presenta un esquema de inicio Unix multiplataforma runit. Esto ofrece una supervisión del servicio como alternativa a sbin/init. También OpenRC como opción al servicio sysv-rc.
Instalar Devuan 3.0 Otro cambio que debemos destacar es como se comporta el comando su. Por ejemplo... para obtener la ruta de la raíz, debes usar "su - comando", sin embargo "su" ofrece la ruta completa. Es evidente, que en la nueva versión también se incluyen todas las correcciones y actualizaciones de seguridad, directamente desde los repositorios de Debian 10.
Devuan 3.0 - Listo para su descarga
Puedes descargar Devuan 3.0 desde su sitio oficial. Descargar Devuan 3.0 En la url anterior, encontrarás la iso que más se adapte a tus necesidades: Live, Minimal Live, Desktop, Server o Netinstall. Además en arquitecturas de 32 y 64 bits, así como imágenes Netboot para ARM64, Armel, ARMhf y otras arquitecturas como ppc64el. Si ya tienes Devuan instalado, puedes actualizar con el sistema de gestión de paquetes integrado. En este caso lo único que tienes que hacer es ejecutar el siguiente comando... sudo apt-get update && sudo apt-get dist-upgrade Si tienes algún problema, en nuestro chat de telegram tenemos usuarios activos de esta excelente distribución linux. No dudes en preguntar. Canales de Telegram: Canal SoloLinux – Canal SoloWordpress Espero que este artículo te sea de utilidad, puedes ayudarnos a mantener el servidor con una donación (paypal), o también colaborar con el simple gesto de compartir nuestros artículos en tu sitio web, blog, foro o redes sociales. Read the full article
#Beowulf#comandosu#debian#Debian10#descargarDevuan#Devuan#Devuan3.0#distribucionlinux#instalarDevuan#InstalarTelegram#OpenRC#systemdinit
0 notes
Text
Установка Debian 9 (Stretch) через PXE сервер сетевой загрузки
Установка Debian 9 (Stretch) через PXE сервер сетевой загрузки
В этом руководстве я расскажу как установить последнюю версию сервера Debian 9 через PXE-сервер с удаленных зеркал. Для настройки среды PXE мы будем использовать DHCP-сервер ISC-DHCP, а файлы Netboot Debian будут обслуживаться в локальной сети сервером TFTPD-HPA. Установка системы через PXE может увеличить скорость установки как в случае развертывания нескольких установок Debian в течение…
View On WordPress
0 notes
Text
Parrot 4.0 Now Available, Eudora Email Code Open-Sourced, Firefox Now Offers Two-Step Authentication and More
News briefs for May 24, 2018.
Parrot 4.0 is now available for download. Parrot is a "GNU/Linux distribution based on Debian Testing and designed with Security, Development and Privacy in mind. It includes a full portable laboratory for security and digital forensics experts, but it also includes all you need to develop your own software or protect your privacy while surfing the net." New features of this "milestone" version include netinstall images, Docker templates, Linux kernel 4.16 and several other bugfixes and changes. See the release notes for more information.
Historic Eudora email code has been open-sourced by the Computer History Museum, The Register reports: "it fell into neglect after Qualcomm stopped selling it in 2006, and a follow-up version was poorly received in 2007. Under this latest deal, Qualcomm is to donate all IP—copyright code, trademarks and domain names—over to the museum."
Mozilla began offering two-step authentication for Firefox this week. If you enable it, you'll need to use an additional security code to log in. Mozilla is using the authentication standard TOTP (Time-based One-Time Password) to implement this feature. If you don't see a "Two-step authentication" panel in your Preferences, see this page for further instructions on how to enable it.
Kata Containers 1.0 was released this week. This first release "completes the merger of Intel's Clear Containers and Hyper's runV technologies, and delivers an OCI compatible runtime with seamless integration for container ecosystem technologies like Docker and Kubernetes." Visit the Kata Containers page for more info and links to the GitHub and install guide.
News
Security
Distributions
open source
Firefox
Mozilla
Containers
Docker
Kubernetes
https://ift.tt/2INzxRG via @johanlouwers . follow me also on twitter
0 notes
Text
RASPBERRY PI
The minimal Raspbian unattended netinstaller for Raspberry Pi Model 1B, 1B+ and 2B.
This project provides Raspbian power users the possibility to install a minimal base system unattended using latest Raspbian packages regardless when the installer was built.
The installer with default settings configures eth0 with DHCP to get Internet connectivity and completely wipes the SD card from any previous installation.
There are different kinds of "presets" that define the default packages that are going to be installed. Currently, the default one is called server which installs only the essential base system packages including NTP and OpenSSH to provide a sane minimal base system that you can immediately after install ssh in and continue installing your software.
Other presets include minimal which has even less packages (no logging, no text editor, no cron) and base which doesn't even have networking. You can customize the installed packages by adding a small configuration file to your SD card before booting up.
https://github.com/debian-pi/raspbian-ua-netinst
0 notes
Text
Várias distribuições Linux acabaram de ser atualizadas nos últimos dias. Entre elas, destacamos: Project Trident, Qube OS, Calculate Linux, Feren OS, EasyOS, Parted Magic, LinuxConsole 2019, NuTyX. Veja os detalhes a seguir:
Project Trident
A equipe do Project Trident publicou seu segundo instantâneo de desenvolvimento, que usa o Void como base. As versões anteriores do Project Trident foram baseadas no TrueOS e este novo instantâneo beta expande os recursos que o Trident pode oferecer em sua nova base.
O que há de novo desde a imagem alfa?
Suporte ao ambiente de inicialização para conjuntos de dados totalmente separados e reversão de captura instantânea para ambientes de inicialização. Isso é fornecido pelo novo utilitário zfsbootmenu criado por Zack Dykstra. Ele é configurado apenas para suporte ao carregador de inicialização baseado em EFI.
Os sistemas de inicialização herdados não podem usar ambientes de inicialização no momento. Contas de usuário – Uma única conta de usuário é criada na instalação. Para sistemas inicializados por EFI, esse diretório inicial do usuário é criptografado. Ele está configurado para que o login na conta do usuário também decodifique o conjunto de dados para esse usuário. O logoff bloqueia o conjunto de dados do usuário.
Conjuntos de dados criptografados não são suportados em sistemas de inicialização herdados. A criptografia de qualquer conjunto de dados do ZFS interrompe a capacidade do GRUB de suportar a inicialização do pool do ZFS.
Informações adicionais sobre o novo instantâneo podem ser encontradas no anúncio de lançamento do projeto.
Download (SHA256): Trident-BETA-netinstall-x86_64.iso.
Qube OS
A Qubes OS 4.0.2 é a mais recente atualização da distribuição Linux focada em segurança. Ela permite aos usuários “compartimentar” tarefas de computação em locais isolados chamados qubes. A nova versão atualiza o kernel Linux para a versão 4.19.89:
Temos o prazer de anunciar o lançamento do Qubes 4.0.2. Este é o segundo lançamento de ponto estável do Qubes 4.0.
Ela inclui muitas atualizações sobre a versão 4.0 inicial:
todas as atualizações 4.0 dom0 até o momento;
TemplateVM do Fedora 30;
Debian 10 TemplateVM;
Modelo de Gateway e Estação de Trabalho Whonix 15;
Kernel Linux 4.19 por padrão.
Se você instalou o Qubes 4.0 ou 4.0.1 e atualizou completamente, não é necessária nenhuma ação adicional.
Nota: com 4,5 GB, a imagem ISO do Qubes 4.0.2 não caberá em um DVD de camada única (para obter os detalhes técnicos subjacentes a isso, consulte o número 5367 ). Em vez disso, recomendamos copiar a imagem ISO em uma unidade USB suficientemente grande. No entanto, se você preferir usar mídia ótica, sugerimos selecionar um DVD de camada dupla ou um disco Blu-ray.
Veja o comunicado de lançamento para obter mais informações.
Download : Qubes-R4.0.2-x86_64.iso (torrent, guia de instalação).
Calculate Linux
Alexander Tratsevskiy anunciou o lançamento do Calculate Linux 20, uma grande atualização do conjunto de distribuição de lançamentos contínuos baseado em Gentoo disponível nos sabores KDE Plasma, Cinnamon, LXQt, MATE e Xfce. Esta versão atualiza muitos pacotes, mas também descarta a arquitetura i686.
Para esta nova versão, o Gentoo 17.1 foi usado como perfil base, todos os pacotes binários recompilados com o GCC 9.2 e as superposições gerenciadas com o eselect. O Calculate Linux não será mais lançado na edição de 32 bits.
Veja as alterações:
uma sobreposição local foi adicionada;
você pode executar ‘emerge –config‘ para iniciar a nova ferramenta cl-config para configuração de serviço;
driver de vídeo ‘modeetting’ suportado;
CPU-X foi substituído pelo utilitário gráfico HardInfo para melhor navegação no hardware;
MPlayer foi substituído por mpv;
o cronie substitui o vixie-cron pelo agendamento de tarefas cron;
detecção automática de disco único fixo para instalação;
Foi corrigido o erro em que vários aplicativos tocavam o áudio ALSA ao mesmo tempo;
configuração padrão fixa do dispositivo de áudio;
a área de trabalho do Xfce foi atualizada para 4.14.
Leia o restante do anúncio de lançamento para mais detalhes.
Links para download (MD5): cld-20-x86_64.iso (KDE Plasma, torrent), cldc-20-x86_64.iso (Cinnamon, 2.443MB, torrent), cldl-20-x86_64.iso (LXQt , 2.433MB, torrent), cldm-20-x86_64.iso (MATE, 2.530MB, torrent), cldx-20-x86_64.iso (Xfce, 2.383MB, torrent).
EasyOS
O EasyOS é uma distribuição experimental do Linux que utiliza muitas das tecnologias e formatos de pacote pioneiros do Puppy Linux. A distribuição apresenta a tecnologia de contêiner personalizada chamada Easy Containers. Assim, pode executar aplicativos ou todo o ambiente de desktop em um contêiner.
A versão mais recente do projeto é o EasyOS 2.2, que é construído usando pacotes do Debian 10.
Muitas correções de bugs, melhorias, atualizações de pacotes, novos aplicativos e utilitários
A versão 2.2 foi criada com o Debian 10.2 DEBs e o kernel é 5.4.6 com o bloqueio ativado. O bloqueio é usado na opção de inicialização ‘Copiar sessão para RAM e desativar unidades’, para aumentar ainda mais a segurança.
Novos aplicativos incorporados ao arquivo de download:
pSynclient e SolveSpace;
O conjunto SeaMonkey está embutido e agora é a versão 2.49.5;
Como de costume, há uma enorme coleção de aplicativos embutidos, incluindo LibreOffice, Inkscape, Gimp, Planner, Grisbi, Osmo, Notecase, Audacious e MPV;
O arquivo de download tem 515MB;
Entre muitas melhorias na configuração;
há um applet especial da bandeja do NetworkManager com patches;
e há consideráveis melhorias nos utilitários BootManager, SFSget, EasyContainerManager e EasyVersionControl GUI.
Informações adicionais podem ser encontradas no anúncio de lançamento do projeto e nas notas de lançamento.
Download: easy-2.2-amd64.img.gz (514MB, MD5 ).
Feren OS
O Feren OS, uma distribuição baseada no Linux Mint, foi atualizada para a versão 2019.12. Esta é a primeira versão do projeto com a área de trabalho do KDE Plasma por padrão, embora uma edição “Classic” separada com o Cinnamon também esteja disponível.
No anúncio de lançamento, temos:
Hoje tenho o orgulho de anunciar o lançamento do Feren OS com o codinome ‘Yttrium’. Este é um dos maiores instantâneos da história do Feren OS. A primeira e mais importante mudança neste instantâneo é a mudança para o KDE Plasma. Isso significa que o Feren OS agora tem um ambiente de desktop completamente diferente do que tinha antes. O KDE Plasma é um ambiente de desktop extremamente estável e leve no Feren OS, e possui muito mais suporte da comunidade, pois é um dos principais ambientes de desktop disponíveis no Linux.
O tema padrão do Feren OS teve vários ajustes visuais menores. O ajuste mais notável é que os menus agora são escuros e transparentes, em vez de brancos e opacos. Isso, juntamente com o efeito de desfoque do Plasma, torna a área de trabalho muito mais elegante por padrão.
Baixar: Feren OS x64.iso (1.841MB), Feren OS x64 Classic.iso (1.815MB), Feren OS x32 Classic.iso (1.778MB).
Parted Magic
Parted Magic é um pequeno CD/USB/PXE live com o objetivo básico de particionar discos rígidos, recuperar dados e partições de imagem. O lançamento mais recente do projeto é Parted Magic 2019_12_24. A nova versão inclui Wine, DosBOX e o utilitário GNOME Disk. Vários pacotes principais também foram atualizados.
Também voltamos ao papel de parede da área de trabalho de 2014 e à tela do GRUB.
Nova inicialização do PXE:
1. Extraia a imagem ISO e copie a pasta ‘pmagic’ para o seu servidor.
2. Use o novo código de truque ‘wget =’ do kernel e o caminho que leva à pasta ‘pmagic’.
Programas atualizados:
testdisk 7.2-WIP, ncdu 1.14.1, firmware do kernel 20191222git, ZFS no Linux 0.8.2, kernel Linux 5.4.6, xf86-video-sis 0.12.0, libdrm 2.4.100, OpenSSL 1.0.2u, nwipe 0.26, Mozilla Firefox 68.3.0esr, libtiff 4.1.0, Flashplayer Plugin 32.0.0.303, certificados CA 20191130, BIND 9.11.14. Programas adicionados: Wine 4.0.2, libpwquality 1.4.1, gnome-disk-utility 3.6.1, cracklib 2.9.6, DOSBox 0.74.3, stressapptest 1.0.9.
Mais detalhes sobre a nova versão, juntamente com instruções para configurar a inicialização do PXE para o Parted Magic, podem ser encontrados na página de notícias da distribuição e informações adicionais podem ser encontradas no changelog do projeto. O Parted Magic está disponível para compra por US $ 11 no loja on-line do projeto.
LinuxConsole
youtube
Yann Le Doare anunciou o lançamento do LinuxConsole 2019, uma nova versão da distribuição modular desenvolvida independentemente do projeto, com o desktop MATE. Ele pode ser personalizado usando módulos pré-criados para várias tarefas, como jogos, gráficos, multimídia, música, escritório e vídeo, e também suporta a instalação de alguns softwares e jogos do Windows com o WINE.
O LinuxConsole 2019 está disponível para download. Ele vem com o kernel Linux versão 5.4.5, que suporta nativamente o Extfat. Esta distribuição Linux foi projetada para ser fácil de usar e poderosa. Também é possível usá-lo em computadores antigos, com a leve área de trabalho do MATE.
youtube
Visite a página inicial da distribuição para ler o comunicado de lançamento completo.
Links para download :linuxconsole.2019-x86_64.iso (1.822MB, MD5 ), linuxconsole.2019-x86.iso (1.624MB, MD5 ).
SUSE Linux Enterprise 12
Raj Meel anunciou a disponibilidade do quinto service pack para o SUSE Linux Enterprise 12, o ramo legado atual da distribuição comercial de classe empresarial da empresa, com suporte a longo prazo por mais de 10 anos.
O SUSE Linux Enterprise 12 Service Pack 5 agora está disponível em geral. Esta versão consolida todas as correções e atualizações introduzidas desde o SUSE Linux Enterprise 12 Service Pack 4.
Clientes que desejam manter o suporte de suas instalações do SUSE Linux Enterprise 12 Service Pack 4 após junho 30 de 2020 pode continuar o suporte com a compra do Suporte de longo prazo do Service Pack.
Mais detalhes podem ser encontrados no anúncio de lançamento da empresa e nas notas de lançamento. Uma edição de avaliação de 60 dias do SUSE Linux Enterprise Server e do SUSE Linux Enterprise Desktop 12 SP5 está disponível na página de download do SUSE (registro obrigatório).
NuTyX
O NuTyX é uma distribuição Linux francesa (com suporte a vários idiomas) criada a partir do Linux From Scratch, com um gerenciador de pacotes personalizado chamado “cards”. A versão mais recente do projeto, NuTyX 11.3, apresenta várias atualizações de pacotes, incluindo novas versões do Firefox, Falkon, KDE Plasma e a área de trabalho do MATE.
O ambiente de desktop MATE vem na 1.22.2, a versão mais recente. A área de trabalho do KDE Plasma agora é 5.17.4, o Framework agora é 5.64.0 e os aplicativos agora são 19.12.0.
Detalhes adicionais podem ser encontrados na página de notícias da NutyX.
Download ( MD5 ): NuTyX_x86_64-11.3.iso (4,489MB, pkglist ).
Veja as distribuições Linux atualizadas Várias distribuições Linux acabaram de ser atualizadas nos últimos dias. Entre elas, destacamos: Project Trident, Qube OS, Calculate Linux, Feren OS, EasyOS, Parted Magic, …
#Calculate Linux#EasyOS#Feren OS#KaOS#LinuxConsole 2019#Nutyx#Project Trident#Puppy Linux#Q4OS#Qubes OS#SUSE Linux Enterprise
0 notes