einarbeiten

https://pinguin.gws2.de/ubuntu-upgrade-die-neuste-lts-version-installieren/

https://www.linuxmaker.com/tutorials/ssh-login-ohne-passwort.html

Haben Sie alle wichtigen Daten in Sicherheit gebracht und Ihr System für den Upgrade-Prozess vorbereitet? Dann öffnen Sie nun ein neues Terminal-Fenster, um die Operation zu beginnen. Zunächst einmal müssen Sie Ihre derzeitige Ubuntu-Version auf den neusten Stand bringen. Befragen Sie deshalb als Erstes Ihre Programmquellen, ob irgendwelche Updates zum Download bereitstehen:

sudo apt-get update

Starten Sie im Anschluss daran die Softwareaktualisierung:

sudo apt-get upgrade

Gleich darauf können Sie das Ubuntu-Upgrade erzwingen:

sudo update-manager -d

Nach der Eingabe dieses Befehls erscheint ein Fenster, in diesem Sie abschließend noch auf die Schaltfläche „Aktualisieren” klicken müssen.


Prüfen
https://launchpad.net/~audio-recorder/+archive/ubuntu/ppa
http://www.ubuntugeek.com/how-to-install-audio-recorder-on-ubuntu-13-0412-10.html
https://itsfoss.com/record-streaming-audio/

https://wiki.ubuntuusers.de/Erste_Schritte/

http://www.libe.net/index.php/grosse-festplatte-auf-kleinere-klonen

Audio-Recorder
Installation:
0) Remove the OLD, PRIVATE PPA that belonged to the developer. Run:
sudo add-apt-repository --remove ppa:osmoma/audio-recorder

	1) Add new PPA.
	Then update your package list and Install the latest version of audio-recorder. Run:
	sudo add-apt-repository ppa:audio-recorder/ppa
	sudo apt-get -y update
	sudo apt-get install --reinstall audio-recorder
	-------

	Older packages for Ubuntu 14.10, 14.04 and earlier, see
	https://launchpad.net/~osmoma/+archive/audio-recorder
	This includes audio-recorder for Linux-Mint 13, 17 and 17.x.

	Source code:
	https://launchpad.net/~audio-recorder

	Bem-vindo,
	You are welcome !

PDf Dateien verbinden oder trennen

 installed the pdftk (pdf toolkit) on our debian server, and using the following command I achieved desired output:

pdftk file1.pdf file2.pdf cat output -

This in turn can be piped directly into pdf2ps. Replace the dash (-) with the filename where you want the output to be saved.

or Try the good ghostscript:
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -sOutputFile=merged.pdf mine1.pdf mine2.pdf

http://stackoverflow.com/questions/2507766/merge-convert-multiple-pdf-files-into-one-pdf

http://askubuntu.com/questions/221962/how-can-i-extract-a-page-range-a-part-of-a-pdf

dirty bit
For some reason I've same problem and "-a" made it work. So I guess it's a bug in fsck.vfat. zuerst aushängen evtl. mit gparted

Ubuntu Bootmenü neu erstellen (grub)

  sudo uddate-grub

https://wiki.ubuntuusers.de/GRUB_2/Konfiguration/

Bootreihenfolge ändern (grub)

http://praxistipps.chip.de/grub-bootloader-bootreihenfolge-aendern-so-gehts_32538

  sudo gedit /etc/default/grub

Die Zahl beim Eintrag GRUB_DEFAULT ändern.

 0 = der erste Eintrag  
 4 = z.B ist der 5.  Eintrag

Änderung speichern
Eingabe sudo grub-mkconfig -o /boot/grub/grub.cfg
Eingabe sudo update-grub


bis 24.03.17
http://www.infoworld.com/article/2701761/install-audio-recorder-in-linux-mint-16.html


Multiboot USB. Stick -> zurück

Nach einem Beitrag in der LINUX-WELT 1/3018

Unter Linux mit dem Tool multisystem
Unter Windows mit Yumi2.0.5.1


Liste der User/Benutzer-> zurück

https://www.cyberciti.biz/faq/linux-list-users-command/

/etc/passwd file contains one line for each user account,
with seven fields delimited by colons. This is a text file.
You can easily list users using the cat command as follows:

cat /etc/passwd

 OR use pages as follows to view /etc/passwd file:
 $ more /etc/passwd
 $ less /etc/passwd

To list only usernames type the following awk command:

 awk -F':' '{ print $1}' /etc/passwd

.


Page last modified on 10.03.2020 23:27