<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.abi.am/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.abi.am/feed.php">
        <title>ABI Knowledge Base - infra:tips_and_tricks</title>
        <description></description>
        <link>https://wiki.abi.am/</link>
        <image rdf:resource="https://wiki.abi.am/_media/wiki:logo.png" />
       <dc:date>2026-06-26T23:27:27+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.abi.am/infra:tips_and_tricks:check_internet_speed?rev=1782143539&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.abi.am/infra:tips_and_tricks:clear_sssd_cache?rev=1782143518&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.abi.am/infra:tips_and_tricks:format_squeue_output?rev=1782143555&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.abi.am/infra:tips_and_tricks:get_ip_address?rev=1782143526&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.abi.am/infra:tips_and_tricks:kill_user_processes?rev=1782153359&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.abi.am/infra:tips_and_tricks:remove_spaces_from_filenames?rev=1782143525&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.abi.am/_media/wiki:logo.png">
        <title>ABI Knowledge Base</title>
        <link>https://wiki.abi.am/</link>
        <url>https://wiki.abi.am/_media/wiki:logo.png</url>
    </image>
    <item rdf:about="https://wiki.abi.am/infra:tips_and_tricks:check_internet_speed?rev=1782143539&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-22T15:52:19+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>check_internet_speed</title>
        <link>https://wiki.abi.am/infra:tips_and_tricks:check_internet_speed?rev=1782143539&amp;do=diff</link>
        <description>Check Internet Speed

If your internet connection is slow at the office, do the following tests:

	*  Copy a large file (more than 100MB) from one of the local servers to you. If the copy speed is low, then there&#039;s an issue with the WiFi. Try reconnecting, it might help.</description>
    </item>
    <item rdf:about="https://wiki.abi.am/infra:tips_and_tricks:clear_sssd_cache?rev=1782143518&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-22T15:51:58+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>clear_sssd_cache</title>
        <link>https://wiki.abi.am/infra:tips_and_tricks:clear_sssd_cache?rev=1782143518&amp;do=diff</link>
        <description>Clear SSSD Cache

If there&#039;s a record update in LDAP, clear the SSSD cache on the affected Linux machine:


sss_cache -E           # Invalidate all cached entries
sss_cache -u username  # for specific user
sss_cache -U           # for all users
sss_cache -g groupname # for specific group
sss_cache -G           # for all groups</description>
    </item>
    <item rdf:about="https://wiki.abi.am/infra:tips_and_tricks:format_squeue_output?rev=1782143555&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-22T15:52:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>format_squeue_output</title>
        <link>https://wiki.abi.am/infra:tips_and_tricks:format_squeue_output?rev=1782143555&amp;do=diff</link>
        <description>Format squeue Output

List Slurm jobs with pretty formatting:


$ squeue  -o &quot;%.9i %.9P %.24j %.8u %.3t %.16M %.6D %.19R %.4C %.10m&quot;
    JOBID PARTITION                     NAME     USER  ST             TIME  NODES    NODELIST(REASON) CPUS MIN_MEMORY
     6070    comp0a                     gatk     nate   R      22-23:37:18      1               comp0    4        12G
     6071    comp0a                     gatk     nate   R      22-23:37:05      1               comp0    4        12G
     6072    …</description>
    </item>
    <item rdf:about="https://wiki.abi.am/infra:tips_and_tricks:get_ip_address?rev=1782143526&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-22T15:52:06+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>get_ip_address</title>
        <link>https://wiki.abi.am/infra:tips_and_tricks:get_ip_address?rev=1782143526&amp;do=diff</link>
        <description>Get Your IP Address

On Unix systems:


ifconfig | awk &#039;/inet/&#039;


On Microsoft Windows:


ipconfig


If you need to know your public IP address, visit ifconfig.bsd.am.</description>
    </item>
    <item rdf:about="https://wiki.abi.am/infra:tips_and_tricks:kill_user_processes?rev=1782153359&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-22T18:35:59+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>kill_user_processes</title>
        <link>https://wiki.abi.am/infra:tips_and_tricks:kill_user_processes?rev=1782153359&amp;do=diff</link>
        <description>Kill All Processes of a User

To kill all processes belonging to a specific user:


pkill -u username


See Also

	*  Tips and Tricks
	*  Infrastructure</description>
    </item>
    <item rdf:about="https://wiki.abi.am/infra:tips_and_tricks:remove_spaces_from_filenames?rev=1782143525&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-22T15:52:05+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>remove_spaces_from_filenames</title>
        <link>https://wiki.abi.am/infra:tips_and_tricks:remove_spaces_from_filenames?rev=1782143525&amp;do=diff</link>
        <description>Remove Spaces From Filenames

How to delete spaces from file names on Unix systems using shell:


for f in *; do mv &quot;$f&quot; `echo $f | tr &#039; &#039; &#039;_&#039;`; done</description>
    </item>
</rdf:RDF>
