me estan preguntando por privado el asunto de la terminal, que url les doy para que lo lean por que ya lo perdi de vista.
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ú.assembly HelloWorld
{
}
.namespace ilamscosa
{
.class private auto ansi beforefieldinit MainClass
{
.method public hidebysig static void Main(string[] args) cil managed
{
.entrypoint
.maxstack 1
ldstr "Hola Ensamblador de .NET"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
}
}
Citartop - 09:48:27 up 35 min, 2 users, load average: 0.12, 0.14, 0.26
Tasks: 62 total, 1 running, 60 sleeping, 0 stopped, 0 zombie
Cpu(s): 4.2% us, 11.2% sy, 0.0% ni, 78.8% id, 0.0% wa, 0.0% hi, 5.8% si
Mem: 256044k total, 254384k used, 1660k free, 61580k buffers
Swap: 0k total, 0k used, 0k free, 51184k cached
[root@miniserv ~]# dd if=/dev/zero of=/archivo.swap bs=1048576 count=10
10+0 registros leÃdos
10+0 registros escritos
[root@miniserv ~]# mkswap /archivo.swap
Configurando espacio de intercambio versión 1, tamaño = 10481 kB
[root@miniserv ~]# swapon /archivo.swap
Citartop - 09:51:05 up 38 min, 2 users, load average: 0.40, 0.24, 0.27
Tasks: 62 total, 1 running, 60 sleeping, 0 stopped, 0 zombie
Cpu(s): 5.4% us, 12.0% sy, 0.0% ni, 74.5% id, 1.2% wa, 0.4% hi, 6.6% si
Mem: 256044k total, 254056k used, 1988k free, 55924k buffers
Swap: 10232k total, 0k used, 10232k free, 61232k cached
[root@linux ~]# swapoff /archivo.swap
[root@linux ~]# rm /archivo.swap
Citartop - 09:54:26 up 41 min, 2 users, load average: 0.20, 0.27, 0.27
Tasks: 58 total, 1 running, 57 sleeping, 0 stopped, 0 zombie
Cpu(s): 7.4% us, 12.4% sy, 0.0% ni, 69.0% id, 8.4% wa, 0.2% hi, 2.5% si
Mem: 256044k total, 232264k used, 23780k free, 54696k buffers
Swap: 0k total, 0k used, 0k free, 60616k cached
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace winlinux
{
/// <summary>
/// Descripción breve de Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
/// <summary>
/// Variable del diseñador requerida.
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Necesario para admitir el Diseñador de Windows Forms
//
InitializeComponent();
//
// TODO: Agregar código de constructor después de llamar a InitializeComponent
//
}
/// <summary>
/// Limpiar los recursos que se estén utilizando.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Método necesario para admitir el Diseñador, no se puede modificar
/// el contenido del método con el editor de código.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(72, 72);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(160, 48);
this.label1.TabIndex = 0;
this.label1.Text = "Me programaron y compilaron en Windows XP y Visual C#, Pero puedo correr en GNU/L" +
"inux";
//
// button1
//
this.button1.Location = new System.Drawing.Point(88, 176);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(120, 32);
this.button1.TabIndex = 1;
this.button1.Text = "Cerrar";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.button1,
this.label1});
this.Name = "Form1";
this.Text = "Programa C#";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// Punto de entrada principal de la aplicación.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void button1_Click(object sender, System.EventArgs e)
{
this.Dispose();
}
}
}