Knowledgebase / FAQ - ip-connect GmbH
Knowledgeroot - Version: 0.9.9.5
Menü verstecken Menü ausklappen Menü neuladen Menü einklappen
Menü schliessen
  1.keepass für Linux    (Zuletzt geändert von dspr an 29.06.2010 15:48:04)

KeepassX kann mit den kdb files umgehen die KeePass für Windows anlegt.

http://www.keepassx.org/

 

verschieben [Oben]

  2.Grafischer Editor    (Zuletzt geändert von dspr an 30.06.2010 10:54:58)

ich finde den Editra recht gut, da er nahezu identisch zu notepad++ zu bedienen ist. Denke auch, dass es der gleiche Core ist.

http://editra.org/

Da gibt's auch viele gute Plugins/Addons für den Editor.

Ubuntu: sudo apt-get install editra

verschieben [Oben]

  3.teamviewer    (Zuletzt geändert von dspr an 30.06.2010 11:27:33)

teamviewer ist auch für Linux zu haben.

http://teamviewer.com/de/download/index.aspx

verschieben [Oben]

  4.Debian Network-Config    (Zuletzt geändert von rsch an 27.01.2011 02:28:29)
root@host:~> cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
        address 88.217.158.xxx 
        netmask 255.255.255.224
        network 88.217.158.192
        broadcast 88.217.158.223
        gateway 88.217.158.195
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 88.217.158.195
        dns-search ip-connect.net
verschieben [Oben]

  5.Speicher klonen über DD    (Zuletzt geändert von Gast an 06.06.2012 17:21:34)

 

clone an USB stick using dd + see its process

Terminal - clone an USB stick using dd + see its process
dd if=/dev/sdc of=/dev/sdd conv=notrunc & while killall -USR1 dd; do sleep 5; done
2010-01-12 14:09:40
User: bw
Functions: dd killall sleep
3
clone an USB stick using dd + see its process

The following command will clone usb stick inside /dev/sdc to /dev/sdd

Double check you got the correct usb sticks (origional-clone)with fdisk -l.

Alternatives

There are 3 alternatives - vote for the best!

Terminal - Alternatives
pv sourcefile > destfile
2010-03-20 20:55:18
User: edo
Tags: pv
36

pv allows a user to see the progress of data through a pipeline, by giving information such as time elapsed, percentage completed (with progress bar), current throughput rate, total data transferred, and ETA. (man pv)

dd if=fromfile of=tofile & DDPID=$! ; sleep 1 ; while kill -USR1 $DDPID ; do sleep 5; done
2010-01-12 15:01:44
User: deltaray
Functions: dd kill sleep
Tags: dd kill while sleep
3

This is a more accurate way to watch the progress of a dd process. The $DDPID=$! is needed so that you don't get the PID of the sleep. The sleep 1 is needed because in my testing at least, if you run kill -USR1 against dd too quickly, it will kill it off instead of display the status. So you need to wait a second, probably so that it can configure itself to trap the USR1 signal.

dc3dd progress=on bs=512 count=2048 if=/dev/zero of=/dev/null
verschieben [Oben]

  6.Proxy für System einrichten    (Zuletzt geändert von rsch an 23.06.2014 14:58:10)

/etc/environment

root@avt:~# cat /etc/environment
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
http_proxy="http://172.16.1.8:8080/"
verschieben [Oben]

  7.get current Shell    (Zuletzt geändert von rsch an 19.08.2014 16:42:14)

#Linux

ps -p$$ -ocmd=

 

#Solaris

ps -p$$ -ofname=
verschieben [Oben]