Misc
Here's the list of the exceptions that can be thrown:
- Shrink SD Card
- Map Windows Share-folder in Ubuntu
- Links
- ESXI Issues
- InvalidLineNumberException
- DifferentLineBreaksFoundException
- FileNotFoundException
- IOException
- InvalidArgumentException
Shrink SD Card
Firstly, create share folder for Ubuntu VM (/mnt/hgfs/share-folder/).
Then please refer to links:
- Easy Resize and Back up Raspberry Pi SD Card with Ubuntu
- How to Use SD Card Reader in VMPlayer and VMWorkstation
- Files missing in /mnt/hgfs on Ubuntu VM?
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 -)
Links
- Booting Embedded Linux in One Second
- Build a GPS live tracking system
- Diymall Vk-172 G-mouse Usb Gps Dongle u-blox7
- google: build embedded linux for diy board
- Homemade ARM Board Running Linux with LCD
ESXI Issues
- Export/Import(deploy) with
OVF
formats - Use
BleachBit
to zero free-spaces - How to wipe free disk space in Linux?
- Growing, thinning, and shrinking virtual disks for VMware ESX and ESXi
- Use
UNetbootin
to write ESXI ISO image (UsingWin32DiskImager
is not working)
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
{
}