oio11: (Default)

Downgrading to an earlier Debian branch

The best (albeit hyper-condensed) answer is given in the #debian IRC channel FAQRead more... )
oio11: (Default)
Home > DEBIAN/UBUNTU, HOW-TOS > Automatic download and upgrade of packages In Debian/Ubuntu

Automatic download and upgrade of packages In Debian/Ubuntu

April 28th, 2010
debianThe apt package comes withRead more... )
oio11: (Default)
Для получения и импортирования в систему ключа с сервера необходимо выполнить команду:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 12345678
Где вместо keyserver.ubuntu.com можно подставить адрес другого сервера ключей, а вместо 12345678 необходимо написать идентификатор нужного вам ключа.

Совет: для того, чтобы разом попытаться импортировать все недостающие ключи репозиториев, выполните в консоли:
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com `sudo aptitude update 2>&1 | grep -o '[0-9A-Z]\{16\}$' | xargs`



http://help.ubuntu.ru/wiki/репозиторий
oio11: (Default)
###################################################################################################
### CRUNCHBANGRead more... )
oio11: (Default)

[HOW TO] Install and Integrate Dropbox with Thunar

Tuesday, November 13, 2012

In this article we'll see how to install Dropbox and Thunar integration in Xubuntu.Read more... )

oio11: (Default)
machinebacon
#! unstable


Registered: 2009-07-02

Posts: 6,198




Re: [SOLVED] How do I test Waldorf without a complete reinstall?



It's basically only three steps, all as sudo:

1) Edit the sources.list

nano /etc/apt/sources.list

and change every squeeze to wheezy, and every statler to waldorf. The backports lines can be commented (put a # in front). Save and exit.

For reference this is the sources.list of Waldorf - you can copy&paste it:

deb http://packages.crunchbang.org/waldorf waldorf main
deb http://ftp.debian.org/debian/ wheezy main contrib non-free
deb http://security.debian.org/ wheezy/updates main
deb-src http://cdn.debian.net/debian/ wheezy main contrib non-free

2) Edit the apt-configuration

nano /etc/apt/apt.conf

and change the default release to wheezy

APT::Default-Release "wheezy";

The newest release doesn't have this file, but it doesn't hurt to create it.

3) Edit the apt-preferences

nano /etc/apt/preferences

and change the priority

Package: *
Pin: release a=waldorf
Pin-Priority: 1001

Package: *
Pin: release a=wheezy
Pin-Priority: 500

Then you can perform the upgrade:

sudo apt-get update && sudo apt-get dist-upgrade

It will most probably get stuck somewhere, in this case do

sudo apt-get install -f

Reference (change "sid" to "wheezy" and "unstable" to "testing"): http://crunchbanglinux.org/forums/topic … se-to-sid/

Edit: added the 'original' entries


Last edited by machinebacon (2012-05-03 14:27:17)

http://crunchbang.org/forums/viewtopic.php?id=19301


http://lists.debian.org/debian-user/2011/05/msg00448.html

http://http.debian.net/

 
oio11: (Default)

Oracle Java (JDK) 6 / 7 / 8 Installer PPA

Read more... )
oio11: (Default)

Latest updates with changelog for all releases

Show updated packages for:
All releases Hardy Lucid Natty Oneiric Precise Quantal
Include all PPAs Exclude daily builds PPAs Exclude all PPAs
Include levels: backportssecurityproposedbaseupdates

Note: Only updates for "head" packages where the changelog is available are shown on this page (view all).

http://www.ubuntuupdates.org/
oio11: (Default)

5

Setting up and managing an Ubuntu server all by myself, in coming months, is a part of my current plans. Hence, I am planning a swtich from Windows to Linux - - Ubuntu. I now need to get some grip on the command line, since I am all used to Windows' GUI.

Anyway... the most obvious start is installing apps on my computer, and I thought I should learn to do it via CLI. And this is what I did:

$ apt-cache search chrome browser 

the results showed that the proper term is "chrome-browser," so...

$ sudo apt-get install chrome-browser 

And then "Y" for the Y/n question.

But the installation threw errors. (I do not have my PC at hand, so can't mention what error exactly.) Does someone see anything wrong with the commands I issued? I am probably missing some command(s) in between, I think.

shareimprove this question
 
feedback

6 Answers

up vote 15 down vote accepted

Google Chrome isn't in the repositories - however, Chromium is.

To install Google Chrome, run the following:

For 32 bit:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb 

For 64 bit:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 

sudo dpkg -i ./google-chrome*.deb - this installs the deb

sudo apt-get -f install There is a dependencies issue with the Google Chrome deb that needs to be resolved - that is what the sudo apt-get -f install is for.

shareimprove this answer
   

..................................................................
http://askubuntu.com/questions/79280/how-to-install-chrome-browser-properly-via-command-line
oio11: (Default)

W: Ошибка GPG: http://packages.crunchbang.org squeeze-backports Release: Следующие подписи неверные: KEYEXPIRED 1352888501

2 (22.11.2012 19:16 отредактировано termit)

В терминалеRead more... )
oio11: (Default)

Добавляем в Debian команду add-apt-repository

 
Не так давно я совершил переход с Ubuntu на Debian(используя новый релиз crunchbang) и мне стало дико не хватать утилы add-apt-repository. Гуглинг привел меня на замечательный Read more... )
oio11: (Default)
Сборка дополнительный модулей ядра в Debian и Ubuntu [исправить]




Установить дополнительный модуль из исходных текстов для Linux ядра в Debian,
не нарушая пакетной структуры дистрибутива, можно при помощи приложения
module-assistant, в результате работы которого на выходе получается обычный
deb-пакет с заданным модулем.Read more... )
oio11: (Default)

stylesen's blog


Posted by stylesen
add-apt-repository is a command which allows us to add a new repository link to the apt sources ie., /etc/apt/sources.lst file. This is very handy in order to add PPA archives. The advantage of using this command is, it will automatically import the gpg public key of the repository and registers it.
In Ubuntu version 12.10 ie., Quantal this command is not part of 'python-software-properties' package, like the previous ubuntu versions, but available in 'software-properties-common'. In order to install add-apt-repository in 12.10, we must install the package 'software-properties-common' as follows:
$ sudo aptitude install software-properties-common
To find in which package the command we are looking for exists the following will be of help:
$ sudo apt-file update
$ sudo apt-file search add-apt-repository
NOTE: The above commands assume 'apt-file' is already installed in your system.
https://webcache.googleusercontent.com/search?hl=ru&biw=&bih=&q=cache:I9vCHZSDlgwJ:http://www.stylesen.org/blog/stylesen%2Bhttp://www.stylesen.org/blog/stylesen&gbv=2&gs_l=heirloom-hp.3...1131.1131.0.3161.1.1.0.0.0.0.143.143.0j1.1.0...0.0...1c.1.cq1nDXsIMj8&ct=clnk
oio11: (Default)

debian_sources.list

# Craigevil's Giant Debian /etc/apt/sources.list  Updated October 24, 2012. Added siduction XFCE 4.10 repo      
# This list is for Debian if you are using Ubuntu do not use this list. 
# If you notice any repos not working please let me know in irc in #smxi on irc.oftc.net
# If you maintain a Debian repo and would like it added to the list email me at craigevil at gmail dot com

See http://www.debian.org/ for information about Debian GNU/Linux.
Three Debian releases are available on the main site:

Debian 6.0, or Squeeze. Access this release through dists/stable
Debian 6.0: 6.0.6 released. September 29th, 2012.

Testing, or Wheezy. Access this release through dists/testing. The
current tested development snapshot is named wheezy. Packages which
have been tested in unstable and passed automated tests propogate to
this release.

Unstable, or sid. Access this release through dists/unstable. The
current development snapshot is named sid. Untested candidate
packages for future releases.

Older releases of Debian are at http://archive.debian.org/debian-archive
Some helpful links:
#  Presents of God Ministry - http://www.remnantofgod.org/
#  Debian GNU/Linux Installation Guide : http://www.debian.org/releases/stable/i386/
#  Debian HCL; Debian GNU/Linux device driver check & report - http://kmuto.jp/debian/hcl/
#  The Debian Administrator's Handbook - http://debian-handbook.info
#  Debian Social Contract - http://www.debian.org/social_contract
#  Debian -- Reasons to Choose Debian - http://www.debian.org/intro/why_debian
#  Official Debian mirrors http://www.debian.org/mirror/list
#  Also at http://ftp.debian.org/debian/README.mirrors.txt
#  Debian mirrors HTTP redirector - http://http.debian.net/
#  Debian oldstable repo http://archive.debian.org/debian/README
#  mentors.debian.net Helps you get your packages into Debian http://mentors.debian.net
#  Basics of the Debian package management system - http://www.debian.org/doc/FAQ/ch-pkg_basics.html
#  AptPreferences - Debian Wiki : http://wiki.debian.org/AptPreferences
#  Apt-Pinning for Beginners : http://jaqque.sbih.org/kplug/apt-pinning.html
#  Search Debian -- Packages - http://www.debian.org/distrib/packages
#  apt-get.org: Unofficial APT repositories - http://www.apt-get.org/
#  Debian-Database.ORG - Unofficial Debian Repositories Collected - http://www.debian-database.org/?s=repos
#  UnofficialRepositories - Debian Wiki - http://wiki.debian.org/UnofficialRepositories

#  Debian infographic : https://claudiocomputing.files.wordpress.com/2012/01/infographic_debian-en-v1-01.png
#  smxi - unofficial Debian maintenance script http://smxi.org/site/install.htm
#  Exoodles multimedia installer script http://tinyurl.com/2vjj3lp
#  Howto: Set up and Maintain a Mixed Testing/Unstable System : http://forums.debian.net/viewtopic.php?f=16&t=15612&p=76067
#  Howto get newer package versions for Debian Stable -  https://www.linuxquestions.org/questions/blog/craigevil-176422/howto-get-newer-package-versions-for-debian-stable-34611/
#  Grokking Debian GNU/Linux - : http://www.linuxquestions.org/questions/blog/craigevil-176422/grokking-debian-gnu-linux-3073/

## Start Repository List ##

.............................................

My Debian sources.list




https://sites.google.com/site/mydebiansourceslist/
oio11: (Default)

Как добавить программу в автозагрузку в Ubuntu

Метки: Ubuntu | настройка Ubuntu
Четверг, 19 июня 2008 г.
Read more... )

May 2025

S M T W T F S
    123
45678910
11121314151617
181920212223 24
25262728293031

Syndicate

RSS Atom

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated May. 30th, 2025 12:13 pm
Powered by Dreamwidth Studios