(EE) Failed to load module "vboxvideo" (module does not exist, 0)
(EE) modeset(0): glamor initialization failed
(xfsettingsd:9776): xfsettingsd-WARNING **: 10:35:57.524: Unknown mode '1360x703 @ 59.9' for output VGA-2, aborting.
xrandr --auto --output VGA-1 --mode 1920x1080 xrandr --auto --output VGA-2 --mode 1920x1080 xrandr --output VGA-2 --left-of VGA-1So that XFCE won't have to "guess" the screen mode the next time.
mount: could not find any device /dev/loop#
cat << EOF > /etc/apt/sources.list.d/x2go.list
# X2Go Repository (release builds)
deb http://packages.x2go.org/debian jessie main
# X2Go Repository (sources of release builds)
deb-src http://packages.x2go.org/debian jessie main
EOF
cat << EOF > /etc/apt/sources.list.d/x2go.list
# X2Go Repository (release builds)
deb http://packages.x2go.org/debian stretch extras main
# X2Go Repository (sources of release builds)
deb-src http://packages.x2go.org/debian stretch extras main
EOF
-rw-r----- 1 root adm 97K Dec 22 11:43 /var/log/user.log -rw-r----- 1 root adm 1.3M Dec 22 11:43 /var/log/syslog -rw-r----- 1 root adm 67K Dec 22 11:44 /var/log/auth.log
Dec 22 11:51:38 myX2goServer sshd[27225]: Accepted publickey for kevin from my.public.IP.address port 16531 ssh2: RSA SHA256:0afdoG/gObils6+n8zzo5mycmiqAaOwT0qSHJgOWTZH Dec 22 11:51:42 myX2goServer sshd[27286]: refused local port forward: originator localhost port 56810, target localhost port 44406 Dec 22 11:51:42 myX2goServer sshd[27286]: channel_by_id: 0: bad id: channel free Dec 22 11:51:42 myX2goServer sshd[27286]: Disconnecting: Received ieof for nonexistent channel 0.
You can use SSH keys to authenticate to the remote host (guess you've already been there via PuTTY ), but don't forget to use private keys at the OpenSSH format, not .ppk files (PuTTY private key format).
#Mon Mar 21 17:00:17 MET 2011 password={3DES}sRO9OiEXAWNw2AE7UfkAxw\=\= username={3DES}kpclVYTJKNeNXN1ZPNzfNQ\=\=And save the encrypted password for later.
cat << EOF > script.py from weblogic.security.internal import * from weblogic.security.internal.encryption import * # Remind user about how to use raw_input("Please ensure SerializedSystemIni.dat is in the current directory now, and press ENTER to continue.") # Get encryption service encryptionService = SerializedSystemIni.getEncryptionService(".") clearOrEncryptService = ClearOrEncryptedService(encryptionService) # Get user to enter password pwd = raw_input("Enter encrypted password (Eg. {3DES}Y1fA34S...): ") # Remove unnecessary escape characters preppwd = pwd.replace("\\\\", "") # Decrypt the password print "Recovered password is: " + clearOrEncryptService.decrypt(preppwd) EOF
There are extra \
in the line : preppwd = pwd.replace("\\\\", "")
to escape the regular \
when writing the file with cat and heredocs.
The real line will be : preppwd = pwd.replace("\\", "")
Parameter | Usage | Example |
---|---|---|
--depth empty|files|immediates|infinity | Investigate not only the current directory | svn stat --depth infinity |
Output | Meaning |
---|---|
? file | file is unknown to SVN |
D file | file has been marked for deletion with svn del |
M file | file has local modifications that are not yet saved into the repository |
cat 01.mpg 02.mpg 03.mpg >> final.mpg
ffmpeg -i 02.mpg -deinterlace -sameq 02.mpeg
oldExtension='.mpg';newExtension='.mpeg';for vdo in *$oldExtension;do ffmpeg -i $vdo -sameq $(basename $vdo $oldExtension)$newExtension;done;cat *$newExtension > final$newExtension
The files to convert + concatenate must be separated from others in a work directory.
xterm*font: *-fixed-medium-r-*-*-18-*