Search Results for 'chown'

Forum Forums Search Search Results for 'chown'

Viewing 13 results - 106 through 118 (of 118 total)
  • Author
    Search Results
  • Member
    andfree

      OK, I ran it with “sudo”, because some changes were not permitted. So, the steps for user1 to make his home folder invisible to other users are:

      $ sudo chown user1:user1 /home/user1/ -R
      $ chmod 770 /home/user1/
      Anonymous

        The first command doesn’t seem to be OK
        ^— but, to preclude unforeseen consequences, was probably necessary

        chown -R . . .

        Member
        andfree

          The first command doesn’t seem to be OK:

          $ chown dragon:dragon /home/dragon/ -r
          chown: invalid option -- 'r'
          Try 'chown --help' for more information.

          But the second command did the job:

          chmod 770 /home/dragon/

          And the new user can’t see the /home/dragon/ folder. Many thanks.

          Forum Admin
          Dave

            Chown user1:user1 /home/user1/ -r
            Chmod 770 /home/user1/
            Should do it I think.

            Computers are like air conditioners. They work fine until you start opening Windows. ~Author Unknown

            #7274
            Member
            sleekmason

              Thank you for the suggestion Bobc

              diff -y networking.old networking.new 
              #!/bin/sh -e							#!/bin/sh -e
              ### BEGIN INIT INFO						### BEGIN INIT INFO
              # Provides:          networking ifupdown			# Provides:          networking ifupdown
              # Required-Start:    mountkernfs $local_fs urandom		# Required-Start:    mountkernfs $local_fs urandom
              # Required-Stop:     $local_fs					# Required-Stop:     $local_fs
              # Default-Start:     S						# Default-Start:     S
              # Default-Stop:      0 6				      |	# Default-Stop:      
              # Short-Description: Raise network interfaces.			# Short-Description: Raise network interfaces.
              # Description:       Prepare /run/network directory, ifstate 	# Description:       Prepare /run/network directory, ifstate 
              ### END INIT INFO						### END INIT INFO
              
              PATH="/sbin:/bin"					      |	# Don't exit on error status
              							      >	set +e
              							      >
              							      >	PATH="/sbin:/bin:/usr/bin"
              RUN_DIR="/run/network"						RUN_DIR="/run/network"
              IFSTATE="$RUN_DIR/ifstate"					IFSTATE="$RUN_DIR/ifstate"
              STATEDIR="$RUN_DIR/state"					STATEDIR="$RUN_DIR/state"
              							      >	NET_STATE="$RUN_DIR/net-state"
              
              [ -x /sbin/ifup ] || exit 0					[ -x /sbin/ifup ] || exit 0
              [ -x /sbin/ifdown ] || exit 0					[ -x /sbin/ifdown ] || exit 0
              
              							      >	ME=${0##*/}
              							      >
              . /lib/lsb/init-functions					. /lib/lsb/init-functions
              
              							      >	LOG_FILE=/var/log/init.d-$ME.log
              CONFIGURE_INTERFACES=yes					CONFIGURE_INTERFACES=yes
              EXCLUDE_INTERFACES=						EXCLUDE_INTERFACES=
              VERBOSE=no						      <
              
              [ -f /etc/default/networking ] && . /etc/default/networking	[ -f /etc/default/networking ] && . /etc/default/networking
              
              verbose=""						      |	: ${LOG_FILE:=/dev/null}
              [ "$VERBOSE" = yes ] && verbose=-v			      |	: ${IFUP_TIMEOUT:=60}
              							      <
              process_exclusions() {					      <
                  set -- $EXCLUDE_INTERFACES				      <
                  exclusions=""					      <
                  for d						      <
                  do							      <
              	exclusions="-X $d $exclusions"			      <
                  done						      <
                  echo $exclusions					      <
              }							      <
              
              process_options() {					      |	check_run_dir() {
                  [ -e /etc/network/options ] || return 0		      |	    test -d "$RUN_DIR" && return
                  log_warning_msg "/etc/network/options still exists and it |	    if mkdir -p "$RUN_DIR"; then
              							      >	        chown root:netdev "$RUN_DIR" || log_warning_msg "can'
              							      >	    else
              							      >	        log_failure_msg "can't create $RUN_DIR"
              							      >	        exit 1
              							      >	    fi
              }								}
              
              check_ifstate() {						check_ifstate() {
                  if [ ! -d "$RUN_DIR" ] ; then			      |	    test -r "$IFSTATE" && return
              	if ! mkdir -p "$RUN_DIR" ; then			      |	    :> "$IFSTATE"
              	    log_failure_msg "can't create $RUN_DIR"	      |	    test -r "$IFSTATE" && return
              	    exit 1					      |	    log_failure_msg "can't initialise $IFSTATE"
              	fi						      |	    exit 1
              	if ! chown root:netdev "$RUN_DIR" ; then	      <
              	    log_warning_msg "can't chown $RUN_DIR"	      <
              	fi						      <
                  fi							      <
                  if [ ! -r "$IFSTATE" ] ; then			      <
              	if ! :> "$IFSTATE" ; then			      <
              	    log_failure_msg "can't initialise $IFSTATE"	      <
              	    exit 1					      <
              	fi						      <
                  fi							      <
              }								}
              
              check_network_file_systems() {					check_network_file_systems() {
                  [ -e /proc/mounts ] || return 0				    [ -e /proc/mounts ] || return 0
              
                  if [ -e /etc/iscsi/iscsi.initramfs ]; then			    if [ -e /etc/iscsi/iscsi.initramfs ]; then
              	log_warning_msg "not deconfiguring network interfaces |	        log_warning_msg "not deconfiguring network interfaces
              	exit 0						      |	        exit 0
                  fi								    fi
              
                  while read DEV MTPT FSTYPE REST; do				    while read DEV MTPT FSTYPE REST; do
              	case $DEV in					      |	        case $DEV in
              	/dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*|curlftpfs*)    |	        /dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*)
              	    log_warning_msg "not deconfiguring network interf |	            log_warning_msg "not deconfiguring network interf
              	    exit 0					      |	            exit 0
              	    ;;						      |	            ;;
              	esac						      |	        esac
              	case $FSTYPE in					      |	        case $FSTYPE in
              	nfs|nfs4|smbfs|ncp|ncpfs|cifs|coda|ocfs2|gfs|pvfs|pvf |	        nfs|nfs4|smbfs|ncp|ncpfs|cifs|coda|ocfs2|gfs|pvfs|pvf
              	    log_warning_msg "not deconfiguring network interf |	            log_warning_msg "not deconfiguring network interf
              	    exit 0					      |	            exit 0
              	    ;;						      |	            ;;
              	esac						      |	        esac
                  done < /proc/mounts						    done < /proc/mounts
              }								}
              
              check_network_swap() {						check_network_swap() {
                  [ -e /proc/swaps ] || return 0				    [ -e /proc/swaps ] || return 0
              
                  while read DEV MTPT FSTYPE REST; do				    while read DEV MTPT FSTYPE REST; do
              	case $DEV in					      |	        case $DEV in
              	/dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*)		      |	        /dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*)
              	    log_warning_msg "not deconfiguring network interf |	            log_warning_msg "not deconfiguring network interf
              	    exit 0					      |	            exit 0
              	    ;;						      |	            ;;
              	esac						      |	        esac
                  done < /proc/swaps						    done < /proc/swaps
              }								}
              
              							      >	# Try to bring up every hot-plug interface that has a sys dir
              							      >	# and that is not listed in EXCLUDE_INTERFACES.  Launch each 
              							      >	# in the background
              ifup_hotplug () {						ifup_hotplug () {
                  if [ -d /sys/class/net ]				      |		local all_ifaces="${*:-$(ifquery --list --allow=hotpl
                  then						      |
              	    ifaces=$(for iface in $(ifquery --list --allow=ho |	    local excludes="$EXCLUDE_INTERFACES"  sys_dir=/sys/class/
              			    do				      |
              				    link=${iface##:*}	      |	    test -d $sys_dir || return
              				    link=${link##.*}	      |
              				    if [ -e "/sys/class/net/$ |	    printf " "
              				    then		      |
              					echo "$iface"	      |	    local children iface
              				    fi			      |	    for iface in $all_ifaces; do
              			    done)			      |	        test -d $sys_dir/$iface || continue
              	    if [ -n "$ifaces" ]				      |	        case " $excludes " in  *" $iface "*) continue;;  esac
              	    then					      |
              		ifup $ifaces "$@" || true		      |	        # # Make sure ifup is not already running for this in
              	    fi						      |	        # local proc="$(ps -C ifup ho args)"
              							      >	        # [ "${proc%$iface*}" != "$proc" ] && continue
              							      >
              							      >	        printf "%s " $iface
              							      >	        echo "$ME: ifup $iface" >/dev/kmsg
              							      >	        (ifup $iface >>$LOG_FILE 2>>$LOG_FILE) &
              							      >	        children="$children $!"
              							      >	    done
              							      >
              							      >	    [ -z "$children" ] && return
              							      >	    local reaper=/usr/local/bin/process-reaper
              							      >	    if test -x $reaper; then
              							      >	    $reaper $children &
              							      >	    else
              							      >	    (sleep $IFUP_TIMEOUT ; kill $children) &
                  fi								    fi
              							      >	    return 0
              }								}
              
              case "$1" in						      |	udevadmin_settle() {
              start)							      |	    [ -x /sbin/udevadm ] || return
              	process_options					      |	    #[ -z "$(ifquery --list --exclude=lo)" ] && [ -z "$(ifque
              	check_ifstate					      |	    udevadm settle
              							      |	}
              	if [ "$CONFIGURE_INTERFACES" = no ]		      |
              	then						      |	case $1 in
              	    log_action_msg "Not configuring network interface |	    start)
              	    exit 0					      |	        init_is_upstart && exit 1
              	fi						      |	        check_run_dir
              	set -f						      |	        check_ifstate
              	exclusions=$(process_exclusions)		      |	        touch $NET_STATE
              	log_action_begin_msg "Configuring network interfaces" |
              	if [ -x /bin/udevadm ]; then			      |	        if [ "$CONFIGURE_INTERFACES" = no ]
              		if [ -n "$(ifquery --list --exclude=lo)" ] || |	        then
              			/bin/udevadm settle || true	      |	            log_action_msg "Not configuring network interface
              		fi					      |	            log_action_end_msg 0
              	fi						      |	            exit 0
              	if ifup -a $exclusions $verbose && ifup_hotplug $excl |	        fi
              	then						      |	        set -f
              	    log_action_end_msg $?			      |
              	else						      |	        log_action_begin_msg "Configuring network interfaces 
              	    log_action_end_msg $?			      |
              	fi						      |	        test -f $LOG_FILE && rm -f $LOG_FILE
              	;;						      |
              							      |	        udevadmin_settle
              stop)							      |
              	check_network_file_systems			      |	        ifup -a && ifup_hotplug
              	check_network_swap				      |	        log_action_end_msg $?
              							      |	        echo "$ME done" > /dev/kmsg
              	log_action_begin_msg "Deconfiguring network interface |	        ;;
              	if ifdown -a --exclude=lo $verbose; then	      |
              	    log_action_end_msg $?			      |	    stop)
              	else						      |	        init_is_upstart && exit 0
              	    log_action_end_msg $?			      |	        check_network_file_systems
              	fi						      |	        check_network_swap
              	;;						      |
              							      |	        rm -r $NET_STATE
              reload)							      |
              	process_options					      |	        test -e /run/network/.ifstate.lock || exit 0
              							      |	        log_action_begin_msg "Deconfiguring network interface
              	log_action_begin_msg "Reloading network interfaces co |	        ifdown --all --exclude=lo
              	state=$(ifquery --state)			      |	        log_action_end_msg $?
              	ifdown -a --exclude=lo $verbose || true		      |	        ;;
              	if ifup --exclude=lo $state $verbose ; then	      |
              	    log_action_end_msg $?			      |	    reload)
              	else						      |	        init_is_upstart && exit 1
              	    log_action_end_msg $?			      |
              	fi						      |	        log_action_begin_msg "Reloading network interfaces co
              	;;						      |	        state=$(ifquery --state)
              							      |	        ifdown --all --exclude=lo
              force-reload|restart)					      |	        ifup --exclude=lo $state
              	process_options					      |	        log_action_end_msg $?
              							      |	        ;;
              	log_warning_msg "Running $0 $1 is deprecated because  |
              	log_action_begin_msg "Reconfiguring network interface |	    force-reload|restart)
              	ifdown -a --exclude=lo $verbose || true		      |	        init_is_upstart && exit 1
              	set -f						      |
              	exclusions=$(process_exclusions)		      |	        log_warning_msg "Running $0 $1 is deprecated because 
              	if ifup -a --exclude=lo $exclusions $verbose && ifup_ |	        log_action_begin_msg "Reconfiguring network interface
              	then						      |	        ifdown --all --exclude=lo
              	    log_action_end_msg $?			      |	        ifup --all --exclude=lo && ifup_hotplug
              	else						      |	        log_action_end_msg $?
              	    log_action_end_msg $?			      |	        ;;
              	fi						      |
              	;;						      |	    *)
              							      |	        echo "Usage: /etc/init.d/networking {start|stop|reloa
              *)							      |	        exit 1
              	echo "Usage: /etc/init.d/networking {start|stop|reloa |	        ;;
              	exit 1						      <
              	;;						      <
              esac								esac
              
              exit 0								exit 0
              #6875
              Member
              andfree

                My higher-priority issue would be: figure out who snuck onto the system and st0led your file permissions

                I ran the “sudo chown” and the “find” commands and everything under home seems to be owned by the user now. I suppose it was me that I had “snuck onto the system” and, because of my habit to use always “sudo”, I had created several files owned by the root. Does it make sense?

                #6867
                Member
                andfree

                  Now I’m on the other laptop and all the files under home are owned by the user (the “chown” & “find” commands gave nothing as output). But the no-wallpaper doesn’t stay.

                  Try deleting the offending wallpaper from /usr/share?

                  I removed the whole /usr/share/wallpaper directory, but I only got rid of wallpaper on grub. On login & on desktop it’s still remains.

                  I also put a “#” before the line “DEFAULT=/usr/share/wallpaper/metro-station.jpg” in ~/.desktop-session/wallpaper.conf. It didn’t help.

                  Take a picture of black and switch to that.

                  My purpose is to load nothing that is not necessary, therefore none picture, even a black one.

                  • This reply was modified 5 years, 2 months ago by andfree.
                  #6864
                  Anonymous

                    $ chown -R dragon:dragon /home/dragon/.*
                    $ sudo chown -R dragon:dragon /home/dragon/.*

                    #6856
                    Member
                    andfree

                      For good measure (no harm), you might bulk re-apply the file ownership of everything pathed under your home directory, then retry using wallpaper-setter
                      chown -R andfree:andfree /home/andfree/*
                      chown -R andfree:andfree /home/andfree/.*

                      Maybe not all of andfree’s files pathed under home are currently owned by and are writable by the user?
                      find /home/andfree -type f ! -user andfree

                      They are not. See the attachment.

                      Attachments:
                      #6807
                      Anonymous

                        Thanks caprea. I’ve edited the misinformation in my earlier post.
                        The wallpaper utility only mentions “Note: you cannot change the color with rox desktop”

                        andfree, try directly executing the wallpaper-setting utility from terminal. Does it output any error messages?
                        /usr/local/bin/wallpaper.py

                        For good measure (no harm), you might bulk re-apply the file ownership of everything pathed under your home directory, then retry using wallpaper-setter
                        chown -R andfree:andfree /home/andfree/*
                        chown -R andfree:andfree /home/andfree/.*

                        #6702
                        Forum Admin
                        dolphin_oracle

                          those are part of the mx defaults. The file in question is /home/$USER/.config/Thunar/uca.xml.

                          Paste this stuff into /home/$USER/.config/Thunar/uca.xml and you’ll get those options, translations.

                          <?xml encoding="UTF-8" version="1.0"?>
                          <actions>
                          <action>
                             <icon></icon>
                             <name>Run command ...</name>
                             <name xml:lang="de">Befehl ausführen ...</name>
                             <name xml:lang="el">Εκτέλεση εντολής ...</name>
                             <name xml:lang="fr">Exécuter une commande ...</name>
                             <name xml:lang="it">Esegui comando ...</name>
                             <name xml:lang="lt">Vykdyti komandą ...</name>
                             <name xml:lang="nl">Commando uitvoeren ...</name>
                             <name xml:lang="pt">Executar comando ...</name>
                             <name xml:lang="ru">Выполнить команду ...</name>
                             <name xml:lang="am">ትእዛዝ ማስኬጃ ...</name>
                             <name xml:lang="es">Ejecutar orden ...</name>
                             <name xml:lang="sv">Kör kommando ...</name>
                             <name xml:lang="ca">Executa ordre ...</name>
                             <unique-id>1391443541044100-3</unique-id>
                             <command>xfce4-appfinder --collapsed</command>
                             <description>Launch a program</description>
                             <description xml:lang="de">Ein Programm starten</description>
                             <description xml:lang="el">Ξεκινήστε ένα πρόγραμμα</description>
                             <description xml:lang="fr">Démarrer un programme</description>
                             <description xml:lang="it">Lancia un programma</description>
                             <description xml:lang="lt">Paleisti programą</description>
                             <description xml:lang="nl">Programma starten</description>
                             <description xml:lang="pt">Abre um programa</description>
                             <description xml:lang="ru">Запуск программы</description>
                             <description xml:lang="es">Iniciar un programa</description>
                             <description xml:lang="sv">Starta ett program</description>
                             <description xml:lang="ca">Engega un programa</description>
                             <patterns>*</patterns>
                             <directories/>
                             <audio-files/>
                             <image-files/>
                             <other-files/>
                             <text-files/>
                             <video-files/>
                          </action>
                          <action>
                             <icon>utilities-terminal</icon>
                             <name>Open Terminal Here</name>
                             <name xml:lang="de">Terminal hier öffnen</name>
                             <name xml:lang="el">Ανοίξτε το τερματικό εδώ</name>
                             <name xml:lang="fr">Ouvrir un terminal ici</name>
                             <name xml:lang="it">Apri il terminale qui</name>
                             <name xml:lang="lt">Atverti čia terminalą</name>
                             <name xml:lang="nl">Open Terminal Hier</name>
                             <name xml:lang="pt">Abrir Terminal aqui</name>
                             <name xml:lang="ru">Открыть терминал здесь</name>
                             <name xml:lang="es">Abrir Consola aquí</name>
                             <name xml:lang="sv">Öppna Terminal här</name>
                             <name xml:lang="ca">Obre un terminal aquí</name>
                             <unique-id>1388590880939619-1</unique-id>
                             <command>exo-open --working-directory %f --launch TerminalEmulator</command>
                             <description>Launch terminal emulator here</description>
                             <description xml:lang="de">Einen Terminal-Emulator hier starten</description>
                             <description xml:lang="el">Εκκινήστε τον εξομοιωτή τερματικού εδώ</description>
                             <description xml:lang="fr">Lancer un terminal ici</description>
                             <description xml:lang="it">Lancia un programma</description>
                             <description xml:lang="lt">Paleisti čia terminalo emuliatorių</description>
                             <description xml:lang="nl">Start terminal emulator hier</description>
                             <description xml:lang="pt">Abre um emulador de terminal aqui</description>
                             <description xml:lang="ru">Запуск эмулятора терминала здесь</description>
                             <description xml:lang="es">Iniciar emulador de consola aquí</description>
                             <description xml:lang="sv">Starta Terminalemulator här</description>
                             <description xml:lang="ca">Engega un emulador de terminal aquí</description>
                             <patterns>*</patterns>
                             <startup-notify/>
                             <directories/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Open root Thunar here</name>
                             <name xml:lang="de">Thunar als Root hier öffnen</name>
                             <name xml:lang="el">νοίξτε το Thunar ως root εδώ</name>
                             <name xml:lang="fr">Ouvrir ici Thunar en compte root</name>
                             <name xml:lang="it">Apri root Thunar qui</name>
                             <name xml:lang="nl">Open root Thunar hier</name>
                             <name xml:lang="pt">Abrir Thunar de raíz aqui</name>
                             <name xml:lang="ru">Открыть root терминал здесь</name>
                             <name xml:lang="es">Abrir Thunar como administrador</name>
                             <name xml:lang="sv">Öppna root Thunar här</name>
                             <name xml:lang="ca">Obre Thunar com a administrador aquí</name>
                             <unique-id>1391443434179984-1</unique-id>
                             <command>gnome-keyring-daemon -r -d;gksu thunar %f</command>
                             <description>Open this folder with administrative rights</description>
                             <description xml:lang="de">Dieses Verzeichnis mit Administratorenrechten öffnen</description>
                             <description xml:lang="el">Ανοίξτε αυτό το φάκελο με δικαιώματα διαχειριστή</description>
                             <description xml:lang="fr">Ouvrir ce répertoire avec les privilèges administrateurs</description>
                             <description xml:lang="it">Apri questa cartella con privilegi amministrativi</description>
                             <description xml:lang="nl">Open deze map met administratieve rechten</description>
                             <description xml:lang="pt">Abre esta pasta com permissões de administrador</description>
                             <description xml:lang="ru">Открытие папки с правами администратора</description>
                             <description xml:lang="es">Abrir este carpeta con permisos del administrador</description>
                             <description xml:lang="sv">Öppna denna mapp med administrativa rättigheter</description>
                             <description xml:lang="ca">Obre aquesta carpeta amb drets d'administrador</description>
                             <patterns>*</patterns>
                             <directories/>
                             <audio-files/>
                             <image-files/>
                             <other-files/>
                             <text-files/>
                             <video-files/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Ownership to Root</name>
                             <name xml:lang="de">Eigentümerschaft zu Root</name>
                             <name xml:lang="el">Ιδιοκτησία στο root</name>
                             <name xml:lang="fr">Propriété passée à root</name>
                             <name xml:lang="it">Proprietà a Root</name>
                             <name xml:lang="nl">Eigenaarschap naar Root</name>
                             <name xml:lang="pt">Mudar para administrador (Root)</name>
                             <name xml:lang="ru">Передать права Root</name>
                             <name xml:lang="es">Ajustar Root como Dueño</name>
                             <name xml:lang="sv">Ägarskap till Root</name>
                             <name xml:lang="ca">Propietat a root</name>
                             <unique-id>1388696949105908-1</unique-id>
                             <command>gnome-keyring-daemon -r -d;gksu &quot;chown -R root:root %F&quot;</command>
                             <description>Change to administrative permissions </description>
                             <description xml:lang="de">Auf administrative Berechtigungen ändern</description>
                             <description xml:lang="el">Αλλαγή στα δικαιώματα διαχειριστή</description>
                             <description xml:lang="fr">Passer en privilèges administrateurs</description>
                             <description xml:lang="it">Modifica i permessi a favore dell'amministratore</description>
                             <description xml:lang="nl">Verander naar administratieve permissies</description>
                             <description xml:lang="pt">Muda para permissões de administrador</description>
                             <description xml:lang="ru">Изменение административных разрешений</description>
                             <description xml:lang="es">Cambiar a permisos como Administrado</description>
                             <description xml:lang="sv">Byt till administrativa rättigheter</description>
                             <description xml:lang="ca">Canvia a permisos d'administrador</description>
                             <patterns>*</patterns>
                             <directories/>
                             <audio-files/>
                             <image-files/>
                             <other-files/>
                             <text-files/>
                             <video-files/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Ownership to user</name>
                             <name xml:lang="de">Eigentümerschaft zum Benutzer</name>
                             <name xml:lang="el">Ιδιοκτησία προς τον χρήστη</name>
                             <name xml:lang="fr">Propriété passée à l'utilisateur</name>
                             <name xml:lang="it">Proprietà all'utente</name>
                             <name xml:lang="nl">Eigenaarschap naar gebruiker</name>
                             <name xml:lang="pt">Mudar para utilizador normal</name>
                             <name xml:lang="ru">Передать права пользователю</name>
                             <name xml:lang="es">Ajustar usuario como Dueño</name>
                             <name xml:lang="sv">Ägarskap till användare</name>
                             <name xml:lang="ca">Propietat a usuari</name>
                             <unique-id>1388702559256309-5</unique-id>
                             <command>gnome-keyring-daemon -r -d;gksu &quot;chown -R $USER:$USER %F&quot;</command>
                             <description>Removes use restrictions</description>
                             <description xml:lang="de">Entfernt Beschränkungen der Nutzung</description>
                             <description xml:lang="el">Καταργεί τους περιορισμούς χρήσης</description>
                             <description xml:lang="fr">Lever les restrictions d'utilisation</description>
                             <description xml:lang="it">Rimuove le restrizioni verso l'utente</description>
                             <description xml:lang="nl">Verwijdert gebruikersrestricties</description>
                             <description xml:lang="pt">Remove as restrições de utilização</description>
                             <description xml:lang="ru">Удаление ограничений использования</description>
                             <description xml:lang="es">Remover restricciones de uso</description>
                             <description xml:lang="sv">Tar bort restriktioner för användandet</description>
                             <description xml:lang="ca">Elimina restriccions d'ús</description>
                             <patterns>*</patterns>
                             <directories/>
                             <audio-files/>
                             <image-files/>
                             <other-files/>
                             <text-files/>
                             <video-files/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Edit as Root</name>
                             <name xml:lang="de">Als Root bearbeiten</name>
                             <name xml:lang="el">Επεξεργασία ως Root</name>
                             <name xml:lang="fr">Éditer en tant que root</name>
                             <name xml:lang="it">Edita come Root</name>
                             <name xml:lang="nl">Aanpassen als Root</name>
                             <name xml:lang="pt">Editar como administrador (Root)</name>
                             <name xml:lang="ru">Редактировать от Root</name>
                             <name xml:lang="am">Root ማረሚያ እንደ</name>
                             <name xml:lang="es">Editar como raiz/root</name>
                             <name xml:lang="sv">Redigera som Root</name>
                             <name xml:lang="ca">Edita com a root</name>
                             <unique-id>1389150009142611-4</unique-id>
                             <command>gnome-keyring-daemon -r -d;gksu featherpad %f</command>
                             <description>Make administrative changes to text files</description>
                             <description xml:lang="de">Administrative Änderungen an Textdateien vornehmen</description>
                             <description xml:lang="el">Κάντε αλλαγές διαχείρισης σε αρχεία κειμένου</description>
                             <description xml:lang="fr">Opérer des changements administrateur sur des fichiers textes</description>
                             <description xml:lang="it">Fare modifiche amministrative ai file di testo</description>
                             <description xml:lang="nl">Maak administratieve veranderingen naar tekstbestanden</description>
                             <description xml:lang="pt">Permite fazer alterações administrativas a ficheiros de texto</description>
                             <description xml:lang="ru">Внесение изменений в текстовые файлы</description>
                             <description xml:lang="es">Realizar ajustes administrativos a archivos de textos</description>
                             <description xml:lang="sv">Gör administrativa ändringar i textfiler</description>
                             <description xml:lang="ca">Fa canvis d'administració a fitxers de text</description>
                             <patterns>*</patterns>
                             <other-files/>
                             <text-files/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Find files here</name>
                             <name xml:lang="de">Dateien hier finden</name>
                             <name xml:lang="el">Βρείτε αρχεία εδώ</name>
                             <name xml:lang="fr">Trouver des fichiers ici</name>
                             <name xml:lang="it">Trova file qui</name>
                             <name xml:lang="lt">Rasti čia failus</name>
                             <name xml:lang="nl">Vind bestanden hier</name>
                             <name xml:lang="pt">Procurar ficheiros aqui</name>
                             <name xml:lang="ru">Найти файлы здесь</name>
                             <name xml:lang="am">ፋይሎች እዚህ መፈለጊያ</name>
                             <name xml:lang="es">Buscar archivos aquí</name>
                             <name xml:lang="sv">Hitta filer här</name>
                             <name xml:lang="ca">Troba fitxers aquí</name>
                             <unique-id>1391015829778456-1</unique-id>
                             <command>catfish --path=%f</command>
                             <description>Search current folder</description>
                             <description xml:lang="de">Aktuelles Verzeichnis durchsuchen</description>
                             <description xml:lang="el">Αναζήτηση τρέχοντος φακέλου</description>
                             <description xml:lang="fr">Faire une recherche dans le répertoire actuel</description>
                             <description xml:lang="it">Fare una ricerca sulla cartella corrente</description>
                             <description xml:lang="lt">Ieškoti esamame aplanke</description>
                             <description xml:lang="nl">Zoeken in huidige map</description>
                             <description xml:lang="pt">Pesquisa na pasta em uso</description>
                             <description xml:lang="ru">Поиск в текущей папке</description>
                             <description xml:lang="es">Buscar en carpeta actual</description>
                             <description xml:lang="sv">Sök i aktuell mapp</description>
                             <description xml:lang="ca">Cerca a la carpeta actual</description>
                             <patterns>*</patterns>
                             <directories/>
                             <text-files/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Create symlink</name>
                             <unique-id>1394124450909421-1</unique-id>
                             <name xml:lang="de">Symbolische Verknüpfung erstellen</name>
                             <name xml:lang="el">Δημιουργία σύζευξης</name>
                             <name xml:lang="fr">Créer un lien symbolique</name>
                             <name xml:lang="it">Crea symlink</name>
                             <name xml:lang="nl">Creëer symlink</name>
                             <name xml:lang="pt">Criar atalho (symlink)</name>
                             <name xml:lang="ru">Создать символьную ссылку</name>
                             <name xml:lang="es">Crear enlace simbólico</name>
                             <name xml:lang="sv">Skapa symbolisk länk</name>
                             <name xml:lang="ca">Crea enllaç simbòlic</name>
                             <command>ln -s %f &quot;%n (symlink)&quot;</command>
                             <description>Softlink between two files or directories</description>
                             <description xml:lang="de">Softlink zwischen zwei Dateien oder Ordnern erstellen</description>
                             <description xml:lang="el">Softlink μεταξύ δύο αρχείων ή καταλόγων</description>
                             <description xml:lang="fr">Lien symbolique entre deux fichiers ou répertoires</description>
                             <description xml:lang="it">Creare un link simbolico tra due file o directory</description>
                             <description xml:lang="nl">Softlink tussen twee bestanden of directories</description>
                             <description xml:lang="pt">Cria um atalho entre dois ficheiros ou directórios</description>
                             <description xml:lang="ru">Ссылка между двумя файлами или директориями</description>
                             <description xml:lang="es">Enlace simbólico entre dos archivos o carpetas</description>
                             <description xml:lang="sv">Symbolisk länk mellan två filer eller kataloger</description>
                             <description xml:lang="ca">Enllaç tou entre dos fitxers o directoris</description>
                             <patterns>*</patterns>
                             <startup-notify/>
                             <directories/>
                             <other-files/>
                             <text-files/>
                          </action>
                          <action>
                             <icon>folder-publicshare</icon>
                             <name>Share a folder on your network</name>
                             <unique-id>1399025775400525-1</unique-id>
                             <name xml:lang="de">Ein Verzeichnis in deinem Netzwerk teilen</name>
                             <name xml:lang="el">Μοιραστείτε ένα φάκελο στο δίκτυό σας</name>
                             <name xml:lang="fr">Partagez un dossier sur votre réseau</name>
                             <name xml:lang="it">Condividi una cartella sulla tua rete</name>
                             <name xml:lang="lt">Bendrinti aplanką tinkle</name>
                             <name xml:lang="nl">Deel een folder op je netwerk</name>
                             <name xml:lang="pt">Partilhar uma pasta na rede</name>
                             <name xml:lang="ru">Сделать папку общей в вашей сети</name>
                             <name xml:lang="es">Compartir una carpet en su red</name>
                             <name xml:lang="sv">Dela en mapp på ditt nätverk</name>
                             <name xml:lang="ca">Comparteix una carpeta amb la vostra xarxa</name>
                             <command>gnome-keyring-daemon -r -d;gksu system-config-samba %d</command>
                             <description>Configure file sharing</description>
                             <description xml:lang="de">Dateifreigaben konfigurieren</description>
                             <description xml:lang="el">Διαμορφώστε την κοινή χρήση αρχείων</description>
                             <description xml:lang="fr">Configurer le partage de fichiers</description>
                             <description xml:lang="it">Configurare la condivisione dei file</description>
                             <description xml:lang="lt">Konfigūruoti failų bendrinimą</description>
                             <description xml:lang="nl">Configureer bestanddeling</description>
                             <description xml:lang="pt">Configurar a partilha de ficheiros</description>
                             <description xml:lang="ru">Настройка совместного использования файлов</description>
                             <description xml:lang="es">Configurar la compartition de archivos</description>
                             <description xml:lang="sv">Konfigurera fildelning</description>
                             <description xml:lang="ca">Configura la compartició de fitxers</description>
                             <patterns>*</patterns>
                             <directories/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Compute md5sum</name>
                             <unique-id>1426501025005582-4</unique-id>
                             <name xml:lang="de">Berechne md5sum</name>
                             <name xml:lang="el">Υπολογίστε το md5sum</name>
                             <name xml:lang="fr">Calculer la somme de contrôle md5</name>
                             <name xml:lang="it">Computa l'md5sum</name>
                             <name xml:lang="lt">Apskaičiuoti md5sum</name>
                             <name xml:lang="nl">Bereken md5sum</name>
                             <name xml:lang="pt">Computar a md5sum</name>
                             <name xml:lang="ru">Посчитать md5sum</name>
                             <name xml:lang="es">Computar md5sum</name>
                             <name xml:lang="sv">Beräkna md5sum</name>
                             <name xml:lang="ca">Calcula el md5sum</name>
                             <command>yad --info --title=&quot;Check md5sum for %n&quot; --text=&quot;$(md5sum %n)&quot; | yad --width=350 --height=250 --progress --percentage=&quot;50&quot; --auto-kill --auto-close --title=&quot;Checksum utility&quot; --text=&quot;Calculating md5sum for %n&quot;</command>
                             <description>Display checksum of ISO</description>
                             <description xml:lang="de">Prüfsumme einer ISO anzeigen</description>
                             <description xml:lang="el">Εμφάνιση το άθροισμα ελέγχου του ISO</description>
                             <description xml:lang="fr">Afficher la somme de contrôle de l'ISO</description>
                             <description xml:lang="it">Visualizzare la somma md5 dell'ISO</description>
                             <description xml:lang="lt">Rodyti ISO failo kontrolinę sumą</description>
                             <description xml:lang="nl">Laat checksum van ISO zien</description>
                             <description xml:lang="pt">Exibe a soma de controlo (checksum) da ISO</description>
                             <description xml:lang="ru">Показ контрольной суммы ISO</description>
                             <description xml:lang="es">Mostrar valor del md5sum del ISO</description>
                             <description xml:lang="sv">Visa checksum för ISO</description>
                             <description xml:lang="ca">Mostra la suma de verificació d'un ISO</description>
                             <patterns>*.iso;*.ISO</patterns>
                             <other-files/>
                          </action>
                          <action>
                             <icon></icon>
                             <name>Check data integrity</name>
                             <unique-id>1426501047462724-5</unique-id>
                             <name xml:lang="de">Datenintegrität prüfen</name>
                             <name xml:lang="el">Ελέγξτε την ακεραιότητα των δεδομένων</name>
                             <name xml:lang="fr">Contrôler l'intégrité des données</name>
                             <name xml:lang="it">Controlla l'integrità dei dati</name>
                             <name xml:lang="lt">Tikrinti duomenų vientisumą</name>
                             <name xml:lang="nl">Controleer data integriteit</name>
                             <name xml:lang="pt">Verificar a integridade dos dados</name>
                             <name xml:lang="ru">Проверка целостности данных</name>
                             <name xml:lang="es">Mostrar valor del md5sum del ISO</name>
                             <name xml:lang="sv">Kontrollera dataintegritet</name>
                             <name xml:lang="ca">Comprova la integritat de les dades</name>
                             <command>yad --info --title=&quot;Check md5 for %n&quot; --text=&quot;$(md5sum -c %f)&quot; | yad --progress --percentage=&quot;50&quot; --auto-kill --auto-close --title=&quot;Checksum utility&quot; --text=&quot;Checking md5sum for %n&quot;</command>
                             <description>Compare ISO and md5sum files</description>
                             <description xml:lang="de">Vergleiche ISO- und md5sum-Dateien</description>
                             <description xml:lang="el">Συγκρίνετε τα αρχεία ISO και md5sum</description>
                             <description xml:lang="fr">Comparer les fichiers ISO et somme de contrôle md5</description>
                             <description xml:lang="it">Comparare tra loro i file ISO e md5sum</description>
                             <description xml:lang="lt">Palyginti ISO ir md5sum failus</description>
                             <description xml:lang="nl">Vergelijk ISO en md5sum bestanden</description>
                             <description xml:lang="pt">Calcula a md5sum da ISO e compara-a com a md5sum constante no ficheiro md5</description>
                             <description xml:lang="ru">Сравнение файлов ISO и md5sum</description>
                             <description xml:lang="es">Comparar archivos de ISO y md5sum</description>
                             <description xml:lang="sv">Jämför ISO och md5sum-filer</description>
                             <description xml:lang="ca">Compara els fitxers ISO i md5sum</description>
                             <patterns>*.md5;*.md5sum</patterns>
                             <other-files/>
                             <text-files/>
                          </action>
                          <action>
                          	<icon></icon>
                          	<name>Make Startup Sound</name>
                              <name xml:lang="de">Startsound festlegen</name>
                              <name xml:lang="el">ήχο εκκίνησης</name>
                              <name xml:lang="fr">Choisir comme son de connexion</name>
                              <name xml:lang="it">Imposta il suono di avvio</name>
                              <name xml:lang="nl">Maak Opstartgeluid</name>
                              <name xml:lang="pt">Reproduzir Som de Iniciação</name>
                              <name xml:lang="ru">Создать звук при входе</name>
                              <name xml:lang="es">Haga sonar el sonido de Inicio</name>
                              <name xml:lang="sv">Gör ett ljud vid Start</name>
                              <name xml:lang="ca">Fes un so d'arrencada</name>
                          	<unique-id>1447629663342880-3</unique-id>
                          	<command>echo %f >~/.config/startupsound.conf</command>
                          	<description>Make selected Startup Sound</description>
                              <description xml:lang="de">Gewählten Sound für den Start verwenden</description>
                              <description xml:lang="el">επιλεγμένη εκκίνηση ήχου</description>
                              <description xml:lang="fr">Le fichier sélectionné devient le son de connexion</description>
                              <description xml:lang="it">Impostare il suono di avvio selezionato</description>
                              <description xml:lang="nl">Maak geselecteerd Opstartgeluid</description>
                              <description xml:lang="pt">Reproduz o Som de Iniciação seleccionado</description>
                              <description xml:lang="ru">Назначение выбранного звука для входа</description>
                              <description xml:lang="es">Tocar el sonido de Inicio seleccionado</description>
                              <description xml:lang="sv">Gör utvalt Startljud</description>
                              <description xml:lang="ca">Fes el so d'arrencada seleccionat</description>
                          	<patterns>*</patterns>
                          	<audio-files/>
                          </action>
                          <action>
                          	<icon></icon>
                          	<name>Make Logout Sound</name>
                              <name xml:lang="de">Abmeldesound festlegen</name>
                              <name xml:lang="el">ήχο αποσύνδεσης</name>
                              <name xml:lang="fr">Choisir comme son de déconnexion</name>
                              <name xml:lang="it">Imposta il suono di uscita</name>
                              <name xml:lang="nl">Maak Afmeldgeluid</name>
                              <name xml:lang="pt">Reproduzir Som de Saída</name>
                              <name xml:lang="ru">Создать звук при выходе</name>
                              <name xml:lang="es">Haga sonar el sonido de Salir</name>
                              <name xml:lang="sv">Gör ett ljud vid Utloggning</name>
                              <name xml:lang="ca">Fes un so de sortida</name>
                          	<unique-id>1447629663342880-4</unique-id>
                          	<command>echo %f >~/.config/logoutsound.conf</command>
                          	<description>Make selected Logout Sound</description>
                              <description xml:lang="de">Ein Programm starten</description>
                              <description xml:lang="el">επιλεγμένο ήχο αποσύνδεσης</description>
                              <description xml:lang="fr">Le fichier sélectionné devient le son de déconnexion</description>
                              <description xml:lang="it">Impostare il suono di uscita selezionato</description>
                              <description xml:lang="nl">Maak geselecteerd Afmeldgeluid</description>
                              <description xml:lang="pt">Reproduz o Som de Saída seleccionado</description>
                              <description xml:lang="ru">Назначение выбранного звука для выхода</description>
                              <description xml:lang="es">Tocar el sonido de Salir seleccionado</description>
                              <description xml:lang="sv">Gör utvalt Logout ljud</description>
                              <description xml:lang="ca">Fes el so de sortida seleccionat</description>
                          	<patterns>*</patterns>
                          	<audio-files/>
                          </action>
                          </actions>
                          
                          #5392
                          Forum Admin
                          anticapitalista

                            As well as chown, did you chmod 777 the device?

                            Philosophers have interpreted the world in many ways; the point is to change it.

                            antiX with runit - leaner and meaner.

                            #5310
                            Member
                            clickbr

                              I can change the permissions to the new user via terminal as root with the chown command, but ideally spacefm will mount correctly with the given permissions.
                              chown -R gesiel: gesiel / media / sda6

                              • This reply was modified 5 years, 3 months ago by clickbr.
                            Viewing 13 results - 106 through 118 (of 118 total)