OS: File System Options
File size limit:
- FAT32 : 4GiB
- NTFS : 16 EB
- ext3 : 2 TiB
- ext4 : 16 TiB
Partition size limit:
- FAT32 : 2TiB
- NTFS : 2TiB
- ext3 : 32TiB
- ext4 : 1 EiB
ssh user@remoteHost.com -L 81:remoteHost:81 ssh user@192.168.0.112 -L 81:r192.168.0.112:81
#!/bin/bash function ssh-tunnel-112(){ export $(grep -v '^#' .env | xargs) echo "ssh to .112:8081 to pi:3001" sudo ssh me@192.168.0.112 -L 8081:pi:3001 } echo "creating tunnel on port 81" ssh-tunnel-112
echo "Testing destination dir -" $ytuDest
/* * Start of PHP CLI Script */ //require_once '/home/silosix/git/phpunitwebdriver/src/Shell/YtdlWrapper.php'; //require_once '../Shell/YtdlWrapper.php'; print "Downloading YT Videos: START"."\n"; print "parsing arguments"."\n"; parse_str($argv[2],$output); var_dump($argv); var_dump($output); $ytuDest = $output['ytuDest']; print "ytuDest=" .
source: https://www.ostechnix.com/create-animated-gif-ubuntu-16-04/
convert -delay 3 -loop 0 throw_hearts_cr*.png bunny.gif
log out sudo passwd root <root_passwd>
usermod –l mdp pi <mdp_passwd>
usermod –m –d/home/mdp mdp
Logout login mdp passwd
sudo pdbedit -L -v Unix username: jimmy NT username: Account Flags: [U ] User SID: S-1-
Some applications - such as gitg - make available LOCAL commits & branch management, but have no provision for PUSHING to the remote origin.
Luckly, git leverages 'hooks' that provide a means to add shell scripts for such a need.
Once a commit is done on a branch, git will call "/.git/hooks/post-commit" and - if present - will run the contained shell script.
#!/bin/bash # # post-commit web hook # #git push -u origin develop git push -u origin ffsync-setup # # set this file to executable # # chmod 755 post-commit #
this code block will push the ffsync-setup branch to the remote origin
source: http://wiki.playonlinux.com/index.php/How_to_move_PlayOnLinux_virtual_drives_to_another_disk
There have been several requests for this feature over the years, but nothing has been implemented yet.
However, you can manage disk space the Unix way, which requires no special application support (taken from https://www.playonlinux.com/en/topic-10841-PoL_Directory_Location.html ):
Copyright 2018· All rights reserved