试用完a2,就卸载了。
Tofloor
poster avatar
ghostry
deepin
2015-11-30 02:47
Author
最早来deepin,是为了解决ubuntu的qq国际版不好用的问题。
来了发现经常假死,偶尔崩溃。被告知等15版。

终于等到了。发现要解决的问题更多了。。。
ppa源没了。想要软件,不好意思,没有。去找吧,找不到自己编译。
这时候我才发现原来我是ppa重度用户。如果都自己编译,实在力不从心。
不稳定或许有解决的时候。没有ppa这个问题,估计无解,debian那么多年也还是没有。
网上也有说自己加的方法。不过看使用体验都说问题挺多的。
最早官方说转debian的时候,我竟然没有想到。还以为跟我没什么关系呢。结果关系大了。

又回到ubuntu,失去了conky真透明和好用的qq。找回了ppa,intel显卡opengl支持。
或许还可以选择回到deepin14.不过14版本的稳定性又头疼。而且以后也没得更新了。
不更新的系统,
感觉不太好。总觉得在用一个死掉的系统。

选择系统,很多时候并不是看系统本身。而是看他上面的软件,和你的使用习惯。

写这帖子。不是为了宣告什么,而是觉得是一种回忆。
也许多年后回来看到这个帖子。会想起来和deepin在一起的美好时光。


Reply Favorite View the author
All Replies
136******54
deepin
2015-11-30 17:00
#1
我的台式机一直用2014.3作为主力系统,很稳定
Reply View the author
淡墨青衫
deepin
2015-11-30 17:28
#2
我感觉不如2014.3稳定!
Reply View the author
rexlevin
deepin
2015-11-30 17:32
#3
卸了就对了呗,人家都说是alpha2,又不是release,你们着急上火个啥呀。
Reply View the author
dailidu
deepin
2015-11-30 18:14
#4
目前是 alpha2, 所以還需要些時間, 感謝對 Deepin 的支持呀 ;)
Reply View the author
176******07
deepin
2015-11-30 18:42
#5
安装在vmware虚拟机里,结果装了vmware tools后,tool启动会core掉,只好换parallel desktop,还不错,parallel tools装上没问题,暂时没发现问题
Reply View the author
188******76
deepin
2015-11-30 22:11
#6
如果你需要使用ppa里面的软件可以列出来deepin会收录的。
Reply View the author
cxbii
deepin
2015-12-01 21:50
#7
把你需要的PPA软件说下吧,我们会收录
Reply View the author
moonlin
deepin
2015-12-02 02:14
#8
https://bbs.deepin.org/post/33574
把你需要的PPA软件说下吧,我们会收录

我在使用时注意到没有IDEA,请添加,eclipse真心用不惯
Reply View the author
ghostry
deepin
2015-12-02 04:18
#9
https://bbs.deepin.org/post/33574
把你需要的PPA软件说下吧,我们会收录

下面是我的软件自动化安装脚本。
  1. #!/bin/bash
  2. AptPath=/etc/apt/sources.list.d
  3. addkey(){
  4.         if [ ! -e $AptPath/$1*$2*.list ];then
  5.                 echo "正在添加ppa源$1/$2"
  6.                 add-apt-repository -y ppa:$1/$2
  7.                 update='update'
  8.                 echo "源$1/$2添加完成"
  9.         else
  10.                 echo "源$1/$2已存在"
  11.         fi
  12. }
  13. instal(){
  14.         while [ $# -gt 0 ]
  15.         do
  16.                 if [ ! "`dpkg -l|grep $1|awk '{print $2}'`" == "$1" ];then
  17.                         echo "正在安装$1"
  18.                         apt-get install $1 -y
  19.                         echo "$1安装完成"
  20.                 else
  21.                         echo "$1已安装"
  22.                 fi
  23.                 shift
  24.         done
  25. }
  26. #麒麟ubuntu自带的天气和农历
  27. addkey ubuntukylin-members ubuntukylin
  28. #apt-get install indicator-china-weather
  29. #apt-get install chinese-calendar

  30. #pps,gbox等
  31. #addkey cnav ppa

  32. #绚丽的天气
  33. addkey atareao atareao
  34. #apt-get install my-weather-indicator
  35. #touchpad-indicator

  36. #ubuntu-tweak
  37. addkey tualatrix ppa
  38. #apt-get install ubuntu-tweak

  39. #ppa管理
  40. addkey webupd8team y-ppa-manager

  41. #------------FF Multi Converter------------------------------------------
  42. #FF Multi Converter 支持丰富的音视频、文档、图片格式间的转换,是当前格式转换方面的“瑞士军刀”。
  43. #addkey ffmulticonverter stable
  44. #apt-get install ffmulticonverter

  45. #pidgin-lwqq(ppa)
  46. #addkey lainme pidgin-lwqq
  47. #apt-get install pidgin-lwqq pidgin

  48. #diodon剪贴板管理
  49. addkey diodon-team stable
  50. #指示器
  51. #addkey fossfreedom indicator-sysmonitor

  52. #一个图片处理的库里边有好多图像处理软件比如,gimp-beautify一键美化
  53. addkey dhor myway

  54. #getdeb
  55. echo "deb http://archive.getdeb.net/ubuntu wily-getdeb apps" > /etc/apt/sources.list.d/getdeb.list
  56. wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -

  57. #快盘,搜狗拼音
  58. echo "deb http://archive.ubuntukylin.com:10006/ubuntukylin trusty main" > /etc/apt/sources.list.d/kuaipan.list

  59. #google chrome
  60. echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list



  61. #如果添加了新的源则更新
  62. if [ -n "$update" ];then
  63.         apt-get update
  64. fi


  65. #安装

  66. #gimp-beautify一键美化
  67. instal gimp-beautify

  68. #天气插件
  69. #instal my-weather-indicator
  70. instal indicator-china-weather

  71. #instal psensor

  72. #qq
  73. #instal pidgin pidgin-lwqq

  74. #工具
  75. #instal ubuntu-tweak

  76. #diodon
  77. instal diodon

  78. #文件名修复
  79. instal nautilus-filename-repairer

  80. #图片转换
  81. instal nautilus-image-converter

  82. #音频转换
  83. instal nautilus-script-audio-convert

  84. #在终端打开
  85. #instal nautilus-open-terminal

  86. #aria2
  87. #instal aria2

  88. #ftp客户端
  89. instal filezilla

  90. #jre
  91. instal default-jre

  92. #安装wps依赖
  93. #instal libc6:i386 libstdc++6:i386 libfreetype6:i386 libglu1-mesa:i386 libcups2:i386 libglib2.0-0:i386 libpng12-0:i386   libsm6:i386   libxrender1:i386   libfontconfig1:i386

  94. #fcitx
  95. #instal fcitx-sunpinyin fcitx

  96. #virtualbox
  97. #instal virtualbox-qt

  98. #计划任务
  99. #instal gnome-schedule

  100. #触摸板管理器
  101. instal touchpad-indicator

  102. #instal indicator-sysmonitor

  103. #小键盘开关
  104. instal numlockx

  105. #conky
  106. instal hddtemp vnstat conky-manager
  107. chmod u+s /usr/sbin/hddtemp
  108. service vnstat start
  109. instal fonts-wqy-zenhei

  110. #xxnet依赖
  111. instal libnss3-tools

  112. #虚拟机
  113. instal libvirt-bin virt-manager
  114. adduser momo libvirtd

  115. #编译环境
  116. instal git gcc g++ binutils patch bzip2 flex bison make autoconf gettext texinfo unzip sharutils subversion libncurses5-dev ncurses-term zlib1g-dev libsdl1.2-dev libssl-dev

  117. #ppa管理器
  118. instal y-ppa-manager

  119. #彩色终端
  120. instal fcitx-frontend-fbterm
  121. adduser momo video
  122. #setcap 'cap_sys_tty_config+ep' /usr/bin/fbterm
  123. chmod u+s /usr/bin/fbterm
  124. instal gpm
  125. service gpm start

  126. #jpg压缩
  127. instal jpegoptim

  128. #快盘
  129. instal kuaipan4uk

  130. #google chrome
  131. instal google-chrome-stable


Copy the Code
Reply View the author
Haohaojun_DP
deepin
2015-12-02 07:28
#10
现在不支持自己添加ppa了?不会吧,有些软件告诉了也没用,官方仓库是不敢收录的,唉!
Reply View the author
fredy4212
deepin
2015-12-02 08:33
#11
好像裝了什麼包就能夠裝ppa了我記得
深度一直都不太支持使用ppa的,對系統穩定性影響還是很大的
Reply View the author
Wintersweet
deepin
2015-12-02 09:46
#12
我不是高端用户,目前感觉胜过14版很多倍。能够满足需要
Reply View the author
cxbii
deepin
2015-12-02 17:43
#13
麒麟ubuntu自带的天气和农历 :不收录,存在不兼容风险
my-weather-indicator:不收录,存在不兼容风险
ubuntu-tweak:不收录,不兼容
pidgin-lwqq(ppa):不收录,项目已经失去维护(目前应该也用不了了)
y-ppa-manager:debian没有PPA
FF Multi Converter:确认会收录
touchpad-indicator:不收录,存在不兼容风险
indicator-sysmonitor:不收录,存在不兼容风险
diodon剪贴板管理:不收录,存在不兼容风险
indicator-sysmonitor指示器:不收录,存在不兼容风险
gimp-beautify:这个是Gimp自带的吧?仓库有Gimp
getdeb:这个只是单纯加源?
快盘,搜狗拼音:仓库有
google chrome:仓库有
nautilus-filename-repairer:仓库有
nautilus-image-converter:仓库有
nautilus-script-audio-convert:仓库有
nautilus-open-terminal:仓库有/自带
aria2:仓库有
filezilla:仓库有
default-jre:仓库有
安装wps依赖:无需处理
fcitx:仓库有
virtualbox:仓库有
gnome-schedule:仓库有
numlockx:仓库有
conky:仓库有
libnss3-tools:仓库有
virt-manager:仓库有
编译环境:仓库有
fcitx-frontend-fbterm:仓库有
jpegoptim:仓库有

建议清理下你的脚本,部分程序重复,而且有地方写错了
Reply View the author
ghostry
deepin
2015-12-03 02:16
#14
https://bbs.deepin.org/post/33574
建议清理下你的脚本,部分程序重复,而且有地方写错了

谢谢你这么认真的回复。包括我脚本里已经注释的软件你也说了是否收录。

gimp-beautify并不是自带的。
getdeb我脚本有写导入key。这个源里包含virt-manager的更新版本,以及其他的一些软件,更新比官方快一些,可以理解为ppa合集。
Reply View the author
cxbii
deepin
2015-12-03 18:22
#15
https://bbs.deepin.org/post/33574
谢谢你这么认真的回复。包括我脚本里已经注释的软件你也说了是否收录。

gimp-beautify并不是自带的。

好的,我去查查gimp-beautify
Reply View the author