Coder Social home page Coder Social logo

iscsiconsole's People

Contributors

ab932 avatar talaloni avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

iscsiconsole's Issues

Support for sparse vmdk files

It is possible to add support for vmdk sparse files? now I am getting following message: "Unsupported Disk Image Format".

Is there any way to keep the name of the target?

Is there any way to keep the custom name of the iscsi target after closing then opening it again?
Or after restarting the pc and adding this program to startup?

Thanks for making this wonderful piece of software.

Inquiry about Command Line API for Automation in Windows PE

Hello,
The following content has been generated through translation.

I am wondering if this application provides a command-line API. I am looking to implement automation within Windows PE.

While the program runs smoothly on my Windows system, I am interested in having it automatically start the iSCSI server upon booting into Windows PE.

Could you please confirm if there are relevant interfaces or APIs available for this purpose?

How to run in linux?

I want to run this program in ubuntu. Running after installing mono, it doesn't work!

feature request: allow large than 2GB ramdisk

change to allocate unmanaged ram instead of byte array for more larger

public class UnmanagedRamDisk : Disk, IDisposable
{
    public override int BytesPerSector => 512;
    public override long Size { get; }

    private readonly IntPtr _ramBlock;

    public UnmanagedRamDisk(long size)
    {
        Size = size;
        if (IntPtr.Size == 4 && size > uint.MaxValue) throw new NotSupportedException("32 bit process can not allocate large than 4GB RAM");
        _ramBlock = Marshal.AllocHGlobal(((IntPtr)size));
    }

    public void Dispose() => Marshal.FreeHGlobal(_ramBlock);

    public override byte[] ReadSectors(long sectorIndex, int sectorCount)
    {
        var buf = new byte[sectorCount * BytesPerSector];
        Marshal.Copy((IntPtr)(_ramBlock + sectorIndex * BytesPerSector), buf, 0, buf.Length);
        return buf;
    }

    public override void WriteSectors(long sectorIndex, byte[] data)
    {
        Marshal.Copy(data, 0, (IntPtr)(_ramBlock + sectorIndex * BytesPerSector), data.Length);
    }
}

Always crash when click "add physical disk"

Error1

Always crash when click "add physical disk"

Get this error every time, can it not just skip disk with errors and then show others


Exception: System.IO.IOException: Failed to get disk 0 online status, Win32 Error: 32 Source: ISCSIConsole at DiskAccessLibrary.Win32.PhysicalDisk.GetOnlineStatus(Boolean& isReadOnly)
at ISCSIConsole.SelectPhysicalDiskForm.SelectPhysicalDiskForm_Load(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

same error with 1.5.1 and 1.5.2

VMware ESXi Not Finding Any Devices

when trying to connect with VMware ESXi the ExecuteCommand where it is checking if lun >= m_disks.Count is returning the CheckCondition status code.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.