I got rid of the locks by adding "Authenticated Users" to the security permissions on the directories
|
REFERENCES
http://www.sevenforums.com/network-sharing/8729-how-remove-lock-icon-over-my-folder.html
I got rid of the locks by adding "Authenticated Users" to the security permissions on the directories
|
start a new screen session with session name | screen -S |
list running sessions/screens | screen -ls |
attach to a running session | screen -r |
… to session with name | screen -r |
the “ultimate attach” | screen -dRR (Attaches to a screen session. If the session is attached elsewhere, detaches that other display. If no session exists, creates one. If multiple sessions exist, uses the first one.) |
C-a
(that's Control-a, sometimes written ^a
). To send a literal C-a
to the programs in screen, use C-a a
.detach | C-a d |
detach and logout (quick exit) | C-a D D |
exit screen | “C-a : quit” or exit all of the programs in screen. |
force-exit screen | C-a C-\ (not recommended) |
create new window | C-a c |
change to last-visited active window | C-a C-a (commonly used to flip-flop between two windows) |
change to window by number | C-a (only for windows 0 to 9) |
change to window by number or name | C-a ' |
change to next window in list | C-a n or C-a |
change to previous window in list | C-a p or C-a |
see window list | C-a " (allows you to select a window to change to) |
show window bar | C-a w (if you don't have window bar) |
close current window | Close all applications in the current window (including shell) |
kill current window | C-a k (not recommended) |
kill all windows | C-a \ (not recommended) |
rename current window | C-a A |
split display horizontally | C-a S |
split display vertically | C-a | or C-a V (for the vanilla vertical screen patch) |
jump to next display region | C-a tab |
remove current region | C-a X |
remove all regions but the current one | C-a Q |
send a command to a named session | screen -S |
create a new window and run ping example.com | screen -S |
stuff characters into the input buffer using bash to expand a newline character (from here) | screen -S <name> [-p <page>] -X stuff $'quit\r' |
a full example | # run bash within screen screen -AmdS bash_shell bash # run top within that bash session screen -S bash_shell -p 0 -X stuff $'top\r' # ... some time later # stuff 'q' to tell top to quit screen -S bash_shell -X stuff 'q' # stuff 'exit\n' to exit bash session screen -S bash_shell -X stuff $'exit\r' |
redraw window | C-a C-l |
enter copy mode | C-a [ or C-a (also used for viewing scrollback buffer) |
paste | C-a ] |
monitor window for activity | C-a M |
monitor window for silence | C-a _ |
enter digraph (for producing non-ASCII characters) | C-a C-v |
lock (password protect) display | C-a x |
enter screen command | C-a : |
if ! mount | grep -q '/media/backups'; then
echo "/media/backups not mounted"
exit 1
fi
== ISSUE THIS COMMAND
[xxx@devxxx ~]$ screen -ls
== SCREEN RESPONDS
There are screens on:
23487.pts-0.devxxx (Detached)
26727.pts-0.devxxx (Attached)
2 Sockets in /tmp/uscreens/S-xxx.
== NOW KILL THE ONE YOU DONT WANT
[xxx@devxxx ~]$ screen -X -S 23487.pts-0.devxxx kill
or
[xxx@devxxx ~]$screen -S 23487
-X quit
== WANT PROOF?
[xxx@devxxx ~]$ screen -ls
There is a screen on:
26727.pts-0.devxxx (Attached)
1 Socket in /tmp/uscreens/S-xxx.
REFERENCES
http://stackoverflow.com/questions/1509677/kill-detached-screen-session
C:\Windows\system32\FNTCACHE.DAT
and restart, your problem should be solved.
$ find . -type f \( -iname "*.c" -or -iname "*.asm" \)
( expr ) | Force precedence. True if expr is true |
expr -not expr | True if expr is false. In some shells, it is necessary to protect the ‘!’ from shell interpretation by quoting it. |
expr1 -and expr2 | And; expr2 is not evaluated if expr1 is false. |
expr1 -or expr2 | Or; expr2 is not evaluated if expr1 is true. |
$ find . -type f \( -iname "*.txt" ! -iname ".*" \)
find /path/to/dest -type d \( ! -name tmp \) -print
find /path/to/dest -type d \( ! -name tmp \) -o \( ! -name cache \) -print
find /path/to/dest -type d \( ! -name tmp \) -o \( ! -name cache -prune \) -print
find / \( ! -name tmp \) -o \( ! -name root -prune \) -name "*.pl" -print
tmux new -s session_name
tmux attach -t session_name
tmux switch -t session_name
tmux list-sessions
tmux detach (prefix + d)
tmux new-window (prefix + c)
tmux select-window -t :0-9 (prefix + 0-9)
tmux rename-window (prefix + ,)
tmux split-window (prefix + ")
tmux split-window -h (prefix + %)
tmux swap-pane -[UDLR] (prefix + { or })
tmux select-pane -[UDLR]
tmux select-pane -t :.+
tmux list-keys
tmux list-commands
tmux info
tmux source-file ~/.tmux.conf
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
# quick pane cycling
unbind ^A
bind ^A select-pane -t :.+