2022년 5월 5일 목요일

Xubuntu: Installing a Printer (Canon G3060 PIXMA)

$ sudo apt install system-config-printer

Download the proper driver for linux from Canon website.

Turn on the printer and set up its WiFi.

Connect the PC to the same network (the same WiFi router)

Run 'Settings' - 'Printers' - 'Add' - 'Network Printers'

Select 'Canon G3060' and install the driver.

How to back up / save your xfce4 themes and settings

cp -r ~/.config/xfce4 BACKUP_PATH


To back up other applications' settings including xfce4

cp -r ~/.config/ BACKUP_PATH

2022년 3월 18일 금요일

Ubuntu - Gnome - How to Save/Backup Gnome Settings/Preferences

https://askubuntu.com/questions/1056386/how-do-i-backup-all-gnome-tweaks-configuration

 

 From the terminal, execute the following to save your gnome settings:

  1. cd ~
    dconf dump / > saved_settings.dconf
    

    Keep the saved_settings.dconf file in a safe place so you can use it after you upgrade.

  2. From the terminal, execute the following to restore your gnome settings:

    cd ~
    dconf load / < saved_settings.dconf
    

(I suggest doing a test to make sure this works for you: Save the settings as shown above in step 1. Then make a few test changes using Gnome Tweaks. Finally restore the settings, as shown above in step 2. If everything restores to the way you had it before, you can use the saved file to restore settings after you upgrade.)

Note: There may be some settings that have changed between Ubuntu versions, and you will need to fix those manually. However, per vanadium's comment below, most settings will transfer over just fine.

edited Jul 16, 2018 at 3:01
answered Jul 15, 2018 at 19:45
Enterprise 10.5k10 gold badges49 silver badges

Xubuntu: Installing a Printer (Canon G3060 PIXMA)

$ sudo apt install system-config-printer Download the proper driver for linux from Canon website. Turn on the printer and set up its WiFi. C...