Vale, he conseguido la iso y la tengo en un DVD. ¿Alguien me asegura que funcionará como disco de arranque e instalación desde cero del sistema operativo?
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarAviso
No formatees el disco duro antes de instalar Windows. Tu versión actual de Windows debe estar ejecutándose cuando empieces a instalar Windows 8.1 o Windows 8.
Caution: invalid backup GPT header, but valid main header; regenerating
backup header from main header.
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: damaged
****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************
Warning! Secondary partition table overlaps the last partition by
33 blocks!
You will need to delete this partition or resize it in another utility.
Error: La tabla GPT de respaldo está dañada, pero la primaria parece estar bien,
así que se usará esta.
Modelo: Desconocida (unknown)
Disco /dev/sda3: 200GB
Tamaño de sector (lógico/físico): 512B/512B
Tabla de particiones. loop
Numero Inicio Fin Tamaño Sistema de archivos Banderas
1 0,00B 200GB 200GB ntfs
Modelo: Desconocida (unknown)
Disco /dev/sda3: 200GB
Tamaño de sector (lógico/físico): 512B/512B
Tabla de particiones. loop
Numero Inicio Fin Tamaño Sistema de archivos Banderas
1 0,00B 200GB 200GB ntfs
package com.capitales;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class Capitales extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_capitales);
Button btn = (Button)findViewById(R.id.btn1);
final TextView text = (TextView)findViewById(R.id.txt1);
btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet("http://www.tuzine.es/Capitales/index.php");
try{
HttpResponse response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
JSONObject json = new JSONObject(EntityUtils.toString(entity));
json.getString("foo");
}
catch(Exception ex){
text.setText("Error" + ex.getMessage());
}
}
});
}
}