ubuntu 14.04 ANT nasıl kurulur


13

Ubuntu'da yeniyim ve Ubuntu'ya Apache ANT yüklemeye çalışıyorum

Paketi indirdim (apache-ant-1.9.4-bin.tar.gz) ve bir terminalde böyle bir komut verdim

sudo apt-get install apache-ant-1.9.4-bin.tar.gz

Bu iki hatayı aldım

E: Unable to locate package apache-ant-1.9.4-bin.tar.gz
E: Couldn't find any package by regex 'apache-ant-1.9.4-bin.tar.gz'

ve eğer kullanırsam

/etc/apt/sources.list

1   deb-src http://ppa.launchpad.net/klaus-vormweg/bluefish/ubuntu trusty main$
 2  sudo apt-get install python-software-properties$
 3  # deb cdrom:[Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417)]/ trusty main restricted$
 4  $
 5  # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to$
 6  # newer versions of the distribution.$
 7  $
 8  ## Major bug fix updates produced after the final release of the$
 9  ## distribution.$
10  $
11  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu$
12  ## team. Also, please note that software in universe WILL NOT receive any$
13  ## review or updates from the Ubuntu security team.$
14  $
15  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu $
16  ## team, and may not be under a free licence. Please satisfy yourself as to $
17  ## your rights to use the software. Also, please note that software in $
18  ## multiverse WILL NOT receive any review or updates from the Ubuntu$
19  ## security team.$
20  $
21  ## N.B. software from this repository may not have been tested as$
22  ## extensively as that contained in the main release, although it includes$
23  ## newer versions of some applications which may provide useful features.$
24  ## Also, please note that software in backports WILL NOT receive any review$
25  ## or updates from the Ubuntu security team.$
26  $
27  $
28  ## Uncomment the following two lines to add software from Canonical's$
29  ## 'partner' repository.$
30  ## This software is not part of Ubuntu, but is offered by Canonical and the$
31  ## respective vendors as a service to Ubuntu users.$
32  deb http://archive.canonical.com/ubuntu trusty partner$
33  deb-src http://archive.canonical.com/ubuntu trusty partner$
34  $
35   This software is not part of Ubuntu, but is offered by third-party$
36  developers who want to ship their latest software.$
37  deb http://extras.ubuntu.com/ubuntu trusty main$
38  deb-src http://extras.ubuntu.com/ubuntu trusty main$
39  deb http://archive.ubuntu.com/ubuntu trusty universe main multiverse restricted$
40  deb-src http://archive.ubuntu.com/ubuntu trusty universe main restricted multiverse #Added by software-properties$
41  deb http://security.ubuntu.com/ubuntu/ trusty-security universe main multiverse restricted$
42  deb http://archive.ubuntu.com/ubuntu trusty-updates universe main multiverse restricted$
43  deb http://archive.ubuntu.com/ubuntu trusty-proposed universe main multiverse restricted$
44  deb http://archive.ubuntu.com/ubuntu trusty-backports universe main multiverse restricted$

Nasıl ilerlemeliyim?


Apt-get ile bir .tar.gz arşivi yükleyemezsiniz. Apt-get, paketleri paket deposundan yükler.
user205301

Tamam o zaman nasıl Apache ANT ubuntu başka bir adım
yükleyebilirsiniz

İçeriğini yayınlayın /etc/apt/sources.list. Satır 2'de bir hata var.
AB

Tam ve net adımları buradan kontrol edin stackoverflow.com/a/51780186/3089950
IRSHAD

Yanıtlar:


15

Dosya apache-ant-1.9.4-bin.tar.gzyüklenebilir paket değil. Yüklenebilir bir paket ile biter .deb.

Ant'i paket yöneticisi aracılığıyla kurabilirsiniz .

Ancak önce sisteminizdeki bir hatayı düzeltmeniz gerekir:

Bir terminal açın ve bu komutu çalıştırın

sudo nano /etc/apt/sources.list

Çizgiyi kaldırın (2. satır)

sudo apt-get install python-software-properties$

ve 35 ve 36 #satırlarında satırın başına a ekleyin :

# This software is not part of Ubuntu, but is offered by third-party
# developers who want to ship their latest software.

ve tüm kaldırmak $gelen seninsources.list

Sonra komutu çalıştırın:

sudo apt-get update

Sonra karınca yükleyin :

sudo apt-get install ant

1
Linux için neredeyse tüm genel ikili sürümler de .tar.gz-arşivleri gibi bu durumda olduğu gibi .tar.gz normalde kaynak kodunu içerdiğini söylemek biraz yanıltıcıdır.
user205301

Teşekkürler AB İyi çalışıyor .... sorun çözüldü. çok teşekkürler
Vinodh Kumar

@ user205301 Tamam, kaldırıldı
AB

@VinodhKumar Cevabımdan memnun kaldınız mı? O zaman bana bir oy verin (∧). Sorununuzu çözebilseydim, cevabımı işaretlemeniz iyi olurdu (✓). ;)
AB

Cevabını oylayamadım. 35 itibara ihtiyacı olduğu için cevabınızın doğru olduğunu kabul ettim.
Vinodh Kumar

9

basitçe: sudo apt-get install ant

Daha yeni bir sürüme ihtiyacınız varsa, bir yere indirdiğiniz .tar.gz dosyasını çıkarmanız ve oradan karınca çalıştırmanız gerekir.

tar xzvf apache-ant-1.9.4-bin.tar.gzarşivi çıkartır. Temelde sadece bir ZIP arşivi. Dosya tarayıcısından grafik olarak da ayıklayabilirsiniz.


Bu komut 'sudo apt-get install ant' denedim ama bu hatayı aldım Paket karınca bulunamadı
Vinodh Kumar

sudo apt-get updateÖnce koşmaya çalışın . Ubuntu 14.04 var ve ben sadece paket orada olmalı böylece apt-get ile karınca yüklü.
user205301

sudo apt-get güncellemesini denedim bu hatayı aldım E: 'sudo' kaynak listesinde /etc/apt/sources.list 2 satırında bilinmiyor E: Kaynakların listesi okunamadı.
Vinodh Kumar

sudo apt-get updateBir hata varsa komutu nasıl çalıştırabilir ?
AB

@AB Sorulara sources.list hata satırını ekledim ... kontrol et
Vinodh Kumar
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.