Come posso aggiungere il PPA del kernel mainline?


Risposte:


7

Nota: le versioni del kernel di test / debug successive al kernel predefinito, ad es. 3.3, 3.4, 3.5, ecc. Sono fornite solo tramite file deb, non tramite questo PPA.

Probabilmente vuoi aggiungere questo PPA - l'unico attivo che il team del kernel mantiene - contenente l'ultimo kernel pre-proposto per ogni versione:

ppa:kernel-ppa/pre-proposed

Grazie, in realtà ho pensato che fossero forniti dal ppa sopra. Sì, sto cercando l'ultimo kernel 3.5.
Paulo Matos,

1
@ PauloJ.Matos: Puoi trovare i file deb necessari per gli ultimi 3.5 qui .
Ish,

1
@Bucic: i debs provengono dal team del kernel di Ubuntu e il tuo PPA proviene da una terza parte (xorg-edgers). Mi fiderei del primo rispetto al secondo :)
ish

1
@izx Non è come se fosse un gruppo schifoso conosciuto a nessuno, sai;) Ma sono d'accordo. L'aggiornamento ai kernel mainline non è raccomandato a meno che non si verifichino problemi con il kernel corrente, ma se si sta eseguendo l'aggiornamento a mainlin è meglio che faccia parte del team di Ubuntu :)
Bucic

11
Questo PPA sembra essere stato abbandonato. "Numero di pacchetti: 0 pacchetti sorgente (0 byte) 0 pacchetti binari (0 byte)". È rimasta solo la pagina kernel.ubuntu.com/~kernel-ppa/mainline , ma non voglio installare pacchetti non autenticati. Non è HTTPS e non esiste una firma GPG per le build. Non andare per me.
gertvdijk,

5

Per quanto ne sappia, non c'è modo di aggiungerlo al /etc/apt/sources.listfile. C'è uno script che può portare a termine il lavoro https://github.com/GM-Script-Writer-62850/Ubuntu-Mainline-Kernel-Updater

Comandi terminali: (modifica, informazioni più aggiornate ora nel file Leggimi al link sopra)

cd /tmp
git clone git://github.com/GM-Script-Writer-62850/Ubuntu-Mainline-Kernel-Updater
bash Ubuntu-Mainline-Kernel-Updater/install

Controllerà gli aggiornamenti all'accesso + 60 secondi, è possibile verificare gli aggiornamenti in qualsiasi momento eseguendo l' KernelUpdateChecker uso -ho --helpcon quello per l'output della guida


3

Puoi usare Ukuu (che sta per 'Ubuntu Kernel Update Utility') Questa semplice applicazione desktop ti aiuta a installare un nuovo kernel in Ubuntu, Linux Mint e altre distribuzioni basate su Ubuntu, usando i kernel "mainline" pubblicati da Canonical.

Installazione:

sudo add-apt-repository ppa:teejee2008/ppa
sudo apt-get update && sudo apt-get install ukuu

Quindi esegui "ukuu" dal tuo antipasto di appplication e ti mostrerà tutti i kernel stabili tra cui scegliere. Se si desidera kernel rc instabili, è possibile disabilitare il flag "nascondi instabili e rilasci RC" nelle impostazioni


-3
/*tested code already , 
whipped this right up hope it works for you, it downloads the latest kernel from the daily mainline , 
and checks if its on your sys if not installs it 
tested and working :) simply compile as anything .c with your gcc
download at : [here](http://ubuntuone.com/0mLWYLhGPJlHGFXONz6EcO)
*/
//code below ----------------------
// it doesn’t show the imports so put them as comments to the side for who ever just does 
// copy paste 
#include <stdio.h> //stdio.h
#include <stdlib.h> //stdlib.h
#include <string.h> //string.h

void getpage(void)
{
system("mkdir ./kup;cd ./kup;wget http://kernel.ubuntu.com/~kernel-ppa/mainline/daily/current/;cat ./index.html|grep -i deb|grep -i linux>>./list;cd ./..");
printf("\n\nwhich archetype would u like to grab \n1: 32 bit\n2: 64bit\n(1/2 1 is default) : ");
char c;
system("uname -i>>./kup/p");
FILE* arch=fopen("./kup/p","r");
c=fgetc(arch);
if(c!='a'){
c=1;}
if(c=='a'){c=2;}
if(c=='2'){
system("cd ./kup;cat ./list|grep -i amd64 >> ./list2;cd ./..");
}
else{
system("cd ./kup;cat ./list|grep -i i386 >> ./list2;cd ./..");
}

system("cd ./kup;cat ./list|grep -i _all >> ./list2;rm -rf ./list;rm -rf ./index.html;cd ./..");

}

int install(void){
printf("\nnow getting ready to check the current kernel install the newest kernel if newer\npress anybtton to continue or q to quit\n");
char c;
c='\n';
if(c=='q'){return 0;}else{
system("dir ./kup>>./kup/test");
char *t=malloc(sizeof(char)*256);
t[0]='d';
t[1]='p';
t[2]='k';
t[3]='g';
t[4]=' ';
t[5]='-';
t[6]='l';
t[7]='|';
t[8]='g';
t[9]='r';
t[10]='e';
t[11]='p';
t[12]=' ';
t[13]='-';
t[14]='i';
t[15]=' ';
int tn=16;
FILE* f2 = fopen("./kup/test","r");
char c;
c=fgetc(f2);
while(c!='_'){
t[tn]=c;
tn++;
c=fgetc(f2);
}

t[tn]='>';
tn++;
t[tn]='>';
tn++;
t[tn]='.';
tn++;
t[tn]='/';
tn++;
t[tn]='k';
tn++;
t[tn]='u';
tn++;
t[tn]='p';
tn++;
t[tn]='/';
tn++;
t[tn]='a';
system(t);
FILE *f3 =fopen("./kup/a","r");

char check;
check = fgetc(f3);
printf("\"%c\"",check);
if(check !='i'){
printf("\nthere is a newer version , press enter key to update\n");
system("sudo dpkg -i ./kup/*deb;rm -rf ./kup;sudo update-grub;");
return 0;
}else{printf("\nyour system is up to date\n\n exiting \n");}
system("rm -rf ./kup");
return 0;
}
}

void download(char* url)
{
char *com=malloc(sizeof(char)*256);
com[0]='c';
com[1]='d';
com[2]=' ';
com[3]='k';
com[4]='u';
com[5]='p';
com[6]=';';
com[7]='w';
com[8]='g';
com[9]='e';
com[10]='t';
com[11]=' ';
int i=12;
int l =1;
while(l==1)
{
com[i]=url[i-12];
if(com[i]=='b'&&com[i-1]=='e'&&com[i-2]=='d'&&com[i-3]=='.'){
l=0;
}
i++;
}
system("rm -rf ./kup/list2;");
system(com);

}

void getkernel(void){
char links[3][256];
//start writing//
links[0][0]='k';
links[0][1]='e';
links[0][2]='r';
links[0][3]='n';
links[0][4]='e';
links[0][5]='l';
links[0][6]='.';
links[0][7]='u';
links[0][8]='b';
links[0][9]='u';
links[0][10]='n';
links[0][11]='t';
links[0][12]='u';
links[0][13]='.';
links[0][14]='c';
links[0][15]='o';
links[0][16]='m';
links[0][17]='/';
links[0][18]='~';
links[0][19]='k';
links[0][20]='e';
links[0][21]='r';
links[0][22]='n';
links[0][23]='e';
links[0][24]='l';
links[0][25]='-';
links[0][26]='p';
links[0][27]='p';
links[0][28]='a';
links[0][29]='/';
links[0][30]='m';
links[0][31]='a';
links[0][32]='i';
links[0][33]='n';
links[0][34]='l';
links[0][35]='i';
links[0][36]='n';
links[0][37]='e';
links[0][38]='/';
links[0][39]='d';
links[0][40]='a';
links[0][41]='i';
links[0][42]='l';
links[0][43]='y';
links[0][44]='/';
links[0][45]='c';
links[0][46]='u';
links[0][47]='r';
links[0][48]='r';
links[0][49]='e';
links[0][50]='n';
links[0][51]='t';
links[0][52]='/';
//done writing//
char c[5];
int l=1;
FILE* file = fopen("./kup/list2","r");
c[0]=fgetc(file);
while(c[0]!=EOF && l ==1)
{
int u=0;
if(c[0]=='h'){
c[1]=fgetc(file);
if(c[1]=='r'){
c[2]=fgetc(file);
if(c[2]=='e'){
c[3]=fgetc(file);
if(c[3]=='f'){
c[4]=fgetc(file);
c[4]=fgetc(file);
int i=53;
c[4]=fgetc(file);
while(c[4]!='\"'){
links[u][i]=c[4];
i++;
c[4]=fgetc(file);
}

download(links[0]);
u++;
if(u==3){
c[0]=EOF;
l=0;
}
}
}
}
}
c[0]=fgetc(file);
}

}

int main(void)
{
getpage();
getkernel();
install();
}

controlla l'attuale build giornaliera al largo delle ubuntu kernel mainline e aggiorna il tuo se non si aggiorna già ripulito la versione, senza bisogno di input da parte dell'utente, rileva l'arco del kernel corrente (32 bit 64 bit) qui ubuntuone.com/0mLWYLhGPJlHGFXONz6EcO
user183601

ok ha pubblicato un link a quello sul mio Ubuntu e ha cambiato il codice qui e ha aggiunto <br> s
user183601

grazie come puoi dire che sono nuovo di questo sito,
ho

aggiornamento: nel link lo ha cambiato per usare uname -v invece di uname -r per verificare con l'altro su questo ultimo aggiornamento non ha aggiornato gli altri, quindi ora lo farà :)) riparato su quella parte :) e anche se il tuo eseguendo ubuntu 13.04 a 32 bit penso che potrebbe essere compatibile ottenere il binario da ubuntuone.com/3cwJte3KtfNNnGcrMcnl6B
user183601

9
Perché mai questo è un programma C che invoca system(3)piuttosto che uno script di shell? O_o
liyang,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.