oio11: (Default)
Guayadeque alternatives for Linux
 
License:
All
 
 


http://alternativeto.net/software/guayadeque/?platform=linux
oio11: (Default)

HOWTO: using debfoster in practice

Hi,

This is not for the faint of heart so fresh baked noobs get away!

This is my first HOWTO. I noticed I was explaining debfoster a lot and I wanted to have a link to it. debfoster is a very powerful tool once you are getting used to it. I've thought up five scenarios of use :

SCENARIO 1)You use it to keep track of what you did install
SCENARIO 2)You want to make your system clean,mean and lean.
SCENARIO 3)You have had problems with upgrading to hoary or you have entered a dependencies hell on accident.
SCENARIO 4)You want an internet gateway with a nice windowmanager that uses little resources.
SCENARIO 5)You want to remove all of kde and kubuntu and go back to ubuntu-desktop
Read more... )
http://www.ubuntuforums.org/showthread.php?t=24403

oio11: (Default)
Manual Disk Partitioning Guide for Ubuntu Server Edition

By ubuntucontrib
On February 22, 2013

This guide will explain how to partitioning a harddrive manually in ubuntu server edition (ubuntu server 12.04/12.10/13.04). By default installation of Ubuntu Server edition the installer creates just two partitions; the first for (/ ) the root partition, and the second for Swap partition . If you want creating partitions for installing Ubuntu Server edition, I recommend to create the following four partitions on your ubuntu server hardrive.

  • root partition (/). The bulk of the programs used for running the system will be installed here.
  • boot partition (/boot). This is where programs critical for booting the system will reside.
  • home partition (/home) the partition where your home directory will be located. In the course of using the system, files and folders you create will reside in various folders here
  • swap partition (swap):unformatted disk space for use as virtual memory. swap partition should be at least as big as your RAM size,
This is screenshot step by step manual disk partioning of ubuntu server edition with following partition table: Read more... )

http://ubuntuserverguide.com/2013/02/manual-disk-partition-guide-for-ubuntu-server-edition.html
oio11: (Default)

Clean Ubuntu

Well now, a little cleaning is required. Generally Ubuntu is well optimized but if lack of space, or you want to optimize to the maximum we must do something.

 

Prerequisite

 

Software to maintain and clean his system

 

From a terminal

 

Graphics mode

 

Delete temporary files of the installation files

Delete .deb packages to save space, or after several facilities downloaded packages accumulate and use a lot of space. These installation packages are stored in the / var / cache / apt / archives /

Accuracy: The downloaded packages are useless if you have internet. It only allow you to reinstall the applications in offline mode. Removing them does not cause removal of applications already installed by those packages.
Since a terminal by typing the command follows:

  • Delete the cache of expired packages:
      sudo apt-get autoclean 
  • Delete all cache:
      sudo apt-get clean 
  • Remove installed packages as dependencies and become useless:
      sudo apt-get autoremove 
 

Removing Software

Be careful not to delete important packages such as ubuntu-desktop! The wisest course is to check what those packages by doing a little research on the net. If you have uninstalled incorrectly core packages, reinstall them quickly before you restart.
Since a terminal by typing the command follows:
 

By saving the configuration

  sudo apt-get remove <name of unused package to delete> 
 

By deleting the configuration

(Can resolve configuration problems and restore the default settings) Since a terminal with the command follows:

  sudo apt-get purge <name of unused package to delete> 
 

Remove Orphan software

It happens that after deleting an application, modules or non-required dependencies are not removed. The application deborphan removes the packages which installed application will no longer appealed.

 

Residues of deleted software

Since a terminal with the command follows:

  sudo dpkg -P $ (dpkg -l | grep '^ rc "| tr -s'' | cut -d '' -f 2) 
 

Empty baskets

Check the contents of baskets before deletion.
GNU / linux, displaced in the recycle bin objects are placed in a folder named Trash accompanied or not other characters.
  • For your personal space, this folder is located in the folder hidden .local / share / Trash in your home folder.
  • For external units mounted (USB sticks, SD cards, remote units) it is hidden, is called .Trash-1000 and is located mostly on the root of the mounted partition (.Trash-1000 If the file does exist no, it will be created).

:!: The basket of versions and variants of Ubuntu contains all the currently supported baskets of all mounted partitions.

  • To check the contents, just a click on the trash icon at the bottom of the bar launchers or on the desktop according to Ubuntu variant or in the file explorer.
  • To delete items, just select them and then delete.
  • For delete, click on the clear button.
  • To empty a basket an external unit mounted (USB key, SD card, remote units), simply delete the folder .Trash-1000 unit.
  • Only to empty the trash on your personal space, enter in a terminal the command Next
      rm -r -f ~ / .local / share / Trash / files / * 
 

Delete a lot of files: "/ usr / bin / rm list too long arguments"

When using the rm command with a wildcard (* .dat, for example), bash starts by creating the file list corresponding to the joker before passing to the rm command. If the list is too long, you get a kind of error message:

  bash: / usr / bin / rm list too long arguments 

To work around this problem, you must pass the arguments (delete files) 1 by 1 to the rm command with a script, and then use the find command:

  find ./ -type f -name '* .dat' -delete 

Explanation: the find command to search; -type f: Specifies that you search for files -name '* .dat' specifies the name of the files to search for (here all files ending with the extension .dat); -delete: deletes the files found.

For more information, 'man find' in the terminal will explain everything not to do anything stupid.

 

Remove thumbnails of pictures

Gnome Nautilus, while browsing photos in folders, files, icons are a smaller version of the image. By dint and although the occupied space is not astronomical, they pile into the "~ / .thumbnails / normal" folder. Its content can be deleted. The following command to delete all the thumbnails of more than seven days.

  find ~ / .thumbnails -type f -delete -atime 7 
 

Delete Files "local" unnecessary

Site Preview: http://packages.debian.org/stable/admin/localepurge

"Simple script that recovers disk space wasted by local files and localized man pages unnecessary. It will be invoked automatically at each facility with apt."

Please note that you must be extremely careful during the installation.

During installation you will be asked to choose the language to retain! Beware if you do not choose the script language will not hesitate to delete everything! and you will have problems during the next reboot.

To install and configure simply type:

  sudo apt-get install localepurge 

During installation select (up / down button to move, select the language with the space bar) the installation language of your system: in this case FR for French.

To start you need to open a terminal and validate the command:

This command requires no parameter, it runs directly without confirmation and the result appears clean
  sudo localepurge 
If a problem has to be reinstalled local:
  sudo apt-get install local --reinstall 

OR

  sudo aptitude reinstall Local 
 

Removing backup files

These are hidden files ending with a "~". They serve as backup in case the source file (text, html, php, conf ...) would be deleted or accidentally changed. They accumulate, accumulate ...

You must ensure that this does not delete your saved configurations. Therefore, it is recommended not to use sudo (which could alter files not located in / home).

(thank you to Yannick_LM) View files to be deleted can be time consuming but allows you to check if the files are legitimate or not:

  find ~ / -name '* ~' -print0 

See list with a newline:

  find ~ / -name '* ~' 

Delete without confirmation:

  find ~ / -name '* ~' -print0 |  xargs -0 rm 
 

Removing old kernels

To remove old kernels, see the section Removing older kernels the kernel page.

 

Clear the cache of your browser

Epiphany:

Graphics mode: Edit → Preferences → Privacy → → Delete Temporary Files

Otherwise clear the ~ / .gnome2 / epiphany / mozilla / epiphany / Cache

Firefox: Tools → Clear Recent History ... → Cache

 

Script staff

This is just a proposal, just to automate things, customizing the script is not the subject of this article, but if you find bugs or if you do not get to create your own script I suggest you start a thread here: Forum Ubuntu developers or contact me if any
Here is a script that accelerates these manipulations for allergic to command lines: maintenir_systeme

If you do not trust this script I propose to create your own.

Step 1 Choose your command lines:

  sudo apt-get autoclean
 rm -r -f ~ / .local / share / Trash / files / * 

Step 2 Create a file nettoyage.sh example and fill it:

  nano nettoyage.sh 

copy and paste the command line:

  sudo apt-get autoclean
 rm -r -f ~ / .local / share / Trash / files / * 
 find ~ / .thumbnails -type f -exec rm -atime 7 {} \; 

Step 3 Customize execution:

  echo "Script cleaning Ubuntu"
 sudo apt-get autoclean
 echo "Obsolete packages have been removed OK"
 3 sleep
 find ~ / .thumbnails -type f -exec rm -atime 7 {} \;
 echo "Deleted icons"
 rm -r -f ~ / .local / share / Trash / files / * 
 echo "emptied Trash"
 3 sleep
 find ~ / -name '~ *' -exec rm {} \;
 echo "Temporary files (ending in ~) of the HOME file were suprimmés"
 echo "Cleaning completed" 

Step 4 Check the files in the trash (recovery impossible)

Step 5 Run it (after making it executable):

  chmod + x nettoyage.sh 
  sh nettoyage.sh 
 

DRAFT

You have an idea of ​​cleansing? Write it after this note until a valid experienced contributors and included in the previous parts

When apt-get stops working due to lack of space

I recently stumbled on a problem of space for the installation of a new kernel. After listing all available cores, I began to remove them manually in the / boot directory and in the grub menu.lst to prevent subsequent error, I would say it's a little nag but obviously it works . For example kernel 2.6.28-19 deletion

  cd / boot
 find ./ -name "* * 2.6.28-19"
 rm ./vmlinuz-2.6.28-19-server
 rm ./config-2.6.28-19-server
 rm ./abi-2.6.28-19-server
 rm ./System.map-2.6.28-19-server
 rm ./vmcoreinfo-2.6.28-19-server
 rm ./initrd.img-2.6.28-19-server 

and removing the grub menu.lst of the corresponding line

Clear Adobe Flash Player temporary files every browser launch (here Firefox)

Change the browser shortcut:

  rm -r ~ / .adobe / flash_player; rm -r ~ / .macromedia / flash_player; firefox% u 

seeking in folders files ending with tilde

  find $ HOME -name "* ~" -a!  -path "$ HOME / .local / share / Trash *" -ok mv "{}" ~ / .local / share / Trash / files / \;

 find / var / www / -name "* ~" -a!  -ok {} mv ~ / .local / share / Trash / files / \; 

Clear X days older files to a folder

In the current folder, delete all older than 15 days files:

  find.  -mtime -print -exec rm 15 "{}" \; 

Otherwise, a script that retrieves an argument (here the oldest files from any number of days):

  #! / bin / bash

 echo "Enter the folder in which you want to delete the file [path]."
 read path
 cd "$ {path}"
 if [$?  = 1]
 Then
   echo "The path is incorrect."
   echo "You are located in the following folder:"
   pwd
   echo "This script will select the folder where you stand no default. Continue? [Y / N]"
   read rep1
 else
   rep1 = 'o'
 fi
 if [$ rep1 = 'o']
 Then
   echo "Delete old files for how long? [In number of days]"
   read cbTemps
   find.  -mtime + $ cbTemps -print -exec rm "{}" \;
   if [$? = 1]
   Then
     echo "An error has occurred. Interruption of the script."
   else
     echo "Removing old files of more than $ cbTemps days) successful. script interruption."
   fi
 else
   echo "Interrupting the current script."
 fi 

At startup, empty the trash of his old files

In the settings, session startup, add this command to automatically remove over 30 days files. It can prevent the beast down the overflow PC ...

  find ~ / .local / share / Trash / files / -mtime 30 -delete 
 

See as well

https://translate.google.com/translate?hl=ru&ie=UTF8&prev=_t&sl=auto&tl=en&u=http://doc.ubuntu-fr.org/nettoyer_ubuntu
http://doc.ubuntu-fr.org/nettoyer_ubuntu
oio11: (Default)
InstallingSoftware - Community Help Wiki

..  
Installing packages without an Internet connection

Sometimes, an internet connection is unavailable to install programs.

It is possible to install programs without CDs or DVDs onto offline computers, using a simple USB key for example to transfer only the packages you need.

There are several methods to do this:

 

Use Keryx

Keryx is a portable, cross-platform package manager for APT-based (Ubuntu, Debian) systems. It provides a graphical interface for gathering updates, packages, and dependencies for offline computers. Keryx is free and open source. You can get Keryx here: https://launchpad.net/keryx

 

Use the Synaptic package download script

Here's how: Synaptic/PackageDownloadScript

Short instructions:

  • Launch Synaptic on the offline computer
  • Mark the packages you wish to install
  • Select File->Generate package download script

  • Save the script to your USB key
  • Take the USB key to an online Linux computer and run the script there from the USB key. It will download only the packages required by the offline computer to the USB key.
  • Insert the USB key into the offline computer
  • Launch Synaptic and click on File->Add downloaded packages

  • Select the directory on your USB key containing the downloaded *.deb files and press Open. The packages will be installed.

Note: If you don't have access to a PC with GNU/Linux or emulating/virtualizing GNU/Linux (Cygwin, VMware, VirtualBox, Qemu, etc), just open the script with a text editor and enter all the URLs you see in your browser to download the corresponding packages.

If you have all the necessary libraries and/or dependencies, the simplest way is of course to just download the .deb package you need, just as you would with a Windows installer, and double-click the package to install it with GDebi.

All Ubuntu packages are available on http://packages.ubuntu.com/ and http://www.debian.org/distrib/packages .

 

Use Offline apt-get update

If you can't even select the packages on your offline PC because you can't add the repository / update the package info, try this: AptGet/Offline/Repository

Basically, it consists in creating your own local repository, except that it won't contain the packages themselves, only the dependency information.

The problem is that when you generate the package download list using this method, it will try to get the packages from your local repository and obviously fail.

The solution is to post-process the script by replacing the URLs with the correct one.

Assuming you created the local repository at "/home/username/repository" and got the different files from "http://archive.ubuntu.com/ubuntu/", this can easily be done with the following command:

sed 's#file:///home/username/repository#http://archive.ubuntu.com/ubuntu#' download_script.sh > download_script2.sh
chmod +x download_script2.sh

or directly without creating a second script:

sed -i 's#file:///home/username/repository#http://archive.ubuntu.com/ubuntu#' download_script.sh

or simply with any text editor featuring search&replace.

See also: AptGet/Offline.

 

Use apt-offline

apt-offline allows you to easily upgrade or install new packages on your offline PC, by using another online PC.

sudo apt-get install apt-offline

 

Upgrading

  1. On the offline PC:

 

sudo apt-offline set /tmp/apt-offline.sig
  1. On the online PC:

 

sudo apt-offline get C:\apt-offline.sig --bug-reports --threads 5
  1. On the offline PC:

 

sudo apt-offline install /media/USB/apt-offline.zip

 

Installing

  1. On the offline PC:

 

sudo apt-offline set abuse-offline.sig --install-packages abuse --src-build-dep --install-src-packages abuse 
  1. On the online PC:

 

sudo apt-offline get abuse-offline.sig --no-checksum --bundle abuse-offline.zip 
  1. On the offline PC:

 

sudo apt-offline install /media/USB/abuse-offline.zip

 

More info


..    https://help.ubuntu.com/community/InstallingSoftware
oio11: (Default)
 

Описание проблемы

Ubuntu по умолчанию использует кодировку текстовых файлов UTF-8, однако некоторые операционные системы используют другие кодировки (например, русская версия Microsoft Windows использует CP-1251). Из-за разницы в кодировках могут возникнуть проблемы при открытии текстовых файлов в редакторе Gedit - они будут нечитаемыми. Данная статья предлагает несколько простых способов решения этой проблемы.

Read more... ) http://help.ubuntu.ru/wiki/смена_кодировки_в_gedit
oio11: (Default)
[Wiki][HOWTO]Исправляем исчезающий апплет сети - nm-applet, NetworkManager и т д
« : 06 Сентябрь 2010, 11:54:01 »
Статья в ВИКИ, в ней данные постоянно обновляются и дополняются.

--Пупизоид


Всем привет!

Предлагаю вам раз и навсегда решить проблему с исчезающим апплетом сети (nm-applet, апплет NetworkManager) и перестать его ругать.
Данная инструкция должна подойдет для всех ubuntu начиная с interpid 8.10 и до lucid lynx 10.04 (10.04.1)

Что нам для этого нужно усвоить:

В ubuntu существуют два режима работы с сетью

1. Управление сетевыми настройками через редактирование файла /etc/network/interfaces
2. Использование апплета сети, он же nm-applet, апплет NetworkManager и т.д.

Рассмотрим оба варианта

1. Управление сетевыми настройками через редактирование файла /etc/network/interfaces

Руководствуясь man interfaces, указываем свои сетевые настройки в файле /etc/network/interfaces, перезапускаем сервис сети командой sudo /etc/init.d/networking restart и радуемся жизни.

2. Использование апплета сети, он же nm-applet, апплет NetworkManager и т.д.

В файле /etc/network/interface, закомментируйте знаком # или сотрите все строки кроме следующих

auto lo
iface lo inet loopback


отредактируйте файл /etc/NetworkManager/nm-system-settings.conf установив параметр managed=true в разделе [ifupdown] чтобы получилось как в примере указанном ниже

[ifupdown]
managed=true


(((  debian   ---   geany /etc/NetworkManager/NetworkManager.conf )))

Перезапустите апплет сети командой sudo service network-manager restart, вуаля! все на месте все работает и никуда больше не денется.

Проводим разбор полетов:

Параметр managed=true/false в разделе [ifupdown] файла /etc/NetworkManager/nm-system-settings.conf устанавливает состояние работы апплета сети.
То есть, managed=true позволяет апплету сети обслуживание сетевых соединений, а managed=false запрещает (по умолчанию стоит именно этот параметр), что собственно и приводит к исчезновению апплета сети из трея после добавления любых настроек кроме как по умолчанию в файл /etc/network/interfaces.

Все желающие могут почитать первоисточник который находится здесь: /usr/share/doc/network-manager/README.Debian

Данная инструкция написана для людей и только для людей.

Всегда ваш 3245.

27.08.2011 Добавлен скрипт для настройки режима работы с сетью через NetworkManager

Сохраняем, и запускаем через терминал командой sh NetworkManager.sh.txt
 
* NetworkManager.sh.txt (2.35 кБ - загружено 978 раз.)
« Последнее редактирование: 27 Июнь 2012, 14:05:03 от Пупизоид »
http://forum.ubuntu.ru/index.php?topic=112200.0

Source Package: network-manager-applet (0.9.4.1-5)
https://packages.debian.org/ru/source/wheezy/network-manager-applet

[ Source: network-manager ]
Package: gir1.2-networkmanager-1.0 (0.9.4.0-10)

https://packages.debian.org/wheezy/gir1.2-networkmanager-1.0
 
oio11: (Default)

Убиваем процессы в Linux - команды ps, kill и killall

Несмотря на свою стабильность, некоторые приложения в Linux иногда виснут. Иногда приложения перестают отзываться или просто работают так медленно, что корректно закрыть их не получается. Read more... )
oio11: (dr)
Оригинал взят у [livejournal.com profile] uzverss в Gtk-WARNING **: Загружаемый модуль тем не найден в > module_path: "pixmap"
Если при запуске приложений возникают сообщения:
Gtk-WARNING **: Загружаемый модуль тем не найден в > module_path: "pixmap"
то устраняется это командой:
sudo apt-get install gtk2-engines-pixbuf

http://tuksik.ru/gtk-warning-error-pixmap/
oio11: (dr)
Оригинал взят у [livejournal.com profile] opennet в Утверждено кодовое имя Ubuntu 14.10 - Utopic Unicorn
Марк Шаттлворт объявил о присвоении следующему выпуску Ubuntu (14.10) имени "Utopic Unicorn" (Утопический Единорог). Имя сказочного персонажа символизирует мечту о будущем к которому может стремиться дистрибутив, одновременно подчёркивая реальность воплощения свежих идей в выпуске, идущем следом за консервативным LTS-релизом....

Подробнее: http://opennet.ru/39630/
oio11: (dr)
Оригинал взят у [livejournal.com profile] little_fey в 10 мыслей Что Сделать после установки Ubuntu 14.04 LTS
Оригинал статьи на Webupd8, а здесь несколько вольный перевод.

Дожили мы до следующего релиза с длительным сроком поддержки 14.04. В течение тестирования даже ранние беты были стабильнее релиза 13.10 из-за чего имеет смысл перейти на него тем, кто стремится пользоваться всем самым передовым и свежим.

Read more... )
oio11: (Default)

Custom UNetbootin Versions and Plugins

The following custom UNetbootin versions, derivatives, and plugins Read more... )
oio11: (Default)

Using a UNetbootin Plugin

1. First, download the latest version of UNetbootin (for Windows) (for Linux)

2. Next, download a plugin to the same directory that you have the UNetbootin executable in.

3. Then, run the UNetbootin executable, and if all went well, the plugin should be loaded and you should see the customized version, such as this:

Imported from wikispaces

Troubleshooting

If something isn't working correctly, try renaming the plugin to "unetbootin_custom.qm" or "unetbootin_custom_en.qm" (<-- substitute en with your locale here), copy the plugin and UNetbootin executable to your desktop, make sure there aren't other ".qm" files on it, and rerun the UNetbootin executable.

If this procedure works with the standard plugin example but not with the one you're using, it's an issue with the plugin itself, not UNetbootin; if you created the plugin please refer to the guide for Building a UNetbootin Plugin.

See Also

Building a UNetbootin Plugin
Building a Custom UNetbootin Version
List of Custom UNetbootin Versions and Plugins (publicly editable)

Download in other formats:

http://sourceforge.net/apps/trac/unetbootin/wiki/useplugin
oio11: (Default)

UNetbootin Command Line Options

Commands can optionally be used to pre-specify options, and/or automate installations with UNetbootin. They are available only from version 372 onwards. Read more... )
oio11: (Default)

Отключаем гостевую сессию в Ubuntu 13.10

Оставлять на рабочем месте ноутбук с незаблокированным гостевым пользователем иногда бывает чревато - даже если у вас нет причин беспокоиться по поводу защиты хранящейся на нём информации, есть шанс, что кто-нибудь из коллег захочет смищно пошутить, и потом вам придётся убирать "весёлые картинки" с рабочего стола, или, к примеру, "отстреливать" сотню процессов gnome-eyes-applet. Поэтому на машине, использующейся на рабочем месте, гостевой сеанс лучше отключить.Read more... )
oio11: (Default)

Как отключить отчёты о сбоях в Ubuntu12.04/12.10

 
Пользователи Ubuntu 12.04/12.10 вероятно заметили, что в текущем релизе  аварий больше, чем предыдущих версиях.
Если вы не хотите получать всплывающие окна с отчётами о сбоях, откройте терминал (Ctrl+Alt+T), скопируйте и выполните следующую команду:

sudo sed -i "s/enabled=1/enabled=0/g" '/etc/default/apport'

После выполнения команды, отчёты о сбоях и ошибках в системе вас не будут больше беспокоить.

Удачи.


http://compizomania.blogspot.com/2012/06/ubuntu1204.html
oio11: (Default)
####################################################################
Read more... )
oio11: (Default)
Jan 25

Всем привет!
Сегодня мы попробуем ускорить работу OC Ubuntu 12.04 LTS.
Для этого необходимо сделать следующее: Read more... )

October 2025

S M T W T F S
   1234
567891011
12131415161718
19202122 232425
262728293031 

Syndicate

RSS Atom

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Mar. 6th, 2026 02:57 pm
Powered by Dreamwidth Studios