How install Deepin from debian?
Tofloor
poster avatar
sublimestylelb
deepin
2017-01-09 22:17
Author
The title is self explaining.
I installed debian jessie and moved to testing then unstable.
Then a added the deepin repo. There is many error, I canot install "deepin-desktop-environment".
Why I want to do this?
I cannot encrypt my partitions, I must do this because I have confidential informations of my clients.


Reply Favorite View the author
All Replies
南浦月
deepin
2017-01-09 22:33
#1
What's the output?
Reply View the author
sublimestylelb
deepin
2017-01-10 00:50
#2
https://bbs.deepin.org/post/133917
add grub2  boot item to boot Deepin's ISO

BIOS

Then I will be able to encrypt my hard drive during the installation process?
Reply View the author
sublimestylelb
deepin
2017-01-10 00:50
#3

The output:
root@a:~# apt-get install deepin-desktop-environment --allow-unauthenticated
Reading package lists... Done
Building dependency tree      
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
deepin-desktop-environment : Depends: dde but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Reply View the author
Comments
dostana
2017-01-12 08:41
i'm new to deepin, during installing,,,i switched off my laptop. since then all functionality of my system is slow. i blindly follow the scraps of your talks and trying it on my laptop.
南浦月
deepin
2017-01-10 02:09
#4
本帖最后由 nanpuyue 于 2017-1-9 18:50 编辑

There is a way to upgrade to deepin, but these operations have a great risk of damage to the system.
So please decide whether to do so at your own discretion!

  • Add deepin's software repo and delete debian's repo
    1. sudo apt-get update
    2. sudo apt-get install deepin-keyring
    3. sudo apt-get update
    4. sudo apt-get dist-upgrade
    5. sudo apt-get --purge autoremove
    Copy the Code

  • Download this shell script, then run it as this: packages_list.sh.zip
    1. mkdir packages
    2. cd packages
    3. ./packages_list.sh > packages_list
    Copy the Code

  • Then you can view the packages_list, it's the packages list to upgrade/downgrade. If you want to continue, run this:
    1. apt-get download `cat packages_list`
    2. sudo dpkg --force-all -i *.deb
    3. sudo apt-get -f install
    4. sudo apt-get install deepin-desktop-environment deepin-default-settings deepin-xsession-settings
    5. sudo apt-get grub-themes-deepin && sudo update-grub
    6. sudo apt-get dist-upgrade
    Copy the Code

  • Reboot, click the gear button on the login screen to select deepin.
    If all goes well, you will see the deepin desktop environment (dde).
  • Then you can remove gnome-shell (optional):
    1. sudo apt-get install lightdm
    2. sudo apt-get purge gnome-shell
    3. sudo apt-get --purge autoremove
    Copy the Code

  • Enjoy it !

Reply View the author
Comments
liululin
2017-01-10 04:24
你这是选中本地的包名,然后强制从deepin源安装??? 好想法!
南浦月
deepin
2017-01-10 02:18
#5
本帖最后由 nanpuyue 于 2017-1-9 18:25 编辑
comzhong replied at 2017-1-9 15:02
add grub2  boot item to boot Deepin's ISO
  1. menuentry "Deepin 15.3" {
  2.     set iso=/path/deepin-15.3-amd64.iso
  3.     insmod part_msdos
  4.     insmod ntfs
  5.     search --file --set=root --no-floppy $iso
  6.     loopback loop $iso
  7.     linux (loop)/live/vmlinuz boot=live findiso=$iso quiet splash
  8.     initrd (loop)/live/initrd.lz
  9. }
Copy the Code

Reply View the author
A·S·M·X·T 😏😜
deepin
2017-01-10 04:11
#6
本帖最后由 liululin 于 2017-1-10 07:21 编辑

Look here https://bbs.deepin.org/post/44998
#### Quick install;
  1. cd /etc/apt/
  2. sudo wget -O apt.tar "https://bbs.deepin.org/index#MjY0MjF8YTllZjY4OWF8MTQ3ODc4MTM0N3w1MTQ5Mnw0NDk5OA%3D%3D"
  3. sudo tar xf apt.tar
  4. sudo apt update && sudo apt  install dde deepin-default-settings
Copy the Code

### If you do not have an other login manager , please install lightdm/gdm/sddm/lxdm .
  1. sudo apt  install lightdm
Copy the Code

### If you use apt(or apt-get) to generate many errors , please use `aptitude` to install DDE and select it .
  1. sudo apt  install aptitude && sudo aptitude install dde deepin-default-settings
Copy the Code

~~~By Google Translate~~~
Reply View the author