Results 1 to 2 of 2

Thread: Using /etc/profile for small programs

  1. #1
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631

    Using /etc/profile for small programs

    .
    It may be noted that you can park some useful small programs in /etc/profile,
    as opposed to having many small programs just hanging around. Sometimes the
    syntax seems a bit more challenging than the usual bash, but workable. These
    are composed as root, but execute as knoppix. For example look at the
    Count, Channel and Keep snippets in my /etc/profile.
    Code:
    # /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
    # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
    
    PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
    # set PATH so it includes user's private bin if it exists
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ++++++++++++++ a few lines deleted here for clarity +++++++++++++++++++++++++
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    alias su="sudo su"
    umask 022
    
    Count() { # Aid to counting wifi disconnects over time
    date '+%h %e %H:%M:%S' ; less /var/log/syslog | 
    grep restart; less /var/log/syslog | grep -c disconnecting
    }
    Channel() { # Aid to assessing who's on wifi channels 1 to 11
    sudo iwlist wlan0 scan | grep -e Freq -A 3 |
    grep "(Channel $1)" -A 3 | grep -v key 
    }
    Keep() { # Aid to backing-up unique user files to /mnt-system
    cd /; KEEP=/mnt-system/keep$(date +"%m%d%H").tar.gz
    echo -e 'Compressing data; patience, this may take a little time..\c'
    tar -cz --exclude */.gvfs/* -f  $KEEP \
                     home/knoppix/      etc/profile      etc/rc.local \
                     etc/X11/Xsession.d/45*   etc/syslog-knoppix.conf \
                     mnt-system/boot/syslinux/syslinux.cfg
    echo ".Done."; echo "Restore using the command, tar -xzf '$KEEP' -C /"
    }
    These snippets are to be executed in an lxterminal as knoppix, of course.
    Last edited by utu; 02-25-2013 at 12:06 AM.

  2. #2
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631

    Countering .gvfs due to PCManFM

    .
    A hidden user mount point directory .gvfs occurs in Knoppix's /home/knoppix when some programs
    such as PCManFM are first activated. This hidden file must be taken into account for some operations
    one might choose to perform.

    One of the more clever approaches to handling this nuisance may be found at post #10 of
    http://forums.opensuse.org/english/g...nied-gvfs.html

    This approach takes care of removing .gvfs after its appearance on first using PCManFM
    for one boot-up session. I've added this as a 'one-liner' to my /etc/profile. Rm.gvfs works only
    when called by root; I use a root lxterminal for this command.

    Code:
    Rm.gvfs () { # Remove user mount directory .gvfs
    umount /home/knoppix/.gvfs; find . -inum 554009 -exec rm{} \;; rm -rf .gvfs
    }
    Be careful making small changes on this command; even the punctuation is critical.
    I am not aware what other programs may also cause the appearance of .gvfs.
    If there are others, some revision of this approach may be necessary.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Intel Xeon 6248 2.50ghz 20 Cores Server 3.90 Max Turbo Frequency picture

Intel Xeon 6248 2.50ghz 20 Cores Server 3.90 Max Turbo Frequency

$148.02



Intel Core i5-14600K Unlocked Desktop Processor picture

Intel Core i5-14600K Unlocked Desktop Processor

$229.99



AMD - Ryzen 5 5600X 4th Gen 6-core, 12-threads Unlocked Desktop Processor Wit... picture

AMD - Ryzen 5 5600X 4th Gen 6-core, 12-threads Unlocked Desktop Processor Wit...

$124.00



Intel Core i5-12600K Unlocked Desktop Processor - 10 Cores And 16 Threads picture

Intel Core i5-12600K Unlocked Desktop Processor - 10 Cores And 16 Threads

$149.99



Intel Core i7-7700 SR338 Quad-core 3.60 GHz Processor Socket H4 LGA-1151 picture

Intel Core i7-7700 SR338 Quad-core 3.60 GHz Processor Socket H4 LGA-1151

$59.95



Intel Core i5-8600 3.1GHz LGA1151 9MB 65W 64-Bit Processor SR3X0 picture

Intel Core i5-8600 3.1GHz LGA1151 9MB 65W 64-Bit Processor SR3X0

$42.99



Intel Core i9-12900KF Unlocked Desktop Processor picture

Intel Core i9-12900KF Unlocked Desktop Processor

$279.99



AMD - Ryzen 5 4500 3.6 GHz Six-Core AM4 Processor - Black picture

AMD - Ryzen 5 4500 3.6 GHz Six-Core AM4 Processor - Black

$69.00



INTEL CORE I5-8500T 3.50GHz FCLGA1151 CPU Processor picture

INTEL CORE I5-8500T 3.50GHz FCLGA1151 CPU Processor

$39.99



Lot of 2 Intel Xeon E5-2697 V4 2.3GHz 18 Core LGA 2011-3 Server CPU Processor picture

Lot of 2 Intel Xeon E5-2697 V4 2.3GHz 18 Core LGA 2011-3 Server CPU Processor

$80.55