為什麼站上沒有16.10可以下載呢? [論壇 - Ubuntu 哈啦]


正在瀏覽:   1 名遊客


 到底部   前一個主題   下一個主題  [無發表權] 請登錄或者註冊

(1) 2 »


為什麼站上沒有16.10可以下載呢?
會員三級
註冊日期:
2008/12/11 21:09
所屬群組:
已註冊使用者
等級: 10
HP : 0 / 236
MP : 43 / 9994
EXP: 44
離線
如題,國外站已經有載點了
一直習慣在這下載,但一直沒有看到載點
是我看漏了嗎?
還是16.10有什麼不OK的地方,所以不建議下載嗎?

誠心且虛心的發問。謝謝。

2016/11/26 17:29
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
會員五級
註冊日期:
2012/4/22 10:50
所屬群組:
已註冊使用者
等級: 37
HP : 0 / 901
MP : 671 / 29303
EXP: 6
離線
seven777 寫到:
如題,國外站已經有載點了
一直習慣在這下載,但一直沒有看到載點
是我看漏了嗎?
還是16.10有什麼不OK的地方,所以不建議下載嗎?

誠心且虛心的發問。謝謝。


雖然這需要由站方來回答,

若是急需要從這裡下載的話,

這個網站上面的連結「下載」,

在頁面的右方,有一段話「或是至此瀏覽所有版本及檔案」,

從那就可以找到「16.10」。


以上提供參考



================================================================================

## 相關討論

* #2 回覆: ubuntu 15.04釋出
* Ubuntu 問答集 / Ubuntu Release Cdimage
* Ubuntu 問答集 / Ubuntu Release Cdimage 16.04 (Xenial Xerus)

================================================================================

2016/11/26 18:03
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
會員五級
註冊日期:
2012/4/22 10:50
所屬群組:
已註冊使用者
等級: 37
HP : 0 / 901
MP : 671 / 29303
EXP: 6
離線
# 簡介一些下載的方式

以下只是簡介有哪些軟體可以使用,深入的使用方式,請自行閱讀相關的Manual。
或是根據關鍵字,在網路找到更多的參考文章,來了解怎麼善用這些工具。


================================================================================


## wget

指令是「wget
套件是「wget

--------------------------------------------------------------------------------

## 單一檔案

執行


$ wget -c http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso




--------------------------------------------------------------------------------


## 多個檔案

將下面列表存成一個檔案「16.10.list」


http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-i386.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-i386.iso



然後執行


$ wget -c -i 16.10.list



--------------------------------------------------------------------------------

## 衍生方式一

上面可以寫成一個「script」,假設叫做「download.sh」,內容如下


#!/usr/bin/env bash

cat > 16.10.list << EOF
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-i386.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-i386.iso
EOF

wget -c -i 16.10.list



執行


$ bash download.sh



或是


$ sh download.sh



就可以下載

也可以將「download.sh」改成可執行

執行


$ chmod u+x download.sh



或是執行


$ chmod +x download.sh



然後就可以執行


$ ./download.sh



一樣可以下載


--------------------------------------------------------------------------------


## 衍生方式二

假設不使用「wget -i」這個選項

一般直覺使用這樣下面的方式


#!/usr/bin/env bash

wget -c http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso
wget -c http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-i386.iso
wget -c http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-amd64.iso
wget -c http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-i386.iso



然後改寫


#!/usr/bin/env bash

cat > 16.10.list << EOF
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-i386.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-i386.iso
EOF

for URL in $(cat 16.10.list); do
	#echo $URL
	wget -c $URL
done



這個模式可以套用在「git clone」或是「apt-get install」上。

「for」的語法記不住,我通常都直接查「$ help for」就可以找到語法。

「cat > some_file << EOF
contnet
EOF」
這個用法可以參考「Wikipidia / Here document (中文)」,

或是執行「man bash」找尋「Here Strings」上下文閱讀。

上面的寫法也可以改成下面的寫法,這樣的寫法,執行過程就不會產生「16.10.list」這個檔。


#!/usr/bin/env bash

LIST=$(cat << EOF
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-i386.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-i386.iso
EOF
)


for URL in $LIST; do
        #echo $URL
        wget -c $URL
done



也可以改成下面的寫法,因為「wget」後面可以接多個「url」。


#!/usr/bin/env bash

LIST=$(cat << EOF
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-i386.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-i386.iso
EOF
)


wget -c $LIST




回到剛剛的「衍生方式一」,若不透過「wget -i」,就可以改寫成下面的寫法


#!/usr/bin/env bash

cat > 16.10.list << EOF
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-i386.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-amd64.iso
http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-server-i386.iso
EOF

wget -c $(cat 16.10.list)



================================================================================


## curl

除了「wget」這個指令,還有另一個指令「curl」。

指令是「curl
套件是「curl

可以執行下面指令下載


$ curl -o ubuntu-16.10-desktop-amd64.iso http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso




================================================================================


## ftp 下載 (使用指令ftp)

使用「ftp」這個指令來登入ftp下載,

套件是「ftp」或是「tnftp」。
請執行「ls -l /usr/bin/ftp」觀察,然後執行「ls -l /etc/alternatives/ftp」觀察
或是執行「update-alternatives --display ftp」。

執行


$ ftp ftp.ubuntu-tw.org



會出現互動提示訊息,
「Name」輸入「anonymous」按下「Enter」,
「Password:」直接按下「Enter」


Connected to ftp.ncnu.ubuntu-tw.net.
220 Welcome to Ubuntu-TW FTP service.
Name (ftp.ubuntu-tw.org:sam): anonymous
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>



執行「cd」


ftp> cd /mirror/ubuntu-releases/16.10/
250 Directory successfully changed.




執行「ls」


ftp> ls
200 PORT command successful. Consider using PASV.
150 Here comes the directory listing.
-rw-r--r-- 1 1000 1000 27 Oct 13 17:52 FOOTER.html
-rw-r--r-- 1 1000 1000 2917 Oct 13 17:52 HEADER.html
-rw-r--r-- 1 1000 1000 256 Oct 13 19:00 MD5SUMS
-rw-r--r-- 1 1000 1000 576 Oct 13 17:53 MD5SUMS-metalink
-rw-r--r-- 1 1000 1000 933 Oct 13 17:53 MD5SUMS-metalink.gpg
-rw-r--r-- 1 1000 1000 933 Oct 13 19:00 MD5SUMS.gpg
-rw-r--r-- 1 1000 1000 288 Oct 13 19:00 SHA1SUMS
-rw-r--r-- 1 1000 1000 933 Oct 13 19:00 SHA1SUMS.gpg
-rw-r--r-- 1 1000 1000 384 Oct 13 19:00 SHA256SUMS
-rw-r--r-- 1 1000 1000 933 Oct 13 19:00 SHA256SUMS.gpg
lrwxrwxrwx 1 1000 1000 39 Oct 13 17:49 ubuntu-16.10-desktop-amd64.iso -> ../.pool/ubuntu-16.10-desktop-amd64.iso
-rw-rw-r-- 1 1000 1000 61138 Oct 13 17:49 ubuntu-16.10-desktop-amd64.iso.torrent
lrwxrwxrwx 1 1000 1000 45 Oct 13 17:49 ubuntu-16.10-desktop-amd64.iso.zsync -> ../.pool/ubuntu-16.10-desktop-amd64.iso.zsync
lrwxrwxrwx 1 1000 1000 40 Oct 13 17:49 ubuntu-16.10-desktop-amd64.list -> ../.pool/ubuntu-16.10-desktop-amd64.list
lrwxrwxrwx 1 1000 1000 44 Oct 13 17:49 ubuntu-16.10-desktop-amd64.manifest -> ../.pool/ubuntu-16.10-desktop-amd64.manifest
-rw-rw-r-- 1 1000 1000 46840 Oct 13 17:53 ubuntu-16.10-desktop-amd64.metalink
lrwxrwxrwx 1 1000 1000 38 Oct 13 17:50 ubuntu-16.10-desktop-i386.iso -> ../.pool/ubuntu-16.10-desktop-i386.iso
-rw-rw-r-- 1 1000 1000 61777 Oct 13 17:50 ubuntu-16.10-desktop-i386.iso.torrent
lrwxrwxrwx 1 1000 1000 44 Oct 13 17:50 ubuntu-16.10-desktop-i386.iso.zsync -> ../.pool/ubuntu-16.10-desktop-i386.iso.zsync
lrwxrwxrwx 1 1000 1000 39 Oct 13 17:50 ubuntu-16.10-desktop-i386.list -> ../.pool/ubuntu-16.10-desktop-i386.list
lrwxrwxrwx 1 1000 1000 43 Oct 13 17:50 ubuntu-16.10-desktop-i386.manifest -> ../.pool/ubuntu-16.10-desktop-i386.manifest
-rw-rw-r-- 1 1000 1000 46499 Oct 13 17:53 ubuntu-16.10-desktop-i386.metalink
lrwxrwxrwx 1 1000 1000 38 Oct 13 22:53 ubuntu-16.10-server-amd64.img -> ../.pool/ubuntu-16.10-server-amd64.iso
lrwxrwxrwx 1 1000 1000 38 Oct 13 17:52 ubuntu-16.10-server-amd64.iso -> ../.pool/ubuntu-16.10-server-amd64.iso
-rw-rw-r-- 1 1000 1000 27056 Oct 13 17:52 ubuntu-16.10-server-amd64.iso.torrent
lrwxrwxrwx 1 1000 1000 44 Oct 13 17:52 ubuntu-16.10-server-amd64.iso.zsync -> ../.pool/ubuntu-16.10-server-amd64.iso.zsync
lrwxrwxrwx 1 1000 1000 40 Oct 13 17:52 ubuntu-16.10-server-amd64.jigdo -> ../.pool/ubuntu-16.10-server-amd64.jigdo
lrwxrwxrwx 1 1000 1000 39 Oct 13 17:52 ubuntu-16.10-server-amd64.list -> ../.pool/ubuntu-16.10-server-amd64.list
-rw-rw-r-- 1 1000 1000 46498 Oct 13 17:53 ubuntu-16.10-server-amd64.metalink
lrwxrwxrwx 1 1000 1000 43 Oct 13 17:52 ubuntu-16.10-server-amd64.template -> ../.pool/ubuntu-16.10-server-amd64.template
lrwxrwxrwx 1 1000 1000 37 Oct 13 22:54 ubuntu-16.10-server-i386.img -> ../.pool/ubuntu-16.10-server-i386.iso
lrwxrwxrwx 1 1000 1000 37 Oct 13 17:52 ubuntu-16.10-server-i386.iso -> ../.pool/ubuntu-16.10-server-i386.iso
-rw-rw-r-- 1 1000 1000 26655 Oct 13 17:52 ubuntu-16.10-server-i386.iso.torrent
lrwxrwxrwx 1 1000 1000 43 Oct 13 17:52 ubuntu-16.10-server-i386.iso.zsync -> ../.pool/ubuntu-16.10-server-i386.iso.zsync
lrwxrwxrwx 1 1000 1000 39 Oct 13 17:52 ubuntu-16.10-server-i386.jigdo -> ../.pool/ubuntu-16.10-server-i386.jigdo
lrwxrwxrwx 1 1000 1000 38 Oct 13 17:52 ubuntu-16.10-server-i386.list -> ../.pool/ubuntu-16.10-server-i386.list
-rw-rw-r-- 1 1000 1000 46157 Oct 13 17:53 ubuntu-16.10-server-i386.metalink
lrwxrwxrwx 1 1000 1000 42 Oct 13 17:52 ubuntu-16.10-server-i386.template -> ../.pool/ubuntu-16.10-server-i386.template
226 Directory send OK.



執行「get ubuntu-16.10-desktop-amd64.iso」


ftp> get ubuntu-16.10-desktop-amd64.iso
local: ubuntu-16.10-desktop-amd64.iso remote: ubuntu-16.10-desktop-amd64.iso
200 PORT command successful. Consider using PASV.
150 Opening BINARY mode data connection for ubuntu-16.10-desktop-amd64.iso (1593835520 bytes).




================================================================================


## ftp 下載 (使用指令ncftp)

指令是「ncftp」
套件是「ncftp


ncftp -h

Usage: ncftp [flags] [<host> | <directory URL to browse>]

Flags:
-u XX Use username XX instead of anonymous.
-p XX Use password XX with the username.
-P XX Use port number XX instead of the default FTP service port (21).
-j XX Use account XX with the username (rarely needed).
-F Dump a sample $HOME/.ncftp/firewall prefs file to stdout and exit.

Program version: NcFTP 3.2.5/474 Feb 02 2011, 05:13 PM
Library version: LibNcFTP 3.2.5 (January 17, 2011)
Build system: Linux lgw01-19 3.13.0-77-generic #121-Ubuntu SMP Wed Jan ...

This is a freeware program by Mike Gleason (http://www.NcFTP.com).
A directory URL ends in a slash, i.e. ftp://ftp.freebsd.org/pub/FreeBSD/
Use ncftpget and ncftpput for command-line FTP and file URLs.


或「man ncftp」觀看「manpage」。

執行


$ ncftp ftp.ubuntu-tw.org



顯示


NcFTP 3.2.5 (Feb 02, 2011) by Mike Gleason (http://www.NcFTP.com/contact/).
Connecting to 163.22.3.70...
Welcome to Ubuntu-TW FTP service.
Logging in...
Login successful.
Logged in to ftp.ubuntu-tw.org.
ncftp / >



註: 也可以直接執行「$ ncftp ftp://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/」。


閱讀「help」


ncftp / > help
Commands may be abbreviated. 'help showall' shows hidden and unsupported
commands. 'help <command>' gives a brief description of <command>.

ascii cat get lookup mkdir pwd set
bgget cd help lpage open quit show
bgput chmod jobs lpwd page quote site
bgstart close lcd lrename passive rename type
binary debug lchmod lrm pdir rhelp umask
bookmark dir lls lrmdir pls rm version
bookmarks edit lmkdir ls put rmdir

For details, please see the manual ("man ncftp" at your regular shell prompt
or online at http://www.NcFTP.com/ncftp/doc/ncftp.html).



閱讀「help cd」


ncftp / > help cd
cd: changes remote working directory.
Usage: cd <directory>

For details, please see the manual ("man ncftp" at your regular shell prompt
or online at http://www.NcFTP.com/ncftp/doc/ncftp.html).
ncftp / >




閱讀「help get」


ncftp / > help get
get: fetches files from the remote host.
Usage: get [-flags] file1 [file2...]
Flags:
-R : Recursive. Useful for fetching whole directories.
-z : Get the remote file file1, and name it to file2.
-a : Get files using ASCII mode.
-A : Append entire remote file to the local file.
-f : Force overwrite (do not try to auto-resume transfers).
Examples:
get README
get README.*
get "**Name with stars and spaces in it**"
get -R new-files-directory
get -z WIN.INI ~/junk/windows-init-file

For details, please see the manual ("man ncftp" at your regular shell prompt
or online at http://www.NcFTP.com/ncftp/doc/ncftp.html).



執行「cd /mirror/ubuntu-releases/16.10/」


ncftp / > cd /mirror/ubuntu-releases/16.10/
Directory successfully changed.



執行「ls」


ncftp .../ubuntu-releases/16.10 > ls
FOOTER.html ubuntu-16.10-desktop-amd64.list@ ubuntu-16.10-server-amd64.jigdo@
HEADER.html ubuntu-16.10-desktop-amd64.manifest@ ubuntu-16.10-server-amd64.list@
MD5SUMS ubuntu-16.10-desktop-amd64.metalink ubuntu-16.10-server-amd64.metalink
MD5SUMS.gpg ubuntu-16.10-desktop-i386.iso@ ubuntu-16.10-server-amd64.template@
MD5SUMS-metalink ubuntu-16.10-desktop-i386.iso.torrent ubuntu-16.10-server-i386.img@
MD5SUMS-metalink.gpg ubuntu-16.10-desktop-i386.iso.zsync@ ubuntu-16.10-server-i386.iso@
SHA1SUMS ubuntu-16.10-desktop-i386.list@ ubuntu-16.10-server-i386.iso.torrent
SHA1SUMS.gpg ubuntu-16.10-desktop-i386.manifest@ ubuntu-16.10-server-i386.iso.zsync@
SHA256SUMS ubuntu-16.10-desktop-i386.metalink ubuntu-16.10-server-i386.jigdo@
SHA256SUMS.gpg ubuntu-16.10-server-amd64.img@ ubuntu-16.10-server-i386.list@
ubuntu-16.10-desktop-amd64.iso@ ubuntu-16.10-server-amd64.iso@ ubuntu-16.10-server-i386.metalink
ubuntu-16.10-desktop-amd64.iso.torrent ubuntu-16.10-server-amd64.iso.torrent ubuntu-16.10-server-i386.template@
ubuntu-16.10-desktop-amd64.iso.zsync@ ubuntu-16.10-server-amd64.iso.zsync@



執行「get ubuntu-16.10-desktop-amd64.iso」



ncftp .../ubuntu-releases/16.10 > get ubuntu-16.10-desktop-amd64.iso
ubuntu-16.10-desktop-amd64.iso: 0.05/ 1.48 GB 2.20 MB/s



註: get 可以按下「Tab」鍵

也可以執行「get * -R」,請參閱「help get」


ncftp .../ubuntu-releases/16.10 > get * -R
.htaccess: 3.75 kB 96.94 kB/s
FOOTER.html: 27.00 B 459.29 B/s
HEADER.html: 2.85 kB 95.60 kB/s
MD5SUMS: 256.00 B 14.04 kB/s
MD5SUMS-metalink: 576.00 B 29.91 kB/s
MD5SUMS-metalink.gpg: 933.00 B 43.80 kB/s
MD5SUMS.gpg: 933.00 B 27.57 kB/s
SHA1SUMS: 288.00 B 13.68 kB/s
SHA1SUMS.gpg: 933.00 B 45.43 kB/s
SHA256SUMS: 384.00 B 13.27 kB/s
SHA256SUMS.gpg: 933.00 B 44.68 kB/s
...略...



上面一開始的連線也可以直接改成


$ ncftp ftp://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/



顯示


NcFTP 3.2.5 (Feb 02, 2011) by Mike Gleason (http://www.NcFTP.com/contact/).
Connecting to 163.22.3.70...
Welcome to Ubuntu-TW FTP service.
Logging in...
Login successful.
Logged in to ftp.ubuntu-tw.org.
Current remote directory is /mirror/ubuntu-releases/yakkety.
ncftp ...buntu-releases/yakkety >




================================================================================

## ftp 下載 (使用指令lftp)

指令是「lftp
套件是「lftp

基本用法,請參考上面的「ftp」和「ncftp」。
進階用法,請閱讀相關的「Manual」。

================================================================================


## ftp 下載 (使用 Midnight Commander)

指令是「mc
套件是「mc

執行


$ mc ftp://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/



就會登入了,左方是登入後的資料夾。

移動光棒到您要下載的檔案,按下「F5 (Copy)」,就會下載了。

應該有進階的用法,詳細請閱讀「$ man mc」找尋「ftp」。

另外也可以直接執行


$ mc



然後在上方有功能選單「Left」或「Right」,點下去,

會有一個「FTP Link...」,點下去,

就會出現一個對話框

輸入「ftp://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/」。

按下「ok」,一樣可以連線。


================================================================================


## ftp 下載 (使用 filezilla)

程式是「filezilla
套件是「filezilla

用法可以到「官網」找「Documentation」。

之前在這篇「回覆#11」,有提到一點點


================================================================================


## ftp 下載 (使用 nautilus 或 caja 的 Connect to Server)

使用「nautilus」「caja」的「Connect to Server」這個功能
套件分別是「nautilus」,「caja」。

在「Server Address」輸入「ftp://ftp.ubuntu-tw.org」

然後一樣選擇「Anonymous」登入


之前有相關的討論

* 請問Connect to Server的紀錄如何清除?
* 右鍵的open remote terminal要如何換帳號


================================================================================


## lynx

指令是「lynx
套件是「lynx

執行


$ lynx http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/



或是執行


$ lynx ftp://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/



移動游標到您要下載的檔案,按下「Enter」就會下載了。


或是直接執行下載指令,直接下載iso檔


$ lynx http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso



或是執行


$ lynx http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso




================================================================================


## w3m

指令是「w3m
套件是「w3m

操作步驟,請參考上面「lynx」的方式。


================================================================================


## links2

指令是「links2
套件是「links2

操作步驟,請參考上面「lynx」的方式。


================================================================================


## elinks

指令是「elinks
套件是「elinks

操作步驟,請參考上面「lynx」的方式。


================================================================================


## firefox

指令是「firefox
套件是「firefox

操作步驟,請參考上面「lynx」的方式。

一樣可以下指令,例如


$ firefox ftp://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso




================================================================================


## chromium

指令是「chromium-browser
套件是「chromium-browser

操作步驟,請參考上面「lynx」的方式。

一樣可以下指令,例如


$ chromium-browser ftp://ftp.ubuntu-tw.org/mirror/ubuntu-releases/16.10/ubuntu-16.10-desktop-amd64.iso




================================================================================


## 其他 ...

請參考

* 「Arch Wiki / List_of_applications
* 「Arch Wiki / List_of_applications / FTP clients
* 「Arch Wiki / List_of_applications / Web browsers

================================================================================

報告完畢


2016/11/27 15:18
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
會員二級
註冊日期:
2009/5/16 1:44
所屬群組:
已註冊使用者
等級: 7
HP : 0 / 163
MP : 24 / 6706
EXP: 53
離線
大概是因為16.10非LTS,所以管理員覺得無關緊要,就沒放上去了

當年Ubuntu 14.10也是過了幾個月後才放上去,當時我建議更新下載頁的文章還留著:Ubuntu正體中文站的下載頁未有Ubuntu 14.10

2016/11/27 21:10
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
會員三級
註冊日期:
2008/12/11 21:09
所屬群組:
已註冊使用者
等級: 10
HP : 0 / 236
MP : 43 / 9994
EXP: 44
離線
samwhelp 寫到:
雖然這需要由站方來回答,

若是急需要從這裡下載的話,

這個網站上面的連結「下載」,

在頁面的右方,有一段話「或是至此瀏覽所有版本及檔案」,

從那就可以找到「16.10」。


以上參考




* Ubuntu 問答集 / Ubuntu Release Cdimage
* Ubuntu 問答集 / Ubuntu Release Cdimage 16.04 (Xenial Xerus)


先謝謝您的回應,我在國外的網站是有看到下載點了,只是好奇為什麼這邊不提供而已,還是萬分感謝您的回應。

2016/11/28 23:30
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
會員三級
註冊日期:
2008/12/11 21:09
所屬群組:
已註冊使用者
等級: 10
HP : 0 / 236
MP : 43 / 9994
EXP: 44
離線
samwhelp 寫到:
# 簡介一些下載的方式

以下只是簡介有哪些軟體可以使用,深入的使用方式,請自行閱讀相關的Manual。
或是根據關鍵字,在網路找到更多的參考文章,來了解怎麼善用這些工具。


================================================================================


## wget

指令是「wget
套件是「wget


================================================================================

報告完畢



samwhelp大,太專業啦,我完全沒有辦法消化呀,萬分感謝您的時間和熱情呀~~(淚奔~~~)

2016/11/28 23:34
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
會員三級
註冊日期:
2008/12/11 21:09
所屬群組:
已註冊使用者
等級: 10
HP : 0 / 236
MP : 43 / 9994
EXP: 44
離線
m940504 寫到:
大概是因為16.10非LTS,所以管理員覺得無關緊要,就沒放上去了

當年Ubuntu 14.10也是過了幾個月後才放上去,當時我建議更新下載頁的文章還留著:Ubuntu正體中文站的下載頁未有Ubuntu 14.10


看來這個可能性很大,我還一直以為是不是16.10是不是有什麼不OK的地方,所以不放載點…
m940504大,謝謝您的回應。

2016/11/28 23:41
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
站長
註冊日期:
2005/6/10 9:50
來自 Taichung, Taiwan.
所屬群組:
網站管理員
已註冊使用者
等級: 19
HP : 0 / 452
MP : 140 / 23775
EXP: 9
離線
已經更新囉~
https://www.ubuntu-tw.org/modules/tinyd0/

(因為 16.10 只有支援 9 個月,有點擔心新手誤踩 XD)

2016/11/30 3:29
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
會員五級
註冊日期:
2012/4/22 10:50
所屬群組:
已註冊使用者
等級: 37
HP : 0 / 901
MP : 671 / 29303
EXP: 6
離線
後記(20161201): 以下提的,看到站方有修改了

==================================================

BlueT 寫到:
已經更新囉~
https://www.ubuntu-tw.org/modules/tinyd0/

(因為 16.10 只有支援 9 個月,有點擔心新手誤踩 XD)



回報:

下載」那個頁面,

1.

「償鮮」應該拼字有錯,是不是要改成「嚐鮮」。

2.

按下「開始下載」,在「Firefox」會出現一個確認對話框,提示訊息如下


Security Warning

The information you have entered on this page will be sent over an insecure connection and could be read by a third party.

Are you sure you want to send this information?



只要將


<form id="dlform" action="http://www.ubuntu-tw.org/download/download.php" method="get">



改成


<form id="dlform" action="//www.ubuntu-tw.org/download/download.php" method="get">



那個確認對話框,就不會出現了

主要是「action」那,

原本是「http://www.ubuntu-tw.org/download/download.php
若是在「https」的網頁,按下「submit」按鈕送出,就會出現那個確認對話框。

若是改成「//www.ubuntu-tw.org/download/download.php」,
這樣就會依據您原本的網頁是「http」還是「https」附加在前面,
按下「submit」按鈕送出,就不會出現那個確認對話框了。


或是「action」直接改成「https://www.ubuntu-tw.org/download/download.php
不管原本的頁面是「http」或是「https」或是「file」,
通通「submit」到「https」,這樣也不會出現那個確認對話框。

註:「//www.ubuntu-tw.org/download/download.php」就不適用原本頁面是「file://」的情況。

剛好最近在做「這個」,有遇到相同的情況。

以上提供參考

報告完畢


2016/11/30 7:21
應用擴展 工具箱
回覆: 為什麼站上沒有16.10可以下載呢?
站長
註冊日期:
2005/6/10 9:50
來自 Taichung, Taiwan.
所屬群組:
網站管理員
已註冊使用者
等級: 19
HP : 0 / 452
MP : 140 / 23775
EXP: 9
離線
忘記回應,
日前也參考建議修改了,還請再幫忙確認下。
感謝!

2016/12/5 4:52
應用擴展 工具箱

(1) 2 »

 [無發表權] 請登錄或者註冊


可以查看帖子.
不可發帖.
不可回覆.
不可編輯自己的帖子.
不可刪除自己的帖子.
不可發起投票調查.
不可在投票調查中投票.
不可上傳附件.
不可不經審核直接發帖.