Use one of the following to find the USB stick:
mount
df -Th
Umount it:
umount /dev/sd{xn}
Format it:
sudo mkfs.vfat /dev/sd{xn}
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
dconf reset -f /org/gnome/ |
#!/bin/bash | |
find ./ -type f -iname post-receive -printf '%TY%Tm%Td %h/%f\n'|sort -n |
# | |
# A fatal error has been detected by the Java Runtime Environment: | |
# | |
# SIGSEGV (0xb) at pc=0x00007f121516ed20, pid=269, tid=0x00007f11d6eee700 | |
# | |
# JRE version: Java(TM) SE Runtime Environment (8.0_111-b14) (build 1.8.0_111-b14) | |
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.111-b14 mixed mode linux-amd64 compressed oops) | |
# Problematic frame: | |
# C [ld-linux-x86-64.so.2+0x9d20] | |
# |
#!/usr/bin/expect -- | |
# Argument: | |
# argv0 = host | |
# | |
# Usage: | |
# expect.sh ip-or-hostname | |
spawn ssh -o StrictHostKeyChecking=no -p 22 -L 9000:localhost:5900 user@[lindex $argv 0] |
export SWT_GTK3=0 | |
./eclipse |
Add the following to eclipse.ini after the --launcher.library and its value: | |
--launcher.GTK_version | |
2 |
sudo dpkg --remove --force-remove-reinstreq pckgName |
Use one of the following to find the USB stick:
mount
df -Th
Umount it:
umount /dev/sd{xn}
Format it:
sudo mkfs.vfat /dev/sd{xn}
-startup | |
plugins/org.eclipse.equinox.launcher_1.5.100.v20180827-1352.jar | |
--launcher.library | |
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.800.v20180827-1352 | |
-product | |
org.eclipse.epp.package.rcp.product | |
-showsplash | |
org.eclipse.epp.package.common | |
--launcher.defaultAction | |
openFile |