Misc

Here's the list of the exceptions that can be thrown:

Shrink SD Card

Firstly, create share folder for Ubuntu VM (/mnt/hgfs/share-folder/).

Then please refer to links:

Map Windows Share-folder in Ubuntu

please refer to link: How to map a network drive?

  • smbclient -L 192.168.2.1 -U jerry
  • sudo mount -t cifs -o username=jerry,vers=1.0 //192.168.2.1/jerry /media/share-data/
  • if "host is down", use "vers=1.0, or 2.0, 3.0"
  • sudo chmod -R 755 /media/share-data
  • sudo -i (or su -)

ESXI Issues

InvalidLineNumberException

<?php

namespace Gnugat\Redaktilo\Exception;

class InvalidLineNumberException extends \InvalidArgumentException implements Exception
{
    public function getLineNumber();
    public function getText();
}

DifferentLineBreaksFoundException

<?php

namespace Gnugat\Redaktilo\Exception;

class DifferentLineBreaksFoundException extends \Exception implements Exception
{
    public function getString();
    public function getNumberLineBreakOther();
    public function getNumberLineBreakWindows();
}

FileNotFoundException

<?php

namespace Gnugat\Redaktilo\Exception;

class FileNotFoundException extends \RuntimeException implements Exception
{
    public function getPath();
}

IOException

<?php

namespace Gnugat\Redaktilo\Exception;

class IOException extends \RuntimeException implements Exception
{
    public function getPath();
}

InvalidArgumentException

<?php

namespace Gnugat\Redaktilo\Exception;

class InvalidArgumentException extends \InvalidArgumentException implements Exception
{
}

Previous readings