Download flutter
tar xvf flutter_linux_1.17.5-stable.tar.xz
Download flutter
tar xvf flutter_linux_1.17.5-stable.tar.xz
Get started by creating a new file or uploading an existing file. We recommend every repository include a README, LICENSE, and .gitignore.
…or create a new repository on the command line
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/<path_to_repo>.git
git push -u origin master
| // MIT License | |
| // | |
| // Copyright (c) 2019 Simon Lightfoot | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: |
| #!/bin/bash | |
| # | |
| # Usage: sudo ./mount-raspbian-image <imagename> <mount_path> | |
| # | |
| if [ -z "$1" ] || [ -z "$2" ] | |
| then | |
| echo "Usage: sudo ./mount-raspbian-image <imagename> <mount_path>" | |
| exit | |
| fi |
| #!/bin/sh | |
| # | |
| # Read-only Root-FS for Raspian | |
| # | |
| # Modified 2015 by Pascal Rosin to work on raspian-ua-netinst with | |
| # overlayfs integrated in Linux Kernel >= 3.18. | |
| # | |
| # Originally written by Axel Heider (Copyright 2012) for Ubuntu 11.10. | |
| # This version can be found here: | |
| # https://help.ubuntu.com/community/aufsRootFileSystemOnUsbFlash#Overlayfs |