-
Download the file sim908.sh
-
type
sh sim908.sh
in your terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# iterm 2 http://iterm2colorschemes.com/ | |
brew install fish | |
echo "/usr/local/bin/fish" | sudo tee -a /etc/shells | |
chsh -s /usr/local/bin/fish | |
git clone https://github.com/wting/autojump.git | |
./install.py |
- les instructions proposent de télécharger Docker toolbox
- une fois le téléchargement terminé, installer l'executable et validez tous les choix par défaut ainsi que l'installation des drivers oracle.
- double clickez surl'icon "docker quicksart" du bureau et dites oui aux popups (le premier démarrage est lent)
- taper la commande
docker -v
. Si une version s'affiche, docker fonctionnne. Sinon il faut créer un alias vers/c/Program Files/Docker Toolbox/docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#add to /etc/pacman.conf | |
[archlinuxfr] | |
Server = http://repo.archlinux.fr/arm | |
pacman -Syy | |
pacman -Sy xf86-video-odroid-c1 xorg lxde lightdm | |
pacman -Sy yaourt | |
yaourt libsystemd | |
yaourt --force lightdm-gtk-greeter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
watch -n 1 free -m | |
sudo sysctl -w vm.drop_caches=3 | |
sudo sync && echo 3 | sudo tee /proc/sys/vm/drop_caches |
J'ai une IP donnée par le dhcp mais je ne peux pas sortir. Je peux pinger le gateway 10.33.0.1
mais c'est tout
root@ant1 ~# ifconfig
eth0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
inet 192.168.20.35 netmask 255.255.255.0 broadcast 192.168.20.255
ether 00:1e:06:10:01:c2 txqueuelen 1000 (Ethernet)
RX packets 277 bytes 24079 (23.5 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 428 bytes 40421 (39.4 KiB)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# diskutil to check where is the sd card, here in /dev/disk1 | |
diskutil unmountDisk disk1 | |
sudo launchctl unload /System/Library/LaunchDaemons/com.apple.diskarbitrationd.plist [ruby-2.1.3p242] | |
sudo VBoxManage internalcommands createrawvmdk -filename ./sd-card.vmdk -rawdisk /dev/disk1 | |
sudo chmod 777 /dev/disk1 | |
sudo chmod 777 ./sd-card.vmdk | |
# in virtualbox setting of the vm, then storage, select satacontroller and add hard drive from existing file pointing to the vmdk | |
# make sure the order is inferior to the other dik or it will boot from it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pacman -S base-devel | |
git clone https://github.com/hardkernel/linux --single-branch -b odroidc-3.10.y | |
cd linux | |
make mrproper | |
zcat /proc/config.gz > .config | |
make -j 4 | |
make modules_install | |
cp arch/arm/boot/zImage /boot/3.10.75-ARCH | |
make dtbs | |
cp arch/arm/boot/dts/meson8b_odroidc.dtb /boot/dtbs/ |
- install latest version of virtual box plus oracle addon
- create new ubuntu machine in virtual box
- set usb filter for your usb dongle and use the EHCI option (Setting of the machine, Ports, USB)You can set multiple filters with different device codes
12d1 1c05
obtained fromlsusb
-> you should be able to see the device in ubuntu (if not unmount it macos)
sudo apt-get install -y picocom sg3-utils
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install node010 --without-npm | |
echo prefix=~/.node >> ~/.npmrc | |
curl -L https://www.npmjs.com/install.sh | sh | |
# add export PATH="$HOME/.node/bin:$PATH" |